What is the setting to view the time part with date in Oracle PL/SQL developer?

后端 未结 1 642
失恋的感觉
失恋的感觉 2020-12-19 17:18

I have a table named AUDIT which saves all the modifications done on an account. There is a field AUDIT_DATE which contains the date on which a particular modification has b

相关标签:
1条回答
  • 2020-12-19 18:03

    If you want to see dates with times shown as well without applying a format mask with to_char(), you need to change your NLS_DATE_FORMAT. Assuming you do mean Oracle SQL Developer, you can do this from Tools->Preferences, expand the Database section in the panel on the left, and select NLS:

    enter image description here

    At the moment NLS_DATE_FORMAT is set to DD-MON-RR, which would show today as 16-MAY-14. To show the full date and time I might set it to YYYY-MM-DD HH24:MI:SS. You might want to change the NLS_TIMESTAMP format as well.

    PL/SQL Developer also has NLS options under Tools->Preferences:

    enter image description here

    You can see the available format models in the documentation.

    If you're writing code that will or may ever be executed by someone else, do not rely on implicit formatting using those parameters. They're fine for ad hoc queries in your own enclosed environment, but they may break in interesting ways when someone else - with different NLS settings - runs them. For anything except ad hoc queries you should really specify the mask, using to_char(<column>, 'YYYY-MM-DD HH24:MI:SS') or whatever model is appropriate. This of course also means you get the right formatting for the column; if you have columns that only represent times then setting the session's format model and relying on that means you see all the 00:00:00 times, which is often just noise.

    0 讨论(0)
提交回复
热议问题