IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Convert a Time in (HH:MM:SS AM/PM) format to 24 hours format


IBM Mainframe Forums -> DB2
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
Sivagurunathan Jagadeesan

New User


Joined: 06 Mar 2007
Posts: 32
Location: India

PostPosted: Tue Mar 13, 2007 12:10 pm
Reply with quote

Hi,

I am working in Enterprise COBOL and DB2 in Mainframes.

How do i convert a Time in (HH:MM:SS AM/PM) format to 24 hours format(HH:MM:SS). I tried using the ALTTIME function but the Schema DSN8 which this functions belongs to, is not working.

Thanks in Advance,
Siva
Back to top
View user's profile Send private message
wanderer

Active User


Joined: 05 Feb 2007
Posts: 199
Location: Sri Lanka

PostPosted: Wed Mar 14, 2007 6:10 am
Reply with quote

When you say 'not working', what kind of error message you get?
Back to top
View user's profile Send private message
Sivagurunathan Jagadeesan

New User


Joined: 06 Mar 2007
Posts: 32
Location: India

PostPosted: Wed Mar 14, 2007 7:19 am
Reply with quote

Hi,

The fuction ALTTIME is not recognized as an valid one. Message says "ALTTIME" is not a valid function.

Thanks,
Siva
Back to top
View user's profile Send private message
wanderer

Active User


Joined: 05 Feb 2007
Posts: 199
Location: Sri Lanka

PostPosted: Wed Mar 14, 2007 8:52 am
Reply with quote

Check in SYSIBM.SYSROUTINES for an entry of ALTTIME function with DSN8. It is probably not there. You can talk to your DBAs to make that available.

Otherwise, as far as I understand, DB2 doesn't have any builtin function that can take in a time format like HH:MM:SS AM/PM

There is one HH:MM AM/PM however, if you are willing to sacrifice the 'SS'.
Back to top
View user's profile Send private message
Sivagurunathan Jagadeesan

New User


Joined: 06 Mar 2007
Posts: 32
Location: India

PostPosted: Wed Mar 14, 2007 9:56 am
Reply with quote

Hi,

Thanks for your inputs, I'll check in SYSROUTINES.
Used a query like this,
EXEC SQL
SELECT
(RIGHT('00'||RTRIM(CHAR(HOUR(IN_TIME))),2) ||
'.' ||
RIGHT('00'||RTRIM(CHAR(MINUTE(IN_TIME))),2) ||
'.' ||
RIGHT('00'||RTRIM(CHAR(SECOND(IN_TIME))),2))
END-EXEC.

The INTIME is in HH:MM:SS AM/PM format, above query converts it to 24hrs format.

Thanks,
Siva
Back to top
View user's profile Send private message
wanderer

Active User


Joined: 05 Feb 2007
Posts: 199
Location: Sri Lanka

PostPosted: Wed Mar 14, 2007 11:45 am
Reply with quote

Hmm..the HOUR function is not supposed take a TIME format with HH:MM:SS AM/PM as input as far as the manual says. But then if it works for you, great!

And thanks to you, I tried out the ALTTIME function. icon_biggrin.gif
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> DB2

 


Similar Topics
Topic Forum Replies
No new posts Populate last day of the Month in MMD... SYNCSORT 2
No new posts Modifying Date Format Using DFSORT DFSORT/ICETOOL 9
No new posts To get the the current time DFSORT/ICETOOL 13
No new posts RC query -Time column CA Products 3
No new posts Need to convert date format DFSORT/ICETOOL 20
Search our Forums:

Back to Top