Re: How to delete Large Object from Database? - Mailing list pgsql-sql

From Tom Lane
Subject Re: How to delete Large Object from Database?
Date
Msg-id 8632.1128999653@sss.pgh.pa.us
Whole thread Raw
In response to Re: How to delete Large Object from Database?  ("Premsun Choltanwanich" <Premsun@nsasia.co.th>)
Responses Re: How to delete Large Object from Database?  ("Premsun Choltanwanich" <Premsun@nsasia.co.th>)
List pgsql-sql
"Premsun Choltanwanich" <Premsun@nsasia.co.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


pgsql-sql by date:

Previous
From: "Premsun Choltanwanich"
Date:
Subject: Re: How to delete Large Object from Database?
Next
From: "Premsun Choltanwanich"
Date:
Subject: Re: How to delete Large Object from Database?