[20190603]關於dbms_output輸出問題.txt
[20190603]關於dbms_output輸出問題.txt
--//以前遇到的問題,重新做一個記錄:
--//連結:http://www.itpub.net/thread-2096243-1-1.html
1.環境:
SYS@book> @ ver1
PORT_STRING VERSION BANNER
------------------- ---------- ----------------------------------------------------------------------------
x86_64/Linux 2.4.xx 11.2.0.4.0 Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
2.測試:
SCOTT@book> set serveroutput OFF
SCOTT@book> call dbms_output.enable(1e6);
Call completed.
SCOTT@book> exec DBMS_OUTPUT.put_line ('this is a first test!');
PL/SQL procedure successfully completed.
--//現在不顯示是正常的。因為設定serveroutput OFF.
SCOTT@book> set serverout on
SCOTT@book> exec DBMS_OUTPUT.put_line ('this is a second test!');
this is a first test!
this is a second test!
PL/SQL procedure successfully completed.
--//OK,現在把在快取的第一行一起顯示出來,出現了2行,主要我開啟了dbms_output.enable(1e6),預設這個是disable。再次執行就不會了。
SCOTT@book> exec DBMS_OUTPUT.put_line ('this is a third test!');
this is a third test!
PL/SQL procedure successfully completed.
--//但是如果執行set serveroutput OFF後沒有執行call dbms_output.enable(1e6);快取就關閉了.
3.繼續測試:
SCOTT@book> set serverout off
SCOTT@book> exec DBMS_OUTPUT.put_line ('this is a 111 test!');
PL/SQL procedure successfully completed.
SCOTT@book> set serverout on
SCOTT@book> exec DBMS_OUTPUT.put_line ('this is a 222 test!');
this is a 222 test!
PL/SQL procedure successfully completed.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/267265/viewspace-2647020/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- [20210902]cut使用輸出問題.txt
- [20180312]iostat顯示輸出問題.txtiOS
- [20191202]關於hugepages相關問題.txt
- [20191129]關於hugepages的問題.txt
- [20181123]關於降序索引問題.txt索引
- [20180403]關於時區問題.txt
- [20230317]關於TIME_WAIT問題.txtAI
- [20210520]關於主鍵索引問題.txt索引
- [20190918]關於函式索引問題.txt函式索引
- [20181229]關於字串的分配問題.txt字串
- [20211231]set linesize and dbms_output.line輸出問題.txt
- [20190910]關於降序索引問題5.txt索引
- [20211220]關於標量子查詢問題.txt
- [20200711]關於左右連線的問題.txt
- [20200416]關於軟軟解析的問題.txt
- [20181124]關於降序索引問題4.txt索引
- [20181124]關於降序索引問題3.txt索引
- [20181124]關於降序索引問題2.txt索引
- 【學習筆記】關於Freemark程式碼輸出值的問題筆記
- [20191220]關於共享記憶體段相關問題.txt記憶體
- [20211018]運維中關於history的問題.txt運維
- [20190930]關於資料結構設計問題.txt資料結構
- [20191202]關於oracle例項是否使用hugepages問題.txtOracle
- [20190102]關於字串的分配問題(10g).txt字串
- [20180819]關於父子游標問題(11g).txt
- [20180419]關於閃回的一些問題.txt
- [20180423]關於rman備份的問題2.txt
- [20211214]ezconnect輸入口令的問題.txt
- [20191223]關於共享記憶體段相關問題3.txt記憶體
- 關於python3.7中 scipy模組輸出函式出錯問題的解決Python函式
- [20221212]關於pre_page_sga引數的問題.txt
- [20221214]limits.conf裡面關於memlock設定問題.txtMIT
- [20220909]bbed關於刪除記錄恢復的問題.txt
- [20191204]關於oracle例項是否使用hugepages問題2.txtOracle
- [20190320]關於使用smem檢視記憶體使用的問題.txt記憶體
- [20190108]rlwrap sqlplus tee相關問題.txtSQL
- [20180413]熱備模式相關問題.txt模式
- [20190524]sqlplus 與輸出&.txtSQL