vote up 2 vote down star

I am running some queries to track down a problem with our backup logs and would like to display datetime fields in 24-hour military time. Is there a simple way to do this? I've tried googling and could find nothing.

flag

68% accept rate

4 Answers

vote up 6 vote down check
select to_char(sysdate,'DD/MM/YYYY HH24:MI:SS') from dual;

Give the time in 24 hour format.

More options are described here.

link|flag
vote up 0 vote down

It's not oracle that determines the display of the date, it's the tool you're using to run queries. What are you using to display results? Then we can point you to the correct settings hopefully.

link|flag
vote up 1 vote down

Use a to_char(field,'YYYYMMDD HH24MISS').

A good list of date formats is available at http://www.ss64.com/orasyntax/fmt.html

link|flag
vote up 1 vote down

If you want all queries in your session to show the full datetime, then do

alter session set NLS_DATE_FORMAT='DD/MM/YYYY HH24:MI:SS'

at the start of your session.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.