I have a data source file that I am loading in Redshift with a COPY command.
The file has a bunch of date columns with a two digit year format (I know, I am dealing with dinosaurs here).
Redshift recognizes the date format, but the problem is the file has values like:
06/01/79
which actually means:
2079-06-01
however Redshift interprets it as:
1979-06-01
Is there a way to tell Redshift what is my threshold for the two digit date formats. For example values lower than 90 should be interpreted as 20XX.
The DATEFORMAT parameter in the COPY command does not have such an option.