Thread: When was my database created

When was my database created

From
"Matthew T. O'Connor"
Date:
Hopefully this is an easy one and sorry if I should have found this in 
the docs somewhere but a cursory glance didn't turn anything up.

How do I tell how old my database is, that is, when was create db for 
this database done?

Thank you,

Matthew O'Connor


Re: When was my database created

From
Steve Crawford
Date:
Matthew T. O'Connor wrote:
>
> How do I tell how old my database is, that is, when was create db for 
> this database done?
>
Short answer: you can't - at least not reliably and directly.

You can look in the data directory associated with the database in which 
you are interested and check the earliest file timestamp or the 
timestamp of the PG_VERSION file.

*IF* the files weren't touched and *if* they weren't manually copied at 
any time (and, of course if the clock was set correctly when the DB was 
created) then they *probably* represent the time the current version of 
the database was created. If you restored from a dump or otherwise 
recreated the database for any reason (version upgrade, machine 
migration, disaster recovery, etc.), the timestamps would represent the 
time of the restore, not the time of the creation of the original database.

Cheers,
Steve