If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > DB2 > Time Format (HH:MM:SS AM/PM)

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 02-09-06, 11:29
bollin99 bollin99 is offline
Registered User
 
Join Date: Sep 2002
Posts: 30
Question Time Format (HH:MM:SS AM/PM)

Following is the SQL for Time format.

db2 -v "select char(date(current timestamp),USA)|| ' ' || char(time(current timestamp))||' '||SUBSTR((char(time(current timest
amp),USA)),7,2) from sysibm.sysdummy1"

The above work well, but please see below...

The above SQL when run ..shows as below.. in the 24 hour format
09/08/2005 20.04.20 PM

Instead of the 12 hour format.
09/08/2005 08:04:20 PM

Can this be achieved in DB2 ?????
Tried all the functions.

Please let me know.

Thank You
Bollin99
Reply With Quote
  #2 (permalink)  
Old 02-09-06, 12:28
sathyaram_s sathyaram_s is offline
Super Moderator
 
Join Date: Aug 2001
Location: UK
Posts: 4,534
See if CHAR scalar function helps

Cheers
Sathyaram
__________________
Visit the new-look IDUG Website , register to gain access to the excellent content.
Reply With Quote
  #3 (permalink)  
Old 02-09-06, 12:28
sathyaram_s sathyaram_s is offline
Super Moderator
 
Join Date: Aug 2001
Location: UK
Posts: 4,534
See if CHAR scalar function helps

Refer documentation for details

Cheers
Sathyaram
__________________
Visit the new-look IDUG Website , register to gain access to the excellent content.
Reply With Quote
  #4 (permalink)  
Old 02-09-06, 19:56
db2guru1 db2guru1 is offline
Registered User
 
Join Date: Aug 2003
Posts: 106
select char(date(current timestamp),USA)|| ' ' || char(time(current timestamp),USA) from sysibm.sysdummy1

This works! gives time as 02/09/2006 07:54 PM
__________________

You are the creator of your own destiny!
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On