之前安装了oracle,但是第一次安装后,就是不知道怎么输入用户名和密码进入到里面,现在教你如何进入oracle执行相应的命令
解决ora-280000 the account is locked的问题:
开始-->运行-->cmd 进行DOS界面
输入:sqlplus.exe / as sysdba;
SQL>alert user scott account unlock;
User altered.
sql>commit;
Commit complete.
SQL>conn scott/tiger
ERROR:
ORA-28001:the password has expired
Change password for scott
New passoword:
Retype new password
Password changed
Connect.
SQL>commit;
Commit complete.
这个时候使用scott/新的密码进行net manager测试可以成功,这样就解决了ora-280000 the account is locked的问题
那下一个问题就是如果system的密码忘了怎么办?
首先,使用上面提到的方法进入sqlplus
SQL> conn /as sysdba
Connect.
SQL> alter user system identified by manager;
User altered.
SQL>commit;
Commit complete.
SQL>conn system/manager;
Connected.
到此这个问题也解决。
感谢http://tlk20071.iteye.com/blog/1989854 这位网友的内容。。学习数据库就要把一些基本内容都学会,根基不打好怎么进行后面的学习呢。嘿嘿。今天2016年7月3日。。
宁缺毋滥,容不得一点瑕疵。