Oracle 解
1、查證目前系統對于SCOTT用戶的狀態:
select * from dba_users where upper(username)='SCOTT';
ACCOUNT_STATUS:EXPIRED & LOCKED
2、解除對于SCOTT用戶的鎖定:
conn sys/[email protected] as sysdba;
alter user scott account unlock;
select * from dba_users where upper(username)='SCOTT';
ACCOUNT_STATUS:EXPIRED
3、連接SCOTT用戶:
conn scott/[email protected];提示該用戶已經過期,請重新輸入新的密碼:tiger
conn scott/[email protected];此次可以正常連接此用戶。
4、查看SCOTT用戶的狀態:
conn sys/[email protected] as sysdba;
select * from dba_users where upper(username)='SCOTT';
ACCOUNT_STATUS:OPEN
新聞熱點
疑難解答