今天我的同事们反映的问题,测试库的变化password,并改变相关的应用程序中使用password后,其中一个仍然会出现在帐户被锁定,报告ORA-28000: the account is locked的错误. 检查过程: 1. 查看资源限制生效參数 SQL> show parameter resource NAME                                 TYPE        VALUE ------------------------------------ ---…
登录数据库服务器,进入oracle用户下: [root@uumsnormal-oracle admin]# su - oracle [oracle@uumsnormal-oracle ~]$ sqlplus / as sysdba SQL*Plus: Release 10.2.0.1.0 - Production on Mon Jan 4 16:08:27 2016 Copyright (c) 1982, 2005, Oracle.  All rights reserved. Connected…
打开cmd: 执行 sqlplus /nolog 执行conn / as sysdba 执行 ALTER USER  username  ACCOUNT UNLOCK;…
转至:https://blog.csdn.net/qq_38161040/article/details/108274161 用户多次密码输入错误达到一定值就会被锁定. -- 用户锁定方法 alter user 数据库名 account lock; -- 用户解锁方法 alter user 数据库名 account unlock; 当锁定时连接数据库就会报如下错误. An error occurred while establishing the connection: Long Message…
好几个月前安装的Oracle软件忽然想用就忘记了当初设置的口令了,今天查了下怎么找回. 以一个用户jqz/jqz(曾经建立的一个用户.幸亏还记得)的身份登录后: SQL> connect/as sysdba 已连接. SQL> alter user system identified by system; 用户已更改. system的password就是system了. 遇见以下的错误了怎么解决那: ORA-28000: the account is locked 第一步:使用q=PL/SQL…
查系统默认的策略,连续验证10次错误帐户即会被锁 SQL> select resource_name, limit from dba_profiles where profile='DEFAULT'; RESOURCE_NAME LIMIT -------------------------------- ---------------------------------------- COMPOSITE_LIMIT UNLIMITED SESSIONS_PER_USER UNLIMITED C…
连接数据库的时候报: ORA-28000: the account is locked 解决方法: cmd-进入命令行 C:\Users\0>sqlplus /nolog SQL*Plus: Release 11.2.0.1.0 Production on 星期一 10月 31 15:25:10 2016 Copyright (c) 1982, 2010, Oracle. All rights reserved. SQL> connect /as sysdba已连接.SQL> alter…
SQL> select * from v$version where rownum=1; BANNER -------------------------------------------------------------------------------- Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production SQL> !cat /etc/issue  Enterprise Linux Enterp…
原文地址:http://yanwushu.sinaapp.com/ora-28000-the-account-is-locked/ 在oracle中.连续十次尝试登陆不成功.那么此账户将会被锁定(lock).当使用被锁定的账户登录时,系统会报错:ORA-28000:the account is locked.本文描写叙述次错误的解决思路. 1.       使用system或者sys账户登录,注意请以管理员身份登录. Sytem和sys的默认password请在网上查找.本文以sys账户为例.s…
一.触发这个错误的原因及相关因素 是因为oracle11g中默认在default概要文件里设置了"PASSWORD_LIFE_TIME=180天"所导致.在Oracle 11g中是 存在password过期问题的. 二.错误现象: 用户被锁定之后会报ORA-28000的错误,并提示无法登录到数据库 SQL> conn system/oracle ERROR: ORA-28000: the account is locked Warning: You are no longer c…