在 SQL Developer (ORACLE) 中编译脚本文件
Compile Script file in SQL Developer (ORACLE)
我正在执行来自 SQL Developer 的脚本文件 (c:\sqlfiles\Test.sql)。文件包含以下语句
@@test1.sql;
@@test2.sql;
@@test3.sql;
所有这些 sql 文件都包含函数或过程。
但问题是在 运行 命令 @c:\sqlfiles\Test.sql 时,我正在低于 ERROR 。我该如何清除它?
Error starting at line 1 in command:

Error report:
Unknown Command
FUNCTION test1 compiled
FUNCTION test2 compiled
FUNCTION test3 compiled
尝试将您的文件保存为 ANSI(更改其编码)然后尝试。或者没有 BOM 的 utf8
我正在执行来自 SQL Developer 的脚本文件 (c:\sqlfiles\Test.sql)。文件包含以下语句
@@test1.sql;
@@test2.sql;
@@test3.sql;
所有这些 sql 文件都包含函数或过程。
但问题是在 运行 命令 @c:\sqlfiles\Test.sql 时,我正在低于 ERROR 。我该如何清除它?
Error starting at line 1 in command:

Error report:
Unknown Command
FUNCTION test1 compiled
FUNCTION test2 compiled
FUNCTION test3 compiled
尝试将您的文件保存为 ANSI(更改其编码)然后尝试。或者没有 BOM 的 utf8