基础操作
1.连接数据库
C:\Documents and Settings\Administrator>sqlplus /nolog
SQL> conn system/p@ssw0rd
这里没有@数据库别名 是因为本机只安装了一个库,而且就是默认的库。
但是因为这里的密码有特殊字符@,所以无法登陆。需要进行转义。
SQL> conn system/"p@ssw0rd"
这样便可连接!
2.用户解锁
alter user scott account unlock