📄 dbmsoutput.sql
字号:
/*
* DbmsOutput.sql
* Chapter 2, Oracle10g PL/SQL Programming
* by Ron Hardman, Mike McLaughlin, Scott Urman
*
* This script demonstrates the DBMS_OUTPUT package
*/
exec clean_schema.tables
set feedback on
set pages 9999 serveroutput off
PROMPT
PROMPT ** Attempt to print a line of text to the screen
PROMPT
BEGIN
DBMS_OUTPUT.PUT_LINE('Oh Beautiful for Spacious Skies...');
END;
/
PROMPT
PROMPT ** The procedure completes, but it does not print the line
PROMPT ** Set the SERVEROUTPUT setting to ON and retry
PROMPT
set serveroutput on
/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -