I'm using oracle database with my java application. In DB i have created a table with column of type DATE and then my application populated this table with some dates with precision to seconds.
Now my application is able to retrieve date with precision to seconds and everything works fine. However I'm using Oracle SQL Developer to keep an eye on what is in the database, and here comes my problem, when I look inside my table from table view in column with DATE I can see only date in format of 16/09/07 without time of hours/minutes/seconds.
Also if I run a script:
select SAVED_DATE from MY_TABLE;
it returns all dates in format of 16/09/07 without time of hours/minutes/seconds.
How can I inspect from Oracle SQL Developer precise time stored in that column?
Select to_Char(sysdate,'DD/MM/YYYY HH24:MI:SS') from dualor see here for more info on NLS settingsDATEandTIMESTAMPdata types and both have a time component. Oracle does not have a separateDATETIMEdata type.