Re: Storing images in PostgreSQL databases (again)

From: "Gregory S(dot) Williamson" <gsw(at)globexplorer(dot)com>
To: "Jean-Christophe Roux" <jcxxr(at)yahoo(dot)com>, "Alexander Staubo" <alex(at)purefiction(dot)net>
Cc: <pgsql-general(at)postgresql(dot)org>
Subject: Re: Storing images in PostgreSQL databases (again)
Date: 2006-10-06 20:57:17
Message-ID: 71E37EF6B7DCC1499CEA0316A256832802B3E6C6@loki.wc.globexplorer.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hate to suggest corporate software, but there is an Informix/Illustra blade that could do something like what you're after (I remember a demo of sunset/sunrise photos being selected on the basis of color values) ...

But I think they used smart blobs and didn't use them as key values.

G

-----Original Message-----
From: pgsql-general-owner(at)postgresql(dot)org on behalf of Jean-Christophe Roux
Sent: Thu 10/5/2006 4:54 PM
To: Alexander Staubo
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: [GENERAL] Storing images in PostgreSQL databases (again)

Why would I set a bytea column (containing picures) as a primary key? Because I want to be sure that the same image is inserted only once (that requirement comes from a real project) and using a primary key for that purpose makes sense to me.
Am I going to retrieve an image row by its image data? I would certainly like! For instance, I would like to get the pictures whose main color is green (requirement from a real project), and a
select * from images where main_color(image) = 'green' would be nice.
JCR

----- Original Message ----
From: Alexander Staubo <alex(at)purefiction(dot)net>
To: Jean-Christophe Roux <jcxxr(at)yahoo(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Sent: Thursday, October 5, 2006 7:35:04 PM
Subject: Re: [GENERAL] Storing images in PostgreSQL databases (again)

On Oct 6, 2006, at 01:29 , Jean-Christophe Roux wrote:

> By the way, is it practical to set a bytea column (containing
> pictures) as primary key? That would severely slow down many
> operations I guess.

Why would you? It's possible, but completely impractical, since image
data typically exceeds the index page size. Moreover, are you really
going to retrieve an image row by its image data?

Alexander.

---------------------------(end of broadcast)---------------------------
TIP 1: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to majordomo(at)postgresql(dot)org so that your
message can get through to the mailing list cleanly

-------------------------------------------------------
Click link below if it is SPAM gsw(at)globexplorer(dot)com
"https://mailscanner.globexplorer.com/dspam/dspam.cgi?signatureID=4526a19c122019835456387&user=gsw(at)globexplorer(dot)com&retrain=spam&template=history&history_page=1"
!DSPAM:4526a19c122019835456387!
-------------------------------------------------------

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Ivan Sergio Borgonovo 2006-10-06 21:09:29 exploiting features of pg to obtain polymorphism maintaining ref. integrity
Previous Message Tom Lane 2006-10-06 20:24:16 Re: Alter table alter column