博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
利用Uniread实现Linux下SQLPlus命令行历史回调
阅读量:5115 次
发布时间:2019-06-13

本文共 2459 字,大约阅读时间需要 8 分钟。

大家知道, 在 Windows 平台 命令行中的 SQL*Plus 有命令行历史回调的功能,在SQL*Plus工具下面,可以利用键盘的"向上向下"箭头键对命令行的进行回调.而在Linux上则没有该功能(虽然 Shell 可以做到这一点,但是 SQL*Plus 不可以). 而该功能对于CLI爱好者来说几乎是不可缺的,不知道为什么 Oracle 不把这个功能加进来.不得而知了.

一些SQL*Plus 的替代产品(如 以及)具备command-line editing 和Command history的功能, 但是这些产品的开发进度较慢--有的甚至已经停止了更新.

(参见:  - http://sourceforge.net/projects/gqlplus 以及 - http://sourceforge.net/projects/yasql/ 等 SQL*Plus 替代工具 ).

在网络上闲逛的时候, 发现了一个在Linux下面的解决办法.

该工具叫做  - http://sourceforge.net/projects/uniread/ ) ,熟悉Linux下变成的朋友可能看到这个名字已经想起了一些东西:readline . 不错,该工具就是利用GNU的readline库来完成我们的需求的.

我们先看一下对该工具的介绍:

uniread - universal readline

- adds full readline support (command editing, history, etc.) to any existing interactive command-line program. Common examples are Oracle's sqlplus or jython. uniread will work on any POSIX platform with Perl.

可以看出,该工具可以对任何既有的交互命令行程序都可提供完备的readline支持.

从该站点下载源程序.目前的稳定版本是1.01.

在安装该工具之前系统必须安装好Perl, 此外还必须要三个工具包:

http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html

http://search.cpan.org/dist/Term-ReadLine-Gnu/

uniread-1.01

http://sourceforge.net/projects/uniread/

其中GNU readline 上面的网页在我的机器上打不开(不可访问?),如果你也是同样情况,可以到 http://www.gnu.org/directory/readline.html 这个页面下载.

下载后,首先解压缩:

# tar -xzvf readline-4.3.tar.gz
进入进入到该目录中编译并安装:
# ./configure# make # make install
tar -zxvf IO-Tty-1.07.tar.gz
# perl Makefile.pl# make # make install
 
 
          tar -zxvf Term-ReadLine-Gnu-1.17a.tar.gz
# perl Makefile.pl# make # make install
都安装完了之后,进行 uniread 的安装:
#tar -xzvf uniread-1.01.tar.gz#cd uniread-1.01#./configure#make #make install

注: 以上的命令行操作所在绝对路径为了方便而省略,你的环境肯定会和我的不同,此外,建议使用普通用户编译,然后用 root 进行 make install .

都安装完了之后切换到Oracle用户下:

$ uniread sqlplus /nolog

输出类似如下:

[uniread] Loaded history (12 lines) //我的已经运行一次了,uniread 缓冲了12行history SQL*Plus: Release 10.1.0.2.0 - Production on Sat Mar 6 00:23:05 2004Copyright (c) 1982, 2004, Oracle. All rights reserved.SQL>
 
在oracle 用户目录下面的.bash_profile 里面添加一个别名alias sqlplus='uniread sqlplus'
 
source .bash_profile 使环境变量生效,以后只要输入sqlplus /as sysdba 进入就会有历史记录支持

查看uniread的Manual:

$man uniread

你可以做个sqlplus 的别名 ,uniread的使用是透明的,是不是很方便了? 不要忘了:这个工具是有通用性的,不止是 SQL*Plus 可以这样用,其他类似的命令行程序也能如此的.

FAQ

如果要删除命令行历史,可以简单的用如下操作即可:

[oracle@FOO oracle]$ echo ''>.uniread/sqlplus 

[oracle@FOO oracle]$
[oracle@FOO oracle]$ ls -ltr .uniread/        
total 4
-rw-------    1 oracle   oracle          1 Oct 31 15:57 sqlplus
[oracle@FOO oracle]$
[oracle@FOO oracle]$ uniread sqlplus
[uniread] Loaded history (1 lines)

转载于:https://www.cnblogs.com/keepwalking/archive/2011/07/01/2095952.html

你可能感兴趣的文章
前端监控
查看>>
clipboard.js使用方法
查看>>
移动开发平台-应用之星app制作教程
查看>>
leetcode 459. 重复的子字符串(Repeated Substring Pattern)
查看>>
伪类与超链接
查看>>
centos 7 redis-4.0.11 主从
查看>>
博弈论 从懵逼到入门 详解
查看>>
永远的动漫,梦想在,就有远方
查看>>
springboot No Identifier specified for entity的解决办法
查看>>
慵懒中长大的人,只会挨生活留下的耳光
查看>>
"远程桌面连接--“发生身份验证错误。要求的函数不受支持
查看>>
【BZOJ1565】 植物大战僵尸
查看>>
VALSE2019总结(4)-主题报告
查看>>
浅谈 unix, linux, ios, android 区别和联系
查看>>
51nod 1428 活动安排问题 (贪心+优先队列)
查看>>
中国烧鹅系列:利用烧鹅自动执行SD卡上的自定义程序(含视频)
查看>>
Solaris11修改主机名
查看>>
latex for wordpress(一)
查看>>
如何在maven工程中加载oracle驱动
查看>>
Flask 系列之 SQLAlchemy
查看>>