用户名包含特殊字符,如何登录sqlplus
SQL> show user
USER is "SYS"
SQL> create user a$a identified by hello;
User created.
SQL> grant connect to a$a;
Grant succeeded.
SQL> conn a$a/hello
Connected.
SQL> conn / as sysdba
Connected.
SQL> select * from v$version;
BANNER
--------------------------------------------------------------------------------
Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - Prod
PL/SQL Release 10.2.0.2.0 - Production
CORE 10.2.0.2.0 Production
TNS for 32-bit Windows: Version 10.2.0.2.0 - Production
NLSRTL Version 10.2.0.2.0 - Production
SQL>