To do so run the following script:
set head off spool c:\myoracle.txt select field1||', '||field2||', '||field3 from my_table; spool off set head onNotes :
This script will create a comma delimited file named: c:\myoracle.txt
Make sure you replace "my_table" with the actual table name.
And replace the field1, field2, with your column names.
No comments:
Post a Comment