Portal | IBM Manuals | Downloads | Products | Refer | Info | Programs | JCLs | Forum Rules*| Site Map | Mainframe CD 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index
 
Register
 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index FAQ Search Memberlist Usergroups Profile Log in to check your private messages Log in
 
How to get the difference of timestamps in DB2

 
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> DB2
Author Message
venkata.bellala

New User


Joined: 11 Mar 2005
Posts: 4

PostPosted: Tue May 17, 2005 12:00 pm    Post subject: How to get the difference of timestamps in DB2
Reply with quote

Hi,
How to get the difference of timestamps in DB2

regards,
Venkata Bellala
Back to top
View user's profile Send private message
References
ovreddy

Active User


Joined: 06 Dec 2004
Posts: 200
Location: Keane India Ltd., Hyderabad

PostPosted: Tue May 17, 2005 1:06 pm    Post subject:
Reply with quote

Hi Venkata,

You can use - (Minus) between two Time stamps to find out the difference. The result will be in the form of seconds. If you want to convert it into days,months or years we can use some calculation.

Eg: select CRTTMSTP,current timestamp,current timestamp-CRTTMSTP
from user.table;
(It returns the difference between current time stamp and create time stamp in seconds)

select CRTTMSTP,current timestamp,(current timestamp-CRTTMSTP)/(60*60*24) from user.table;
(It returns the difference between current time stamp and create time stamp in days)

Thanks,
Reddy.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> DB2 All times are GMT + 6 Hours
Page 1 of 1