Experts,
I have script that loads multiple csv files to DB using SQL Loader. Each csv files is from different systems but the targe table is same for all.
I initially created the all columns are VARCHAR and hence no issues, however the problem started with Date field, where the data format comes different for different system and they are to be loaded to same column.
VerificationDate '20150501090200
TransDate '20150902'
CompletedDate '01/01/2018'
ReceivedDate '2015-11-17 12:02:39' or '2018-01-01 12:30:59.213000000'
1) How can i format the three types into any of the one format?
2) Does the column have to be DATE to achieve that?