top of page

How to resolve Backspace key issue in sqlplus.

Backspace key does not work in sqlplus.


It's not a issue form Oracle. This is a terminal type issue.


echo $TERM


stty -a and see if you have done anything special with the backspace key.


I hope it’s working now.


Alternate way you can use.


  1. Type stty erase in the terminal

  2. Press CTRL+v on your keyboard

  3. Press the Backspace Key on the keyboard (when I did this it put ^H on the line so my final line looked like stty erase ^H)

  4. Press enter

Now restart SQLPLUS you are able to use the backspace key to delete mistyped characters.

1,594 views0 comments

Recent Posts

See All

How to Connect MySQL Without Root Password.

Many times, I got the question from my colleague or training participants, how to login MySQL if I forgot the password. I have explained the process in many times to them but thought to write this sce

Step by Step Oracle 21c Installation on Linux

Oracle Database 21c is the first Oracle database release with CDB-only architecture. Oracle 20c was announced only CDB architecture but it was not release for on premises. Only for Cloud. That's why i

bottom of page