RATE THIS ANSWER
+1
Click to Vote:
1
0
The default date format depends on the territory code of the database, so for example, if the territory was set to US, the date format should be mm/dd/yyyy.
Have a look at
this article which explains, among other things, how to change the default date format.
You also have to note the datatype for this field on the database table EMP.
If the data type is TIMESTAMP, then the only correct way to set this column is by using the following format:
'YYYY-MM-DD-hh.mm.ss.000000' where 000000 correspond to the fractions of second.
If the data type is DATE then you should attain to the territory code of the database.
To get the territory code of the database, the database administrator should run the following command:
GET DATABASE CONFIGURATION FOR <database-alias>
To get the table definition the developer can run the following command, from the Command Center or the Command Window:
DESCRIBE TABLE EMP
Last Answered:
Dec 4 2008 1:49 AM GMT by Emy 
70 pts.
Latest Contributors: Carlosdl
29820 pts.