So I have this little script :
set serveroutput on;
DECLARE
val DATE;
BEGIN
val := TO_DATE('27-Jan-2001','DD-Mon-YYYY');
dbms_output.put_line(val);
END;
The mask match with the date I'm inputing but it displays
ORA-01843: not a valid month
every time...
Thanks