Oracle 12C 新特性之 sqlplus檢視History命令
12c裡,Oracle推出了 History 命令,這很像 Shell 中的 history ,減少了重敲 SQL ,帶來了很多便利。
1. 檢視history幫助
SQL> help history
HISTORY
-------
Stores, lists, executes, edits of the commands
entered during the current SQL*Plus session.
HIST[ORY] [N {RUN | EDIT | DEL[ETE]}] | [CLEAR]
N is the entry number listed in the history list.
Use this number to recall, edit or delete the command.
Example:
HIST 3 RUN - will run the 3rd entry from the list.
HIST[ORY] without any option will list all entries in the list.
2. hist 語法
HIST[ORY] [N {RUN | EDIT | DEL[ETE]}] | [CLEAR]
3. hist 預設是關閉的,在每次會話斷開連線後會自動關閉,當hist關閉後,hist 列表會被清空。
SQL> history;
SP2-1650: History is off, use "SET HIST[ORY] ON" to enable History.
4. 開啟或者關閉hist
SQL> set hist on;
SQL> set hist off;
5.檢視hist狀態
SQL> show hist;
history is OFF
6.設定hist保留的記錄數 ,預設保留記錄數是 100
SQL>set history 3;
7. 檢視hist保留的記錄
SQL> hist list;
1 show con_name
2 show parameter version;
3 show hist;
說明:保留的記錄數 是按命令計算 而不是行數。
8. 執行指定記錄
SQL> hist;
1 select sysdate from dual;
2 show con_name
3 select date from dual;
SQL> hist 2 run;
CON_NAME
------------------------------
CDB$ROOT
9. 編輯之前的命令
hist 1 edit;
說明:可以像linux vi一樣操作,編輯保留後的記錄新增到記錄數末尾。
10. 刪除指定記錄數
hist 2 del
11.清空所有記錄數
SQL> hist clear;
1. 檢視history幫助
SQL> help history
HISTORY
-------
Stores, lists, executes, edits of the commands
entered during the current SQL*Plus session.
HIST[ORY] [N {RUN | EDIT | DEL[ETE]}] | [CLEAR]
N is the entry number listed in the history list.
Use this number to recall, edit or delete the command.
Example:
HIST 3 RUN - will run the 3rd entry from the list.
HIST[ORY] without any option will list all entries in the list.
2. hist 語法
HIST[ORY] [N {RUN | EDIT | DEL[ETE]}] | [CLEAR]
3. hist 預設是關閉的,在每次會話斷開連線後會自動關閉,當hist關閉後,hist 列表會被清空。
SQL> history;
SP2-1650: History is off, use "SET HIST[ORY] ON" to enable History.
4. 開啟或者關閉hist
SQL> set hist on;
SQL> set hist off;
5.檢視hist狀態
SQL> show hist;
history is OFF
6.設定hist保留的記錄數 ,預設保留記錄數是 100
SQL>set history 3;
7. 檢視hist保留的記錄
SQL> hist list;
1 show con_name
2 show parameter version;
3 show hist;
說明:保留的記錄數 是按命令計算 而不是行數。
8. 執行指定記錄
SQL> hist;
1 select sysdate from dual;
2 show con_name
3 select date from dual;
SQL> hist 2 run;
CON_NAME
------------------------------
CDB$ROOT
9. 編輯之前的命令
hist 1 edit;
說明:可以像linux vi一樣操作,編輯保留後的記錄新增到記錄數末尾。
10. 刪除指定記錄數
hist 2 del
11.清空所有記錄數
SQL> hist clear;
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31383567/viewspace-2139286/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Oracle 12C新特性-History命令Oracle
- Oracle 12C R2-新特性-SQLPLUS提供檢視歷史命令的功能OracleSQL
- Oracle 12c新特性之Sequence的Session特性OracleSession
- Oracle 12c 新特性之 temp undoOracle
- Oracle 12C 新特性之級聯truncateOracle
- Oracle 12C 新特性之 恢復表Oracle
- Oracle 12c新特性Oracle
- Oracle 12c新特性之檢測有用的多列統計資訊Oracle
- oracle 12c 新特性三:rman命令視窗可以執行sql語句OracleSQL
- oracle 12c 新特性之不可見欄位Oracle
- oracle 12C 新特性之臨時undo控制Oracle
- Oracle 12C R2-新特性-新增兩個檢視:方便檢視trace檔案和內容Oracle
- oracle10g新特性——物化檢視Oracle
- Oracle 12c 新特性(四)Oracle
- Oracle 12c 新特性(三)Oracle
- Oracle 12c 新特性(二)Oracle
- Oracle 12c 新特性(一)Oracle
- SQLPLUS檢視oracle sql執行計劃命令SQLOracle
- ZT oracle10g新特性——物化檢視Oracle
- Oracle 12c 兩個新特性Oracle
- Oracle 12C新特性In-MemoryOracle
- Oracle GoldenGate 12c 新特性OracleGo
- Oracle 12c新特性之——TABLE ACCESS BY INDEX ROWID BATCHEDOracleIndexBAT
- Oracle 12c新特性--ASMFD(ASM Filter Driver)特性OracleASMFilter
- Oracle 12c DG新特性Far SyncOracle
- ORACLE 12C新特性——CDB與PDBOracle
- 12c RMAN新特性之Recover Table
- Oracle 12c 新特性之臨時Undo--temp_undo_enabledOracle
- Oracle 12c新特性之:APPROX_COUNT_DISTINCT 函式OracleAPP函式
- Oracle goldengate 12c 新特性之完美支援Active Data GuardOracleGo
- Oracle 12C 新特性之表分割槽部分索引(Partial Indexes)Oracle索引Index
- Oracle 12C 新特性之資料檔案線上遷移Oracle
- Oracle 12C新特性-RMAN恢復表Oracle
- 12c新特性-Oracle Sharding簡介Oracle
- Oracle 12c新特性 - Hybrid histogram 3OracleHistogram
- Oracle 12c新特性 - Hybrid histogram 2OracleHistogram
- Oracle 12c新特性 - Hybrid histogram 1OracleHistogram
- Oracle 12c新特性 - Top frequency histogram 3OracleHistogram