本篇内容主要讲解“Oracle用户密码重置的步骤是什么”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“Oracle用户密码重置的步骤是什么”吧!
公司专注于为企业提供网站设计、成都网站建设、微信公众号开发、商城网站建设,微信小程序开发,软件按需制作网站等一站式互联网企业服务。凭借多年丰富的经验,我们会仔细了解各客户的需求而做出多方面的分析、设计、整合,为客户设计出具风格及创意性的商业解决方案,创新互联更提供一系列网站制作和网站推广的服务。
客户反馈Oracle数据库用户密ma会过期,为了避免过期导致应用连接出错,可提前cha找即将过期的用户,重置密ma。步骤如下:
1、查看未来20天内是否会有密ma过期
set lines 200 col username for a20 select USERNAME,to_char(EXPIRY_DATE,'yyyy-mm-dd hh34:mi:ss') expire_time,profile,account_status from dba_users a where EXPIRY_DATEsysdate and account_status='OPEN';
2、查看过期用户
set lines 200 col profile for a20 col username for a20 select USERNAME,to_char(EXPIRY_DATE,'yyyy-mm-dd hh34:mi:ss'),profile,account_status from dba_users where account_status='EXPIRED' or account_status='EXPIRED(GRACE)' order by EXPIRY_DATE ;
3、查看open状态用户的过期时间
set lines 200 col profile for a20 col username for a20 select USERNAME,to_char(EXPIRY_DATE,'yyyy-mm-dd hh34:mi:ss'),profile,account_status from dba_users where account_status='OPEN' order by EXPIRY_DATE ;
4、查看所有用户状态
set lines 200 col profile for a20 col username for a20 select USERNAME,to_char(EXPIRY_DATE,'yyyy-mm-dd hh34:mi:ss'),profile,account_status from dba_users order by EXPIRY_DATE ;
5、进行密ma重置
修改profile设置
alter profile PROFILE_NAME limit password_reuse_time unlimited password_reuse_max unlimited;
生成重置命令
select 'alter user '||du.username||' identified by values '||''''||u.password||''''||';' from dba_users du,user$ u where du.username=u.name and u.type#=1 and du.profile in('PROFILE_NAME') and du.username<>'XS$NULL' and du.expiry_date-sysdate<=30;
修改profile设置
alter profile PROFILE_PRODUCT limit password_reuse_time 60 password_reuse_max 5;
到此,相信大家对“Oracle用户密码重置的步骤是什么”有了更深的了解,不妨来实际操作一番吧!这里是创新互联网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!