Click here to Skip to main content
15,892,697 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello.,
I m using sqlplus editor .I want only result of query into .txt file without using spool command.

Thanks.
Posted

1 solution

The default way to save to a file in the SQLPlus editor is using the SPOOL command.

SQL>SPOOL c:\tmp\mydata.dat

SQL>select * from tablename 

SQL>SPOOL OFF
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900