SQL>conn scott/tiger ERROR: ORA-28002: the password will expire within1days Connected. SQL>conn/assysdba Connected. SQL>alteruserscott identifiedbytiger2;Useraltered. SQL>conn scott/tiger Connected. SQL>
connect/assysdba; To alter the password expiry policy for a certain user profile in Oracle first check wich profile the user is in using: selectprofilefromDBA_USERSwhereusername='<username>'; Then you can change the limit to never expire using: alter profile <profile_name> limit password_life...
登陆oracle 11g 提示ERROR:ORA-28002: the password will expire within 6 days 告警信息: ERROR: ORA-28002: the password will expire within 1 days 原因分析: oracle11g中默认在default概要文件中设置了“PASSWORD_LIFE_TIME=180天”。 解决办法: 1、查看用户的proifle是那个,一般是default: Sql代码 SELECT u...
1.查看用户的profile设置: SELECT username,profile FROM dba_users; 1. 一般用户的profile设置都为DEFAULT。 2.查看系统profiles中PASSWORD_LIFE_TIME设置。 SELECT * FROM dba_profiles s WHERE s.profile='DEFAULT' AND resource_name='PASSWORD_LIFE_TIME'; 1. PROFILE RESOURCE_NAME RESOURCE LIMIT --- ---...
今天启动皕杰报表平台时候,发现tomcat报警告信息ORA-28002: the password will expire within 2 days,这实际上是oracle11g中默认在default概要文件中设置了"PASSWORD_LIFE_TIME=180”所导致,oracle用户的密码必须在180天内更改,或则启动数据库的时候会提示连接失败,oracle默认用户180天内得改一次密码。 1、查看用户的...
今天启动皕杰报表平台时候,发现tomcat报警告信息ORA-28002: the password will expire within 2 days,这实际上是oracle11g中默认在default概要文件中设置了"PASSWORD_LIFE_TIME=180”所导致,oracle用户的密码必须在180天内更改,或则启动数据库的时候会提示连接失败,oracle默认用户180天内得改一次密码。
1 SQLDeveloper连接数据库提示ORA-28002: the password will expire within 5 days 2 登录到sqlplussqlplus / as sysdba 3 查看密码有效期时长SELECT * FROM dba_profiles s WHERE s.profile='DEFAULT' AND resource_name='PASSWORD_LIFE_TIME';4 将密码设置成永不过期SQL> ALTER PROFILE ...
今天启动皕杰报表平台时候,发现tomcat报警告信息ORA-28002: the password will expire within 2 days,这实际上是oracle11g中默认在default概要文件中设置了"PASSWORD_LIFE_TIME=180”所导致,oracle用户的密码必须在180天内更改,或则启动数据库的时候会提示连接失败,oracle默认用户180天内得改一次密码。
ORA-28002: the password will expire within 7 days 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='PA...
Oracle Database 11g ORA-28002: the password will expire within 7 days ...,程序员大本营,技术文章内容聚合第一站。