启动 Oracle SQL Developer的时候,点击用户system进行连接并输入密码后(下图左),会出现(下图右)提示信息: 即:[ora-28002:the password will expire within 7 days]提示密码快过期了   以下是解决办法: 1.查看用户的profile设置: select username,profile from dba_users; 在 Oracle 中,每个用户都会对应一种特定类型的 profile 概要设置,其基本描述了这个用户的一些…
免责声明:     本文转自网络文章,转载此文章仅为个人收藏,分享知识,如有侵权,请联系博主进行删除.     原文作者:xwdreamer      原文地址: 错误:ORA-28002: the password will expire within 7 days 解决方法    今天在使用sqlplus时出现 =============================================== ERROR: ORA-28002: the password will expire…
Oracle11g R2数据库提示ORA-28002: the password will expire within 5 days,是说密码过期,将Oracle密码设置成永不过期就可以了,不过并不推荐这样做,最好是将日期密码有效期设置长一些.   工具/原料 Oracle11g R2 sqlplus 方法/步骤   SQLDeveloper连接数据库提示 ORA-28002: the password will expire within 5 days   登录到sqlplus sqlplus…
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>…
今天在使用sqlplus时出现 =============================================== ERROR:ORA-28002: the password will expire within 7 days =============================================== 提示密码快过期了,由于需要连接的测试数据库,所以决定将密码设置成永不过期. 1.查看用户的profile设置: SELECT username,profile FR…
错误“ORA-28002 The password will expire within 7 days.  Cannot logon to the database“当在进程调度器上运行AE程序可能遇到这个错误,很多时候这个错误并不仅仅在进程调度器中出现,还有可能会在使用plsql developer或sqlplus访问数据库时候. 遇到这样的错误是因为ConnectID账户或SYSADM账户在DBA_USERS表中已经过期,在11g以前版本这个问题从没出现过,因为账户设置的永不过期,在11g以…
1.问题描述: 今天登陆pl/sql工具时,提示 ORA-28002 the password will expire within 7 days 2.问题原因: oracle11g中默认在default概要文件中设置了"PASSWORD_LIFE_TIME=180”所导致,oracle用户的密码必须在180天内更改,否则启动数据库的时候会提示连接失败. 3.解决方法 1)查看用户的profile设置 select username,profile from dba_users; 注:一般用户的…
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 =============================================== 提示密码快过期了,由于需要连接的测试数据库,所以决定将密码设置成永不过期. 1.查看用户的profile设置: SELECT use…
今天在使用sqlplus时出现 =============================================== ERROR:ORA-28002: the password will expire within 7 days OR ORA- 65162 The password has expired =============================================== 提示密码快过期了,由于需要连接的测试数据库,所以决定将密码设置成永不过期. 1.查看用…