SQL*Plus User's Guide and Reference Release 8.1.5 A66736-01 |
|
Command Reference, 39 of 52
Saves the contents of the SQL buffer in a host operating system file (a command file).
SAV[E] file_name[.ext] [CRE[ATE]|REP[LACE]|APP[END]]
Refer to the following list for a description of each term or clause:
If you do not specify an extension, SQL*Plus assumes the default command-file extension (normally SQL). For information on changing this default extension, see the SUFFIX variable of the SET command in this chapter.
If you wish to SAVE a file under a name identical to a SAVE command clause (CREATE, REPLACE, or APPEND), you must specify a file extension.
When you SAVE the contents of the SQL buffer, SAVE adds a line containing a slash (/) to the end of the file.
If the filename you specify is the word file, you need to put the name in single quotes.
To save the contents of the buffer in a file named DEPTSALRPT with the extension SQL, enter
SQL> SAVE DEPTSALRPT
To save the contents of the buffer in a file named DEPTSALRPT with the extension OLD, enter
SQL> SAVE DEPTSALRPT.OLD
|
Copyright © 1999 Oracle Corporation. All Rights Reserved. |
|