請老師指點(diǎn) 警告: 您不再連接到 ORACLE。
SQL> alter user scott account unlock;
alter user scott account unlock
? ? ? ? ? ?*
第 1 行出現(xiàn)錯(cuò)誤:
ORA-01918: 用戶 'SCOTT' 不存在
SQL> connect scott/tiger
ERROR:
ORA-01017: invalid username/password; logon denied
警告: 您不再連接到 ORACLE。
2019-03-15
以system賬戶+自己安裝時(shí)設(shè)置的密碼,登錄sql plus,
然后使用命令“alter user scott account unlock;”來解鎖。
解完以后,使用下面的命令來查看:"select username,account_status from dba_users;",
可以看到scott賬戶已經(jīng)解鎖,但是狀態(tài)還是“expired”(密碼過期)的意思。
沒關(guān)系,再輸入這樣的命令“alter user scott identified by tiger;”,就給其賦了一個(gè)新的口令。
退出,以scott/tiger登錄即可。
2018-08-01
密碼錯(cuò)誤
2018-05-26
我也有這個(gè)問題,再次登陸Scott時(shí)就要輸入新口令。
2017-10-07
用的是12c么