一 用户访问问题

1.登录用户账号时用户锁定

SQL> connect ORACLE_OCM/oracle
ERROR:
ORA-28000: 帐户已被锁定

查看用户资源配置:

select a.username, b.profile, b.resource_name, b.limit
from dba_users a, dba_profiles b
where a.username = 'ORACLE_OCM' and a.profile = b.profile;

ORACLE用户基础汇总_ide

可以看出用户登录失败次数最多10次后就锁定了。

解锁用户:

SQL> connect sys/oracle as sysdba
已连接。
SQL> alter user ORACLE_OCM account unlock;

2.修改system和sys用户密码

SQL> alter user sys identified by oracle;
用户已更改。
SQL> alter user system identified by oracle;
用户已更改。