只需要把密码加上双引号即可,连接时加不加引号都可以。
SQL> create user test identified by "123";
用户已创建
SQL> grant connect to test;
授权成功。
SQL> conn test/123@fs8dev;
已连接。
SQL> conn test/"123"@fs8dev;
grant connect to test; 授权成功。 SQL> conn test/123@fs8dev; 已连接。 SQL>" />