I have a file import_file.csv
with the below mentioned timestamp format.
Oct/21/2013 09:45:01 AM EDT
Dec/04/2013 04:41:01 PM EST
I created a table in IBM DB2 v9.7
create table table_import_timestamp ( my_timestamp timestamp )
And then tried importing the file.
db2 import from import_file.csv of del messages msg.out insert into table_import_timestamp
I did try with a few modified timestamp format available in db2 import utility but didn't find one that is suitable to import the timestamp with the format mentioned in the file.
Is there a way for me to import this format in to a table without modifying the file and by specifying the timestamp format in my import statement itself?