Send SQL* Plus session output to text file

How do you send the output of your SQL* Plus session to a text operating system file

Questions by shrinidhiks

Showing Answers 1 - 2 of 2 Answers

well you want to see the output ina  text file............

this can be done by spooling the data;

for example..you want to see the output of the details of all employees:

do the following steps:

spool c:satya.txt
/
select * from emp
/
spool off;

now you can go to c drive there you can the following file and can get the result there

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions