I want to execute a simple function in Oracle. The signature is defined as follows:
CREATE OR REPLACE FUNCTION NewCaseListForValidation
(
It's best not to rely on particular value in NLS_PARAMETERS settings, cause this will make your function break in the env with another NLS_DATE_FORMAT.
I'd explicitly specify date formatting in your function as suggested in the answer above
exec :rc := newcaselistforvalidation(to_date('2010-01-01','YYYY-MM-DD'),to_date('2011-01-01','YYYY-MM-DD'),100);
An alternative to the to_date() function is to use the ANSI standard format for DATE or TIMESTAMP literals:
DATE '2010-01-31' TIMESTAMP '2010-01-31 21:22:23'
Date and time is always specified using ISO rules (YYYY-MM-DD and 24hour format for time)
This also works on a lot of other (standard compliant) DBMS.
Query NLS_PARAMETERS in Oracle- you will then be able to see what format your DB is accepting dates in.
Typically however i use the to_date() function:
to_date('01-01-2011','DD-MM-YYYY');
In the UK to input my dates.
INSERT INTO tblDate (dateStart) Values ('20-JUN-2013'); If you change month integer into a string 'DD-MON-YYYY' works as a valid data string without having to preface it with the DATE identifier.