Reputation: 11
Here's what I have in my control card.
updt_tmstmp "YYYY-MON-DD HH24.MI.SS",
But when I load the error code is
ORA-00917: missing comma
Not sure how to fix.
Thanks!
Upvotes: 1
Views: 149
Reputation: 143013
It would probably help if you posted a little bit more of the control file; anyway, it seems that TO_DATE
is missing, e.g.
updt_tmstmp "to_date(:updt_tmstmp, 'YYYY-MON-DD HH24.MI.SS')",
Upvotes: 1