up vote 2 down vote favorite
share [g+] share [fb]

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.

link|improve this question

71% accept rate
feedback

4 Answers

up vote 8 down vote accepted
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|improve this answer
feedback

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

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

link|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

Your Answer

 
or
required, but never shown

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