Question: How do I execute an SQL script file in SQLPlus?
Answer: To execute a script file in SQLPlus, type @ and then the file name.
SQL > @{file}
For example, if your file was called script.sql, you'd type the following command at the SQL prompt:
SQL > @script.sql
The above command assumes that the file is in the current directory. (ie: the current directory is usually the directory that you were located in before you launched SQLPlus.)
If you need to execute a script file that is not in the current directory, you would type:
SQL > @{path}{file}
For example:
SQL > @/oracle/scripts/script.sql
This command would run a script file called script.sql that was located in the /oracle/scripts directory.
本文介绍如何在SQLPlus中执行SQL脚本文件。只需输入'@'符号加上文件名即可运行位于当前目录下的脚本文件。如果脚本文件位于其他目录,则需提供完整路径。
2206

被折叠的 条评论
为什么被折叠?



