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
新闻热点
疑难解答