`

密码过期:ORA-28001: the password has expired

阅读更多
1. 密码过期:ORA-28001: the password has expired

Oracle提示错误消息ORA-28001: the password has expired,是由于Oracle 11G的新特性所致。

Oracle 11G创建用户时缺省密码过期限制是180天,如果超过180天用户密码未做修改则该用户无法登录。


1. 登陆oracle(管理员)
普通用户:sqlplus username/password;
管理员:sqlplus username/password as sysdba;

2. 查询密码的有效期设置,LIMIT字段是密码有效天数。
SQL> select * from dba_profiles where profile='default' and resource_name='password_life_time';

3. 修改用户密码
SQL> alter user username identified by newpassword;

4. 去除180天的密码生存周期的限制可通过如下SQL语句将其关闭
SQL> alter profile default limit password_life_time unlimited;

出于数据库安全性考虑,不建议将password_life_time值设置成unlimited,建议大家定期修改数据库用户口令。
分享到:
评论

相关推荐

    ORA-28001 the password has expired密码过期.docx

    在Oracle数据库管理中,"ORA-28001 the password has expired" 是一个常见的错误,它表明数据库用户的密码已经超过了预设的有效期限,导致用户无法正常登录。这个错误主要出现在Oracle 11G及更高版本中,因为这些...

    guokai1229#gk-knowledge#数据库密码过期处理1

    数据库密码过期处理在一段时间以后,oracle用户登陆会提示密码不可用ORA-28001: the password has expired密码无效oracle

    oracle密码过期解决方法

    ORA-28001: the password has expired ORA-28001 是 Oracle 错误消息,表示密码已经过期。这个错误发生的原因是 Oracle 11G 的默认功能,旨在提高数据库的安全性。这个默认功能使得用户密码在创建时默认设置了有效...

    Oracle the account is locked解决办法

    ORA-28001: the password has expired ``` 遇到此错误时,可以使用以下命令更改密码: ```sql CHANGE PASSWORD FOR scott NEW PASSWORD: [new_password] RETYPE NEW PASSWORD: [new_password] ``` 4. **...

    oracle数据库密码过期处理方法.docx

    此时,用户在尝试登录时会收到“ORA-28000: the account is locked”或“ORA-28001: the password has expired”的错误信息,无法进行任何操作。 二、处理密码过期的方法 1. **紧急模式登录(SQL*Plus as SYSDBA)*...

    oracle密码过期的处理

    一旦密码过期,用户尝试登录时会收到错误提示,例如`ORA-28002: the password will expire within 7 days`或`ORA-28003: the password has expired`等。 **解决方法**: 1. **临时登录**:使用具有SYSDBA权限的...

    Oracle 11G密码180天过期后的修改方法

    这表示如果一个用户的密码在创建后180天内没有更改,系统将自动阻止该用户登录,出现“ORA-28001: the password has expired”的错误。这种情况下,业务流程可能因无法正常连接数据库而受到影响,导致服务中断。 要...

    oracle密码到期解决方案

    在使用Tecnomatix软件时,可能会遇到提示ORA-28001: the password has expired的错误,导致无法正常打开软件。这一问题通常源于Oracle数据库对于用户密码的有效期管理机制。在Oracle 11g版本中,默认情况下,系统在...

    Oracle学习笔记

    - **密码过期**:如果出现 “the password has expired” 的提示,则需要更改密码。可以通过以下步骤完成: - 仍然需要以DBA权限登录数据库。 - 执行 `ALTER USER scott IDENTIFIED BY new_password` 来更新密码。...

Global site tag (gtag.js) - Google Analytics