文章目錄
- 3.出現錯誤:ORA-01017:invalid username/password;logon denied。
- ORA-01017:invalid username/password;logon denied。
1.出現如下錯誤:ORA-12541:TNS:no listener,如所示:
錯誤原因是我們沒有開啟Listener監聽器服務,解決方案是在服務中開啟這個服務,如所示。
2.出現如下錯誤:ORA-12514:TNS:監聽程式當前無法識別連結描述符中請求的服務。如所示:
解決方案是需要開啟服務OracleServiceORCL,如所示:
3.出現錯誤:ORA-01017:invalid username/password;logon denied。
解決方案:原來設定資料庫串連的時候使用者名稱和密碼都是安裝oracle的時候配置的root和root。但是會出現上面的錯誤,後來使用使用者名稱:scott,密碼:tiger,能夠成功登陸。這個scott賬戶也是在安裝資料庫的時候配置的。
PS:
參考:http://hi.baidu.com/lslyl/blog/item/c3626c031495d7e908fa93b7.html/cmtid/98692dfd328f9a1908244dcf
解決錯誤:ORA-01017: invalid username/password; logon denied
出現:ORA-01017: invalid username/password; logon denied錯誤,而且:在SQL*PLUS中也不能登入:
解決方法:
1.“運行”->輸入CMD->進入根目錄:c:>;
2.輸入: sqlplus /nolog;
3. connect username/password as sysdba,會顯示“已連結”;
4.然後就可以使用其他使用者(非管理員賬戶登入了)。
如所示:
PS:2012-6-18ORA-01017:invalid username/password;logon denied。
今天使用sqlplus scott/tiger@orcl的時候出現上述錯誤,解決方案是使用sys登陸,然後重新設定scott賬戶密碼。
sqlplus sys/root@orcl as sysdba;alter user scott identified by tiger;