Oracle 用户密码中包括了“@”字符串的错误提示解决方法

Oracle 用户密码设置了带有“@”符号,正常登陆总是无法登陆,提示无法解析的连接字符串错误

解决办法:
1:修改密码:修改密码使密码中不包括@符号;
2:增加转义即可,在密码前后增加 \"

示例如下:

CMD中输入:
C:\Users\Administrator>  exp system/\"ABC@X1\"@localhost:1521/orcl

C:\Users\Administrator>  sqlplus system/\"ABC@X1\"@localhost:1521/orcl

SQLPLUS中输入:
SQL> conn system/"D1D@BCaB"@localhost:1521/orcl

Shell中输入:
[oracle@rac1 ~]$ exp  think/\"Think2022@111\"@10.10.10.10:1521/racdb file=/tmp/1.dmp

posted @ 2022-07-01 11:04  花之旭  阅读(1347)  评论(0编辑  收藏  举报