Is there any way by which we can export the result of a select statment to CSV file, just like in MySQL.
MySQL Command;
SELECT col1,col2,coln into OUTFILE 'result.csv' FIELDS TERMINATED BY ',' FROM testtable t;
|
|
|
You can run this command from the DB2 command line processor (CLP) or from inside a SQL application by calling the
There are lots of options for Keep in mind that any |
||||
|
|
|
This is how you can do it from DB2 client.
|
|||
|
|
|
Thried this and got ';'-delimited csv file:
|
|||
|
|
|
According to the docs, you want to export of type del (the default delimiter looks like a comma, which is what you want). See the doc page for more information on the EXPORT command. |
|||
|
|