您的位置:首页 > 数据库

解决sqlplus中不能上下翻阅历史命令的问题

2021-04-09 09:33 726 查看

在 Linux的 sqlplus中运行 SQL语句之后,想用上下键把历史命令找出来,这样是linux系统默认是不支持的。

 如何像windows里的cmd窗口的sqlplus一样能上下翻历史命令呢?

可以使用 rlwrap工具实现这个功能


1.下载 rlwrap工具


 

2.安装 rlwrap

[root@server122 oracle]# tar -zxvf rlwrap-0.37.tar.gz

[root@server122 rlwrap-0.37]# ./configure

[root@server122 rlwrap-0.37]# make

[root@server122 rlwrap-0.37]# make install

--查看 rlwrap命令

[root@server122 rlwrap-0.37]# rlwrap

Usage: rlwrap [options] command ...

 

Options:

  -a[password:]              --always-readline[=password:]

  -A                         --ansi-colour-aware

  -b                  --break-chars=

  -c                         --complete-filenames

  -C                 --command-name=

  -D  <0|1|2>                --history-no-dupes=<0|1|2>

  -f        --file=

  -g                 --forget-matching=

  -h                         --help

  -H                   --history-filename=

  -i                         --case-insensitive

  -I                         --pass-sigint-as-sigterm

  -l                   --logfile=

  -n                         --no-warnings

  -N                         --no-children

  -o                         --one-shot

  -O                 -->

  -p[colour]                 --prompt-colour[=colour]

  -P                  --pre-given=

  -q                  --quote-characters=

  -m[newline substitute]     --multi-line[=newline substitute]

  -r                         --remember

  -R                         --renice

  -v                         --version

  -s                      --histsize= (negative: readonly)

  -S                 --substitute-prompt=

  -t                   --set-term-name=

  -w                      --wait-before-prompt= (msec, <0  : patient mode)

  -z         --filter=

 

bug reports, suggestions, updates:

~hlub/uck/rlwrap/

 

3.使用 rlwrap

[oracle@server122 ~]$ rlwrap sqlplus "/as sysdba"

SQL> show sga

 

Total System Global Area 2.5770E+10 bytes

Fixed Size                  2142928 bytes

Variable Size            2852130096 bytes

Database Buffers         2.2901E+10 bytes

Redo Buffers               14630912 bytes

 

--此时用上下键功能可以就可像 windows里一样,可以上下翻命令了

SQL> show sga

 

4.设置 sqlplus别名

为了 sqlplus使用方便,让 sqlplus默认在 rlwrap方式下运行,可以设置一个别名

[oracle@server122 ~]$ pwd

/home/oracle

 

[oracle@server122 ~]$ vi .bash_profile

alias sqlplus='rlwrap sqlplus' #添加此内容

 

--使之生效,或是重新登录 oracle用户

[oracle@server122 ~]$ source .bash_profile

 

--用 type sqlplus验证,如果显示下面的信息证明 alias设置成功

[oracle@server122 ~]$ type sqlplus

sqlplus is aliased to `rlwrap sqlplus'

 

[oracle@server122 ~]$ sqlplus "/as sysdba"

SQL> show sga

 

Total System Global Area 2.5770E+10 bytes

Fixed Size                  2142928 bytes

Variable Size            2852130096 bytes

Database Buffers         2.2901E+10 bytes

Redo Buffers               14630912 bytes

 

--同样上下翻可以再显历史命令

SQL> show sga

 

注意:

alias定义中使用的是单引号,而不是 TAB上面的那个, /home/oracle/是 oracle用户的主目录。

 

问题:

在安装rlwrap时,如报下面的错误:


[root@nticket1 rlwrap-0.37]# ./configure

......

OPENPTY

configure: checking for pty ranges...

checking for tgetent... no

checking for tgetent in -lcurses... no

checking for tgetent in -lncurses... no

checking for tgetent in -ltermcap... no

configure: WARNING: No termcap nor curses library found

checking for readline in -lreadline... no

configure: error: 


You need the GNU readline library(ftp://ftp.gnu.org/gnu/readline/ ) to build

this program!


解决方法 

安装下面包

libtermcap-devel 

readline-5.1-1.1
readline-devel-5.1-1.1 


内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: