程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle教程 >> oracle剛開始時Scott賬戶是lock狀態的解決辦法

oracle剛開始時Scott賬戶是lock狀態的解決辦法

編輯:Oracle教程

oracle剛開始時Scott賬戶是lock狀態的解決辦法


1. 首先,需要對Scott賬戶進行解鎖,輸入:alter user scott account unlock;這時,提示scott賬戶過期並且密碼過期(expired);

2. 然後,查看scott賬戶有效期,輸入:select * from dba_profiles s where s.profile = 'default' and resource_name = 'password_life_time';

3. 接著,設置scott賬戶的有效期為無限,輸入:alter profile default limit password_life_time unlimited;

4. 最後,修改scott賬戶的密碼為root,輸入:alter user scott identified by root。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved