Re: Object create date - Mailing list pgsql-sql

From Scott Marlowe
Subject Re: Object create date
Date
Msg-id dcc563d10812291037r374ba7f4o83342b175e9d9339@mail.gmail.com
Whole thread Raw
In response to Object create date  ("Fernando Hevia" <fhevia@ip-tel.com.ar>)
Responses Re: Object create date  ("Fernando Hevia" <fhevia@ip-tel.com.ar>)
List pgsql-sql
On Mon, Dec 29, 2008 at 11:23 AM, Fernando Hevia <fhevia@ip-tel.com.ar> wrote:
> Hi list,
>
> I'm having a hard time trying to find out if the latest patches have been
> applied to my application (uses lots of pgplsql functions).
> Does Postgres store creation date and/or modification date for tables,
> functions and other objects?
> It would help me a lot if I could query each object when it was created. Is
> this information available on 8.3? Where should I look?

PostreSQL doesn't track this kind of thing for you.  An easy method to
implement yourself is to create a table to track such changes, and add
a line to insert data into that table.

create table change_track (version numeric(12,2) primary key, title
text, summary text);

Then in a script, always update like so:

begin;
insert into change_track(10.2, 'plpgsql - add / remove','New plpgsql
stored procedure to add and remove users.  adduser(uid,''username''),
deluser(uid)');

create function....

commit;

That way, if some part of the update fails it all fails and you don't
have any of it in your db.

Then you can just check change_track to see what stuff is in your db.
Plus you can check the scripts into svn for management.


pgsql-sql by date:

Previous
From: "Fernando Hevia"
Date:
Subject: Object create date
Next
From: Alvaro Herrera
Date:
Subject: Re: Object create date