不能 运行 在 PL/SQL 中问候世界
Can't run hello world in PL/SQL
我正在努力学习 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:
如果你知道我可能遗漏了什么,请告诉我。
在 运行 脚本之前,您只需要一个分号和末尾的“/”。
BEGIN
dbms_output.put_line('Hello world');
END;
/
不要忘记“set serveroutput on
”以查看实际输出。
我正在努力学习 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:
如果你知道我可能遗漏了什么,请告诉我。
在 运行 脚本之前,您只需要一个分号和末尾的“/”。
BEGIN
dbms_output.put_line('Hello world');
END;
/
不要忘记“set serveroutput on
”以查看实际输出。