1

I'm trying to connect to an Oracle XE database using sqlplus.exe with the following command:

CONNECT SYSTEM/password@

Yes that's right, the '@' symbol is the last letter of the password, and needs escaping. :(

Many thanks.

See also Oracle pl-sql escape character (for a ‘&’)

ian_scho
  • 113

2 Answers2

8

Try like this. Connect SYSTEM/\"password@\"@tnsname

5

Try

Connect SYSTEM/"password@"

or if you need to specify a TNSName

Connect SYSTEM/"password@"@tnsname
Falcon Momot
  • 25,584