X-Original-To: pgsql-docs-postgresql.org@localhost.postgresql.org Received: from localhost (unknown [200.46.204.144]) by svr1.postgresql.org (Postfix) with ESMTP id AC2643A4293 for ; Tue, 9 Nov 2004 05:51:48 +0000 (GMT) Received: from svr1.postgresql.org ([200.46.204.71]) by localhost (av.hub.org [200.46.204.144]) (amavisd-new, port 10024) with ESMTP id 76409-05 for ; Tue, 9 Nov 2004 05:51:46 +0000 (GMT) Received: from tigger.fuhr.org (tigger.fuhr.org [63.214.45.158]) by svr1.postgresql.org (Postfix) with ESMTP id 28AB83A4284 for ; Tue, 9 Nov 2004 05:51:46 +0000 (GMT) Received: from winnie.fuhr.org (winnie.fuhr.org [10.1.0.1]) by tigger.fuhr.org (8.13.1/8.13.1) with ESMTP id iA95pfkk004993 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Mon, 8 Nov 2004 22:51:44 -0700 (MST) (envelope-from mfuhr@winnie.fuhr.org) Received: from winnie.fuhr.org (localhost [127.0.0.1]) by winnie.fuhr.org (8.13.1/8.13.1) with ESMTP id iA95pfRs001311; Mon, 8 Nov 2004 22:51:41 -0700 (MST) (envelope-from mfuhr@winnie.fuhr.org) Received: (from mfuhr@localhost) by winnie.fuhr.org (8.13.1/8.13.1/Submit) id iA95pe2F001310; Mon, 8 Nov 2004 22:51:40 -0700 (MST) (envelope-from mfuhr) Date: Mon, 8 Nov 2004 22:51:40 -0700 From: Michael Fuhr To: Dariusz Dzingielewski Cc: pgsql-docs@postgresql.org Subject: Re: multimedia data storage issue Message-ID: <20041109055140.GA1197@winnie.fuhr.org> References: <00ce01c4c28c$a73bf170$96d31399@DARO> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <00ce01c4c28c$a73bf170$96d31399@DARO> X-Virus-Scanned: by amavisd-new at hub.org X-Spam-Status: No, hits=0.0 tagged_above=0.0 required=5.0 tests= X-Spam-Level: X-Archive-Number: 200411/17 X-Sequence-Number: 2652 On Thu, Nov 04, 2004 at 05:38:02PM +0100, Dariusz Dzingielewski wrote: > I'm a student of Gdansk University of Technology. Now I'm getting > prepare to write my M.A. thesis. The topic of my work is "An interface > in multimedia databases in radiology". One of the main tasks which > I would like to do is to investigate how different database vendors > store different multimedia data types. It includes data types like > signals ( 1 and 2 - dimensional ), images, video sequences or > 3d-objects. I'm searching for any kind of product documentation of > leading database vendors (Oracle, PostgreSQL, MySql, Sybase, and > others...) which concern on multimedia data storage problem (exactly: > what data types they use to store multimedia data, what kind of > data model they use to describe that data, what is the way of access > to the data ) PostgreSQL has built-in types to store binary data, some geometric data, and arrays. See the "Data Types" chapter in the PostgreSQL documentation for the full story. http://www.postgresql.org/docs/7.4/static/datatype.html PostgreSQL allows users to create their own types, operators, and aggregates, so if the built-in capabilities aren't adequate for a particular application then users can extend the database as needed. http://www.postgresql.org/docs/7.4/static/extend.html You can see examples of extending PostgreSQL in the contrib directory of the source code. This may not be the specific information you seek, but it does show that users can extend PostgreSQL to fit their needs. -- Michael Fuhr http://www.fuhr.org/~mfuhr/