Re: How to delete Large Object from Database?

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Premsun Choltanwanich" <Premsun(at)nsasia(dot)co(dot)th>
Cc: "Richard Huxton" <dev(at)archonet(dot)com>, pgsql-sql(at)postgresql(dot)org
Subject: Re: How to delete Large Object from Database?
Date: 2005-10-11 03:00:53
Message-ID: 8632.1128999653@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

"Premsun Choltanwanich" <Premsun(at)nsasia(dot)co(dot)th> writes:
> The code that show below is refered to table and function that I use for =
> kept BLOB (LO).
>
> CREATE TABLE t_data_pic
> (
> "sysid" bigserial NOT NULL,
> data_sysid int8 NOT NULL,
> data_pic lo,
> CONSTRAINT t_data_pic_pkey PRIMARY KEY ("sysid")
> )
> WITH OIDS;
> ALTER TABLE t_data_pic OWNER TO admin;

Why am I not seeing any trigger attached to this table? That lo_manage
trigger is the useful part of contrib/lo --- the separate data type is
mere window dressing.

regards, tom lane

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Premsun Choltanwanich 2005-10-11 03:10:26 Re: How to delete Large Object from Database?
Previous Message Premsun Choltanwanich 2005-10-11 02:11:21 Re: How to delete Large Object from Database?