免责声明:     本文转自网络文章,转载此文章仅为个人收藏,分享知识,如有侵权,请联系博主进行删除.     原文作者:xwdreamer      原文地址: 错误:ORA-28002: the password will expire within 7 days 解决方法    今天在使用sqlplus时出现 =============================================== ERROR: ORA-28002: the password will expire…
今天在使用sqlplus时出现 =============================================== ERROR:ORA-28002: the password will expire within 7 days =============================================== 提示密码快过期了,由于需要连接的测试数据库,所以决定将密码设置成永不过期. 1.查看用户的profile设置: SELECT username,profile FR…
ERROR:ORA-28002: the password will expire within 7 days 错误是提示password快过期了,有两个办法解决问题. 一. 改动已经报错用户的password 已经被报告了password快要过期的账户必须再改一次password(须要DBA权限) 以system用户为例 sqlplus / as sysdba alter user system identified by root; 再连接数据再也不会出现password过期的事情了. 假设…
今天在使用sqlplus时出现 =============================================== ERROR:ORA-28002: the password will expire within 7 days OR ORA- 65162 The password has expired =============================================== 提示密码快过期了,由于需要连接的测试数据库,所以决定将密码设置成永不过期. 1.查看用…
SQL> conn scott/tiger ERROR: ORA: the password will expire within days Connected. SQL> conn /as sysdba Connected. SQL> alter user scott identified by tiger ; User altered. SQL> conn scott/tiger Connected. SQL>…
1.查看用户的proifle SELECT username,PROFILE FROM dba_users; 2.查看指定概要文件(如default)的密码有效期设置:SELECT * FROM dba_profiles s WHERE s.profile='DEFAULT' AND resource_name='PASSWORD_LIFE_TIME'; 3.将密码有效期由默认的180天修改成“无限制”:ALTER PROFILE DEFAULT LIMIT PASSWORD_LIFE_TIME…
今天在使用sqlplus时出现,或使用数据库的时候出现类似问题 =============================================== ERROR:ORA-28002: the password will expire within 7 days =============================================== 提示密码快过期了,由于需要连接的测试数据库,所以决定将密码设置成永不过期. 1.查看用户的profile设置: SELECT use…
启动 Oracle SQL Developer的时候,点击用户system进行连接并输入密码后(下图左),会出现(下图右)提示信息: 即:[ora-28002:the password will expire within 7 days]提示密码快过期了   以下是解决办法: 1.查看用户的profile设置: select username,profile from dba_users; 在 Oracle 中,每个用户都会对应一种特定类型的 profile 概要设置,其基本描述了这个用户的一些…
错误“ORA-28002 The password will expire within 7 days.  Cannot logon to the database“当在进程调度器上运行AE程序可能遇到这个错误,很多时候这个错误并不仅仅在进程调度器中出现,还有可能会在使用plsql developer或sqlplus访问数据库时候. 遇到这样的错误是因为ConnectID账户或SYSADM账户在DBA_USERS表中已经过期,在11g以前版本这个问题从没出现过,因为账户设置的永不过期,在11g以…