1751713 Members
5043 Online
108781 Solutions
New Discussion юеВ

rp3440 install

 
SOLVED
Go to solution
Kwahae_1
Regular Advisor

rp3440 install

Hi all,

Just installed a new machine with June 2007 OE media for an Oracle AS and Database installation. Problem is when logged on to Oracle and entering an sql command with an '@' character in it, it carriage controls immediately. What could could cause this and what is the workaround?

Also getting ^?^?^? when back spacing a command. Any idea how to get rid of this across sessions?

Thanks in advance?
5 REPLIES 5
Dennis Handly
Acclaimed Contributor
Solution

Re: rp3440 install

You need to use stty to set your kill and erase chars:
$ stty -kill ^U -erase ^?

This also means your terminal emulator is broken. The erase key should really be control H and backspace should be the same. (I use both interchangeably.)
Fabian Brise├▒o
Esteemed Contributor

Re: rp3440 install

Hello Kwahae.
maybe your term variable is not set..


when you give the env command what is the value of TERM ?
Knowledge is power.
Kwahae_1
Regular Advisor

Re: rp3440 install

TERM is set to xterm.

Kwahae_1
Regular Advisor

Re: rp3440 install

Denis the stty has done the job for the ^?^? question. How about the carriage control phenomenon of the sql '@' function?
Dennis Handly
Acclaimed Contributor

Re: rp3440 install

>How about the carriage control phenomenon of the sql '@' function?

Oops, that should have been without the "-".
That should be the "kill ^u" part.
Use "stty -a" to check.