2 Day Developer > Using SQL Command Line > Using SQL Command Line > Running Scripts From SQL Co...
Running Scripts From SQL Command Line |
Previous |
Next |
You can use a text editor to create SQL Command Line script files that contain SQL*Plus, SQL, and PL/SQL statements. For consistency, use the .sql
extension for the script file name.
A SQL script file is executed with a START
or @
command. For example, in a Windows environment, you can execute a SQL script as follows:
SQL> @c:\my_scripts\my_sql_script.sql
A SQL script file can be executed in a Linux environment as follows:
SQL> START /home/cjones/my_scripts/my_sql_script.sql
You can use SET
ECHO
ON
to cause a script to echo each statement that is executed. You can use SET
TERMOUT
OFF
to prevent the script output from displaying on the screen.
When running a script, you need to include the full path name unless the script is located in the directory from which SQL Command Line was started, or the script is located in the default script location specified by the SQLPATH
environment variable.
See Also:
|