>데이터 베이스 >MySQL 튜토리얼 >Oracle解除对SCOTT/TIGER用户的锁定

Oracle解除对SCOTT/TIGER用户的锁定

WBOY
WBOY원래의
2016-06-07 14:54:171234검색

Oracle 解除对SCOTT/TIGER用户的锁定 1、查证目前系统对于SCOTT用户的状态: select * from dba_users where upper(username)='SCOTT'; ACCOUNT_STATUS:EXPIRED LOCKED 2、解除对于SCOTT用户的锁定: conn sys/bitservice@ttonline as sysdba; alter user

  Oracle 解除对SCOTT/TIGER用户的锁定

  1、查证目前系统对于SCOTT用户的状态:

  select * from dba_users where upper(username)='SCOTT';

  ACCOUNT_STATUS:EXPIRED & LOCKED

  2、解除对于SCOTT用户的锁定:

  conn sys/bitservice@ttonline as sysdba;

  alter user scott account unlock;

  select * from dba_users where upper(username)='SCOTT';

  ACCOUNT_STATUS:EXPIRED

  3、连接SCOTT用户:

  conn scott/tiger@ttonline;提示该用户已经过期,请重新输入新的密码:tiger

  conn scott/tiger@ttonline;此次可以正常连接此用户。

  4、查看SCOTT用户的状态:

  conn sys/bitservice@ttonline as sysdba;

  select * from dba_users where upper(username)='SCOTT';

  ACCOUNT_STATUS:OPEN

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.