127. 如何解锁temcenter 中 oracle中infodba用户
如何解锁temcenter 中 oracle中infodba用户问题:
Error : ORA-28000: the account is locked.
分析
连接数据库出问题
数据库账号被锁
方案
在命令窗口中输入
sqlplus "/ as sysdba"
使用SYSDBA登录后,需要解锁infodba账号。
SQL> alter user infodba account unlock;
SQL> grant connect, resource to infodba;
SQL>alter user infodba identified by password;
SQL>user alter;
SQL>Commit;
SQL>Commit complete;
password 的值需要根据实际情况设置
Infodba账号能够连接到数据库。
页:
[1]