ORA-01843 Not a valid month

Always be specific when you have dates formatted as text: do the conversion explicitly with the correct date/time format for your data.

to_date('14/04/2015', 'DD/MM/YYYY')

Do that for all date inputs.

Leave a Comment