How can I see the time on a "date" variable

Guiar

Member
How can I see the time on a "date" variable. I only get the date on the popup value display as well as on the "variable to watches"
 
Hy,

just set the following code before your Procedure starts:

Code:
dbms_session.set_nls('nls_date_format','''DD.MM.YYYY HH24:MI:SS''');
or any other formatmask
 
Back
Top