Oracle: To export to comma delimited or pipe delimited file
In SQL Developer or
set term off
set feed off set sqlformat csv spool out.csv select /*+ parallel */* from table_name; spool offIn the output , right-click and export to txt file
In SQL Developer or
set term off
set feed off set sqlformat csv spool out.csv select /*+ parallel */* from table_name; spool off
Comments
Post a Comment