我正在尝试学习PL / SQL,但我无法运行基本脚本。在这一点上,我觉得没有语法问题,但我缺少一些基本的东西。
BEGIN
dbms_output.put_line('Hello world');
END
当我运行它时,我收到错误说
Error starting at line : 1 in command -
BEGIN
dbms_output.put_line('Hello world');
END
当我运行脚本时,我收到一条错误消息:
Error report -
ORA-06550: line 4, column 3:
PLS-00103: Encountered the symbol "end-of-file" when expecting one of the following:
; <an identifier> <a double-quoted delimited-identifier>
The symbol ";" was substituted for "end-of-file" to continue.
06550. 00000 - "line %s, column %s:\n%s"
*Cause: Usually a PL/SQL compilation error.
*Action:
如果您知道我可能遗失的内容,请告诉我。
答案 0 :(得分:3)
在运行脚本之前,最后需要一个分号和“/”。
set serveroutput on
不要忘记“{{1}}”来查看实际输出。