首页 >数据库 >mysql教程 >Oracle解除对SCOTT/TIGER用户的锁定

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

WBOY
WBOY原创
2016-06-07 14:54:171224浏览

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