sqlplus & rman 命令下,使用上下翻動鍵,呼叫之前執行過的命令

TaihangMeng發表於2016-08-06

在Linux下使用sqlplus或者rman時,經常需要呼叫上次或之前執行過的命令

 SQL>  
 RMAN>

實現步驟:

 1、安裝名為rlwrap的對應版本的安裝包(Linux 6 對應 rlwrap-0.37 版本)

  1. [root@C01TEST03 tmp]# rpm -ivh rlwrap-0.37-2.1.x86_64.rpm
  2. warning: rlwrap-0.37-2.1.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID 3dbdc284: NOKEY
  3. Preparing... ########################################### [100%]
  4.         package rlwrap-0.37-2.1.x86_64 is already installed

 2、配置

   (1)在sqlplus、RMAN命令之前直接加上rlwrap

  1. oracle@C01TEST03:/home/oracle>rlwrap sqlplus / as sysdba

  2. SQL*Plus: Release 11.2.0.4.0 Production on Mon Aug 1 11:14:06 2016

  3. Copyright (c) 1982, 2013, Oracle. All rights reserved.


  4. Connected to:
  5. Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
  6. With the Partitioning, OLAP, Data Mining and Real Application Testing options

  7. SQL>

  (2) 在oracle賬號的配置檔案中加入別名

  1. oracle@C01TEST03:/home/oracle>vi .bash_profile

  2. alias sqlplus='rlwrap sqlplus'
  3. alias rman='rlwrap rman'


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/30776559/viewspace-2123085/,如需轉載,請註明出處,否則將追究法律責任。

相關文章