标签:style blog color 使用 strong 数据 div sp log
前言:Oracle数据库自带了许多用户,例如system、sys和scott等,但是默认情况下,Oracle只对其中5个用户进行了解锁,这5个用户分别是:SYS、SYSTEM、DBSNMP、SYSMAN和MGMT_VIEW,而其他用户则处于锁定状态。为了后面Oracle的学习,有必要了解Oracle用户的锁定状态以及如何进行用户解锁。
下面是具体的过程:
1、默认的scott用户是被锁定的,先解锁就能登陆上了。 使用下面的语句解锁scott:
alter user scott account unlock;
解锁之后可能会要求你该密码:
alter user scott identified by tiger;
再登陆:
sqlplus scott/tiger
就能登陆了
2、Oracle锁定和解锁用户的命令
SQL> conn /as sysdba
已连接。
//scott 用户在没有设定tieger默认密码时,登陆不上
锁定用户的方法:
SQL> alter user test account lock;
用户已更改。
-------test用户登陆数据库,失败了。
C:\>sqlplus test/test ERROR: ORA-28000: the account is locked
Oracle用户解锁的方法:
SQL> conn /as sysdba SQL> alter user test account unlock;
用户已更改。这样就完成了Oracle的用户解锁操作。
标签:style blog color 使用 strong 数据 div sp log
原文地址:http://www.cnblogs.com/Lightning-Kid/p/3953836.html