Basic Oracle Concepts and Programming Question:
Download Job Interview Questions and Answers PDF
How To Export Data with a Field Delimiter?
Answer:
The previous exercise allows you to export data with fixed field lengths. If you want export data with variable field lengths and field delimiters, you can concatenate your fields with an expression in the SELECT clause as shown in the tutorial exercise bellow:
SQL> SET HEADING OFF;
SQL> SET FEEDBACK OFF;
SQL> SET LINESIZE 1000;
SQL> SPOOL oraclexe estggl_links.txt;
SQL> SELECT id ||','|| url ||','|| notes ||','|| counts
||','|| created FROM ggl_links;
......
SQL> SPOOL OFF;
You should see all records in ggl_links.txt with ',' delimited fields as shown here:
101,globalguideline.com,Session 1,,17-MAY-06
110,globalguideline.com,Session 1,,17-MAY-06
SQL> SET HEADING OFF;
SQL> SET FEEDBACK OFF;
SQL> SET LINESIZE 1000;
SQL> SPOOL oraclexe estggl_links.txt;
SQL> SELECT id ||','|| url ||','|| notes ||','|| counts
||','|| created FROM ggl_links;
......
SQL> SPOOL OFF;
You should see all records in ggl_links.txt with ',' delimited fields as shown here:
101,globalguideline.com,Session 1,,17-MAY-06
110,globalguideline.com,Session 1,,17-MAY-06
Download Oracle Database Interview Questions And Answers
PDF
Previous Question | Next Question |
What Is the Quickest Way to Export a Table to a Flat File? | What Is SQL*Loader? |