Username contains @

marcuoli

Member
Hello guys,

How to login to the database thru PL/SQL Developer using username like "username@blahblah.com"?

Thanks in advance,

Marcus
 
You can try using double quotes around the username.
sqlplus "username@email.com"/"P@55w0rd"@yourdatabase
 
Thanks but I tried that... it doesn't work :(.

PL/SQL Developer tries to connect to "@email.com" instead of "@yourdatabase".
 
This seems to work:
username: "p@trick"
password: "b@rel"
database: yourdatabase
connect as: Normal

I am using PL/SQL Developer 15.
 
I'm also using version 15.

The username is a LDAP user so it would be something like "myusername@myemail.com/mypass@mydatabase".

Is there a way to debug that so I can put some more information here?

Thanks²

Marcus
 
Back
Top