View previous topic :: View next topic |
Author |
Message |
mf_learner Beginner
Joined: 04 May 2006 Posts: 11 Topics: 4
|
Posted: Thu Jul 20, 2006 4:00 pm Post subject: How to track last DDL timestamp on any DB2 objects |
|
|
Hi,
Are there any tables(SYSIBM) maintained in DB2 where we can check the last DDL timestamp on any particular table.
Something like all_objects or dba_objects as maintaned in ORACLE where we can check the last DDL timestamp or Status of a object.
Thanks.... _________________ Thanks |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12380 Topics: 75 Location: San Jose
|
Posted: Thu Jul 20, 2006 9:27 pm Post subject: |
|
|
mf_learner,
Look at the columns CREATEDTS & ALTEREDTS in Sysibm.systables.
ex:
Code: |
SELECT CREATEDTS
,ALTEREDTS
FROM SYSIBM.SYSTABLES
WHERE NAME = 'table in question'
;
|
Hope this helps...
Cheers
Kolusu _________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
 |
|
|