The following insert generates this error:
INSERT INTO DEV.SLEONTPS (NVARCHAR,FLDDATE1) VALUES ('THIS','01/01/2001');
Error:
INSERT INTO DEV.SLEONTPS (NVARCHAR,FLDDATE1) VALUES ('THIS','01-01-2001')
*
ERROR at line 1:
ORA-01843: not a valid month
How are dates entered in an insert statement I thought I was using the standard date format, my datatype for the column is date.
Thanks in advance.
INSERT INTO DEV.SLEONTPS (NVARCHAR,FLDDATE1) VALUES ('THIS','01/01/2001');
Error:
INSERT INTO DEV.SLEONTPS (NVARCHAR,FLDDATE1) VALUES ('THIS','01-01-2001')
*
ERROR at line 1:
ORA-01843: not a valid month
How are dates entered in an insert statement I thought I was using the standard date format, my datatype for the column is date.
Thanks in advance.