1. ORA-28002 错误的含义 ORA-28002 错误表示用户的密码即将过期或已经过期,导致用户无法成功登录到 Oracle 数据库。这个错误通常是为了增强数据库的安全性而设置的,要求用户定期更改密码。 2. ORA-28002 错误可能的原因 密码过期策略:Oracle 数据库默认设置了密码过期策略,比如 PASSWORD_LIFE_TIME,它指定了密码的有...
Oracle错误代码:ORA-28002导致密码消失 Oracle错误代码:ORA-28002。 受影响版本:Oracle11g以上版本。 导致密码消失的原因:Oracle 11g中默认的DEFAULT概要文件中口令有效期PASSWORD_LIFE_TIME默认值为180天。 当以客户端登陆Oracle提示ORA-28002,则基本可以确定登陆帐号已过有效期,使用具有DBA权限的帐号重置该帐号密码即可。
1、查询用户的profile,一般是DEFAULT select username,profile from dba_users; 2、以DEFAULT作为dba_profiles表profile字段的参数,查询密码生效天数 select * from dba_profiles where profile = 'DEFAULT' and resource_name = 'PASSWORD_LIFE_TIME'; 3、修改密码永久有效 alter profile default limit PASSWORD_LIFE_...
1、查看用户profile设置 su - oracle sqlplus / as sysdba SQL> select username,profile from dba_users; 通常用户都是DEFAULT 2、查看系统profiles中密码生命周期设置 SQL> SELECT * FROM dba_profiles s WHERE s.profile='DEFAULT' AND resource_name='PASSWORD_LIFE_TIME'; 默认PASSWORD_LIFE_TIME是180天(即...
错误:ORA-28002: the password will expire within7 days 解决方法,错误:ORA-28002:thepasswordwillexpirewithin7days解决方法原因:提示密码过期的原因,是有链接的数据库密码没设置为永久性,设置的是固定...
ORA-28002 oracle密码过期处理 问题:密码未做修改,提示无法登陆,过期! ERROR:ORA-28002: the password will expire within 7 days 解决方案: 查询密码策略:DEFAULT 在管理员用户中查询dba_users数据字典 desc dba_users; 1. select username,profile from dba_users;...
今天启动皕杰报表平台时候,发现tomcat报警告信息ORA-28002: the password will expire within 2 days,这实际上是oracle11g中默认在default概要文件中设置了"PASSWORD_LIFE_TIME=180”所导致,oracle用户的密码必须在180天内更改,或则启动数据库的时候会提示连接失败,oracle默认用户180天内得改一次密码。 1、查看用户的...
1、现状 SQL> conn scott/tiger ERROR: ORA-28002: the password will expire within 7 days 2、处理方法 查看用户的 profile(一般是 default) select username,profile from dba_users; 查看default 概要文件设置的密码有效期(默认 180 天) select * from dba_profiles where resource_name ='PASSWORD_LIFE_TIM...
1、报错 SQL> conn scott/tiger ERROR: ORA-28002: the password will expire within 7 days 2、处理方法 查看用户的 profile(一般是 default)SQL> select username,profile from dba_users;查看 default 概要文件设置的密码有效期(默认 180 天)SQL> select * from dba_profiles where resource_name ='PASSWORD...
Oracle密码过期 ORA-28002:口令将过期 解决方法 登录Pl/sql或导出数据时,得到的提示信息: UDE-28002: 操作产生了 Oracle 错误 28002 ORA-28002: the password will expire within 7 days 原因:oracle11g中默认在default概要文件中设置了"PASSWORD_LIFE_TIME=180”所导致,oracle用户的密码必须在180天内更改,否则启动...