the account is locked-的解决办法

来源:互联网 发布:mac pp助手 编辑:程序博客网 时间:2024/05/16 06:34


[root@test-db]#  su -oracle

[oracle@test-db]$sqlplus /nolog

SQL>conn /as sysdba
Connected.
SQL>alter  user  username account unlock;

User altered.

SQL> commit;
Commit complete.

 


点击更多详细



Oracle 中给用户加锁与解锁的代码:

  SQL> alter user 用户名 account lock; (加锁)

  SQL> alter user 用户名 account unlock; (解锁)






0 0