I'm dealing with a particularly bad dataset with dates stored as part of free text.
I'm using to_date(regexp_substr(dateformat)) to find all of the dates I can. I don't expect to grab all of them but as many as possible is good!
However, it seems sometimes that my regular expression picks up dates outside of my recognised date format, and I get the error: "date format picture ends before converting entire input string"
I would like to use something like try_convert in SQL Server to work around this, and just skip dates that come out as a problem.
Any ideas on how best to go about this?
PS Using Oracle SQl Developer 3.0.1 (No opportunity to update this unfortunately...)