date and time

Baila_me

Member
The date and time in my PL/SQL developer looks very strange. For example the gen-date for a custum order is 21.02.19 16:45:02,266859000

What is the number after the comma and how can i diaable the number?

 
The number behind the comma are the milliseconds. You can hide this by removing the FF from the datemask.
 
The timestamp formats are defined by the NLS_TIMESTAMP_FORMAT setting.

The format can be set in the Oracle registry, in which case it will apply to all Oracle Client applications, or in the Params.ini file in the PL/SQL Developer installation directory. You can add a line like this:

ENV:NLS_TIMESTAMP_FORMAT=DD-MM-YYYY HH24:MI:SS
 
Back
Top