I am using Db2 database for my project. I want to export the data from local to server. So I have used the export command to get the data.
export to '/home/user/user.sql' of del select * from user
This works fine. But the date format of datas will be wrong in user.sql file like below.
1,"user1",20110606
2,"user2",20110607
Here 20110606 is a date format. It exported the format like this instead of 2011-06-06
Because of this problem, when I Load the data into server, the date fields are stored as NULL.
Please help. Thanks in advance.
CHAR. – Clockwork-Muse Oct 31 '11 at 21:08