I get the error: ORA-01855: AM/A.M. or PM/P.M. required
when I try to execute following query.
INSERT INTO TBL(ID,START_DATE)
values (123, TO_DATE ('3/13/2012 9:22:00 AM', 'MM/DD/YYYY HH:MI AM'))
Where my START_DATE
column is of type "Date".
I have executed following query and it gave no errors, still not success yet in above issue:
ALTER SESSION SET NLS_DATE_FORMAT = "MM/DD/YYYY HH:MI AM";