Deleting BLOBs - Mailing list pgsql-general

From Neanderthelle Jones
Subject Deleting BLOBs
Date
Msg-id Pine.LNX.4.64.1208121919470.29266@calypso.view.net.au
Whole thread Raw
Responses Re: Deleting BLOBs  (Andreas Kretschmer <andreas@a-kretschmer.de>)
Re: Deleting BLOBs  (Neanderthelle Jones <elle@view.net.au>)
List pgsql-general
I'd like to delete all the image files from a table by issuing an
interactive psql command.  Given

CREATE TABLE image (
    name text,
    rast oid
);

with most tuples having images in rast, wanna do something like

=> select lo_unlink('select rast from image');

Can such a thing be done, and how?  I guess I've forgotten the syntax.

Or will an update that sets the oids to null or 0 work?

(pgsql 9.1.2)

Thanks.


pgsql-general by date:

Previous
From: "Andrus"
Date:
Subject: Re: How to raise error from PostgreSql SQL statement if some condition is met
Next
From: Andreas Kretschmer
Date:
Subject: Re: Deleting BLOBs