AReallyMan 2011-03-18
使Unix下的sqlplus/rman也像windows下sqlplus/rman命令一样,可以通过左右箭头修改命令,通过上下箭头查看命令历史。
The rlwrap (readline wrapper) utility provides a command history and editing of keyboard input for any other command. This is a really handy addition to SQL*Plus and RMAN on Linux.
而rlwrap会用到readline包,首先要安装readline,然后安装rlwrap。
一、下载
readline下载:http://directory.fsf.org/project/readline/
rlwrap下载:http://utopia.knoware.nl/~hlub/uck/rlwrap/
二、安装(使用root登陆,平台是Solaris,其它类似)
install readline:
# gunzip readline-5.0.tar.gz
# tar xvf readline-5.0.tar
# cd readline-5.0
# ./configure
# make
# make install
install rlwrap:
# gunzip rlwrap-0.30.tar.gz
# tar xvf rlwrap-0.30.tar
# cd rlwrap-0.30
# ./configure
# make
# make check
# make install
查询安装路径
which 文件名
或版本
rpm-qa | 文件名
三、使用
# rlwrap sqlplus user/pwd@testdb
可以设别名放到.bash_porfile里,然后直接使用别名即可。
alias rlsqlplus='rlwrap sqlplus'
生效
source ~/.bash_porfile
linux环境下使用sqlplus,在回删时往往会出现一串的乱码。出现乱码是由于oracle的sqlplus不使用gnu的readline库造成的。 或者把sttyerase^H添加到.cshrc中。