Exporting result of select statement to CSV format in DB2

后端 未结 6 625
感情败类
感情败类 2020-12-24 02:01

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 OU         


        
相关标签:
6条回答
  • 2020-12-24 02:33

    This is how you can do it from DB2 client.

    1. Open the Command Editor and Run the select Query in the Commands Tab.

    2. Open the corresponding Query Results Tab

    3. Then from Menu --> Selected --> Export

    0 讨论(0)
  • 2020-12-24 02:36

    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.

    0 讨论(0)
  • 2020-12-24 02:43

    You can run this command from the DB2 command line processor (CLP) or from inside a SQL application by calling the ADMIN_CMD stored procedure

    EXPORT TO result.csv OF DEL MODIFIED BY NOCHARDEL 
    SELECT col1, col2, coln FROM testtable;
    

    There are lots of options for IMPORT and EXPORT that you can use to create a data file that meets your needs. The NOCHARDEL qualifier will suppress double quote characters that would otherwise appear around each character column.

    Keep in mind that any SELECT statement can be used as the source for your export, including joins or even recursive SQL. The export utility will also honor the sort order if you specify an ORDER BY in your SELECT statement.

    0 讨论(0)
  • 2020-12-24 02:52

    I tried this and got a ';'-delimited csv file:

    --#SET TERMINATOR % 
    EXPORT TO result.csv OF DEL MODIFIED BY CHARDEL;
    SELECT * FROM A
    
    0 讨论(0)
  • 2020-12-24 02:55

    DBeaver allows you connect to a DB2 database, run a query, and export the result-set to a CSV file that can be opened and fine-tuned in MS Excel or LibreOffice Calc.

    To do this, all you have to do (in DBeaver) is right-click on the results grid (after running the query) and select "Export Resultset" from the context-menu.

    This produces the dialog below, where you can ultimately save the result-set to a file as CSV, XML, or HTML:

    enter image description here

    0 讨论(0)
  • 2020-12-24 02:58

    I'm using IBM Data Studio v 3.1.1.0 with an underlying DB2 for z/OS and the accepted answer didn't work for me. If you're using IBM Data Studio (v3.1.1.0) you can:

    1. Expand your server connection in "Administration Explorer" view;
    2. Select tables or views;
    3. On the right panel, right click your table or view;
    4. There should be an option to extract/download data, in portuguese it says: "Descarregar -> Com sql" - something like "Download -> with sql;"
    0 讨论(0)
提交回复
热议问题