Ora201:Saving Queries and Results

From mi-linux
Jump to navigationJump to search

Main Page >> Oracle and SQL >> Workbook >> Saving Queries and Results

Saving Query Output

At some point you will want to save the results of a query in a file, as well as display them on screen.

To send the results of a query to a file use the SPOOL command.

The format is:

SPOOL [u:\]filename

All information that is displayed on the screen after issuing the SPOOL command will also be written to the specified file. The suffix .lst will be added to the specified filename to identify it as a listing file. You can add a different suffix if required, e.g., filename.txt to denote a text file. This can be useful if importing into Word or Excel so the package will automatically know the file type.

SQL*PLUS will continue to spool information to the file until the spooling is turned of by the following command:

SPOOL OFF

For example, type in the following (press return after each line):

SPOOL u:\emplist.txt
SELECT * FROM EMP;
SPOOL OFF
The file emplist.txt will be saved in your Documents folder (Windows) or the current directory in Linux. See if you can find it.


Exercise 2.1

To do:

  • Write an SQL command that lists all the departments, saving the the output to a file called: output.txt
    • Do not forget to use SPOOL OFF at the end
  • Look on your computer for a file called: output.txt
  • Use a text editor, such as Notepad, Notepad++ or vi, to look at the contents of output.txt.


Next Step

Saving and Retrieving queries.