详解在SQLPlus中实现上下键翻查历史命令的功能

oracle当然是世界上最强大的数据库,但它的客户端sqlplus真的不友好,现在还不能支持上下方向键翻查历史命令,这里介绍使用readline和rlwrap实现这个功能的方法。

安装readline

[root@localhost yum.repos.d]# yum install readline*
loaded plugins: langpacks, ulninfo
resolving dependencies
--> running transaction check
---> package readline.x86_64 0:6.2-10.el7 will be updated
---> package readline.x86_64 0:6.2-11.el7 will be an update
---> package readline-devel.x86_64 0:6.2-11.el7 will be installed
--> processing dependency: ncurses-devel for package: readline-devel-6.2-11.el7.x86_64
--> running transaction check
---> package ncurses-devel.x86_64 0:5.9-14.20130511.el7_4 will be installed
--> finished dependency resolution
...

安装rlwrap

在github中下载readline的打包工具(readline wrapper)rlwrap:

 wget https://github.com/hanslub42/rlwrap/archive/refs/heads/master.zip

安装相关编译工具并编译:

sudo yum install -y autoconf automake
autoreconf --install 
./configure
make
sudo make install
$ which rlwrap 
/usr/local/bin/rlwrap

创建别名

在 oracle用户下的 .bash_profil 中增加两个别名:

alias sqlplus='/usr/local/bin/rlwrap /u01/app/oracle/product/version/db_1/bin/sqlplus'
alias rman='/usr/local/bin/rlwrap /u01/app/oracle/product/version/db_1/bin/rman'

这样以后再使用sqlplus和rman的时候就可以使用上下键调出历史命令了!

到此这篇关于在sqlplus中实现上下键翻查历史命令的功能的文章就介绍到这了,更多相关sqlplus上下键翻查历史命令内容请搜索www.887551.com以前的文章或继续浏览下面的相关文章希望大家以后多多支持www.887551.com!

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐