Oracle 12C新特性-History命令
Oracle 12C新特性-History命令
在12c裡,推出了History命令,類似Shell中的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.
過程如下:
[oracle@cjcos ~]$ sqlplus / as sysdba
SQL> hist
SP2-1650: History is off, use "SET HIST[ORY] ON" to enable History.
SQL> set hist on
SQL> show pdbs
SQL> select * from v$version;
SQL> select tablespace_name from dba_tablespaces;
SQL> alter session set container=cjcpdb01;
SQL> select * from tab;
SQL> hist
1 show pdbs
2 select * from v$version;
3 select tablespace_name from dba_tablespaces;
4 alter session set container=cjcpdb01;
5 select * from tab;
---重新執行第二條
SQL> hist 2 run
---編輯第二條
SQL> hist 2 edit
歡迎關注我的微信公眾號"IT小Chen",共同學習,共同成長!!!
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29785807/viewspace-2681112/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Oracle 12C新特性In-MemoryOracle
- Oracle 12c 兩個新特性Oracle
- Oracle 12c新特性--ASMFD(ASM Filter Driver)特性OracleASMFilter
- Oracle 12C新特性-RMAN恢復表Oracle
- Oracle 12c新特性---Rapid Home Provisioning (RHP)OracleAPI
- Oracle 12C新特性-資料泵新引數(LOGTIME)Oracle
- Oracle 12C新特性-資料泵新引數(VIEWS_AS_TABLES)OracleView
- Oracle 12c 新特性之臨時Undo--temp_undo_enabledOracle
- Oracle 12C R2新特性-本地UNDO模式(LOCAL_UNDO_ENABLED)Oracle模式
- ORACLE 12C 優化器的一些新特性總結(二)Oracle優化
- ORACLE 12C 優化器的一些新特性總結(一)Oracle優化
- 12c RMAN新特性之Recover Table
- Oracle 12c新特性--LREG程式專門負責註冊例項服務Oracle
- Oracle 12C新特性-線上把非分割槽錶轉為分割槽表Oracle
- 【12.2】Oracle 12C R2新特性-外部表支援分割槽了(Partitioning External Tables)Oracle
- [20190718]12c rman新特性 表恢復.txt
- linux-history命令Linux
- 常見命令-history
- 【12c】12c RMAN新特性之recover table(表級別恢復)
- 12c新特性,線上move資料檔案
- Oracle 12c的DG自動同步密碼檔案--ASM 新特性:共享密碼檔案Oracle密碼ASM
- 嚐鮮Oracle Database 12c的十二大新特性VKOracleDatabase
- Oracle merge 與 PG新特性 UPSERTOracle
- Linux history 命令詳解Linux
- 12C新特性___In-Memory列式儲存的總結
- 1 Oracle Database 19c 新特性OracleDatabase
- 12c DG新特性 - Active Data Guard Far Sync (Doc ID 2179719.1)
- lockdown profile 12c之後的許可權控制新特性
- 【DATAGUARD】Data Guard 12C 新特性:Far Sync Standby (Doc ID 2179719.1)
- Oracle12C新特性_DDL日誌Oracle
- Oracle 20C 多租戶_新特性Oracle
- LightDB 23.1相容Oracle新特性支援Oracle
- Linux下history命令簡單原理Linux
- 分享一條history命令小技巧
- Linux系統下活用History命令Linux
- Oracle 18c新特性詳解 - 表和表空間相關的新特性Oracle
- Oracle 21c新特性預覽與日常管理相關的幾個新特性Oracle
- Oracle 12c Automatic ReoptimizationOracle