【Oracle】输入时不能删除错误字符,不能移动位置

问题


  • 当使用sqlplus进入Oracle,输入SQL时,一些特殊符号,比如删除和位置键,都不能使用

 

解决方法


  • 安装 rlwrap (源地址:https://github.com/hanslub42/rlwrap)
  • 步骤
    • git clone https://github.com/hanslub42/rlwrap.git
    • cd rlwrap
    • autoreconf --install
    • ./configure
    • make
    • sudo make install
  • 后续
    • 使用 rlwrap sqlplus 即可进入Oracle
    rlwrap sqlplus xxx
    
    • 为了方便,在bashrc文件中加入命令的别称
    echo alias sqlplus='rlwrap sqlplus' > ~/.bashrc
    source ~/.bashrc
    
    • 使用 sqlplus 进入Oracle
    sqlplus xxx
    

你可能感兴趣的:(Problem,Database,#,Oracle,oracle)