oracle 11g 强制修改密码 ORA-28001 的 处理方法

收到一个监控用户没法链接数据的告警, Oracle提示错误消息ORA-28001: the password has expired, 上去查看用户状态居然是expired,获取用户基本信息脚本以下:
    connect / as sysdba;
    col username for a16
    col password for a18
    col user_id for 999999
    col account_status heading 'Account|Status' for a20
    col default_tablespace heading 'Default|Tablespace' for a25
    col temporary_tablespace heading 'Temporary|Tablespace' for a12
    set lines 125
    set pages 100
    select username,user_id,password,account_status,default_tablespace,temporary_tablespace,to_char(created,'yyyy-mm-dd hh24:mi:ss') created
    from dba_users
    order by username;
    这是Oracle11G的一个新特性, Oracle11G建立用户时缺省密码过时限制是180天,
若是超过180天用户密码未作修改则该用户没法登陆。
    查看PROFILE设置
   select * from dba_profiles where profile='DEFAULT' and resource_name='PASSWORD_LIFE_TIME';

    DEFAULT   PASSWORD_LIFE_TIME PASSWORD 180   数据库

        处理逻辑,将用户密码修改并判断是否须要这个策略spa

         ALTER USER 用户名 IDENTIFIED BY 密码 ;
        语句进行修改密码,密码修改后该用户可正常链接数据库。
    若是须要修改策略

    ALTER PROFILE DEFAULT LIMIT PASSWORD_LIFE_TIME UNLIMITED.net

    语句将口令有效期默认值180天修改为“无限制”。orm

相关文章
相关标签/搜索