SQL*Plus User's Guide and Reference Release 8.1.5 A66736-01 |
|
Command Reference, 46 of 52
Saves attributes of the current SQL*Plus environment in a host operating system file (a command file).
STORE {SET} file_name[.ext] [CRE[ATE]|REP[LACE]|APP[END]]
Refer to the following list for a description of each term or clause:
Refer to the SAVE command for information on the other terms and clauses in the STORE command syntax.
This command creates a command file which can be executed with the START, @ or @@ commands.
If you want to store a file under a name identical to a STORE command clause (that is, CREATE, REPLACE or APPEND), you must put the name in single quotes or specify a file extension.
To store the current SQL*Plus system variables in a file named DEFAULTENV with the default command-file extension, enter
SQL> STORE SET DEFAULTENV
To append the current SQL*Plus system variables to an existing file called DEFAULTENV with the extension OLD, enter
SQL> STORE SET DEFAULTENV.OLD APPEND
|
Copyright © 1999 Oracle Corporation. All Rights Reserved. |
|