Oracle密碼過期處理的實(shí)際應(yīng)用
以下的文章主要是對(duì)Oracle密碼過期處理的實(shí)際應(yīng)用的介紹,我在一個(gè)信譽(yù)度很好的網(wǎng)站找到一個(gè)關(guān)于Oracle密碼過期處理的實(shí)際應(yīng)用的介紹的資料,拿出來供大家分享。希望會(huì)給你帶來一些幫助在此方面。
1、sqlplus 用戶/密碼@數(shù)據(jù)庫服務(wù) as sysdba;
2、
- select username,profile from dba_users;
3、
- select * from dba_profiles s where s.profile='default' and resource_name='password_life_time';
4、
- alter profile default limit password_life_time unlimited;
如果用戶已經(jīng)被鎖定,則執(zhí)行5,否則不用執(zhí)行5;
5、alter user 用戶 identified by 密碼 account unlock;
以上的相關(guān)內(nèi)容就是對(duì)Oracle密碼過期處理的介紹,望你能有所收獲。
【編輯推薦】
- 修改Oracle默認(rèn)用戶密碼有效期時(shí)間的實(shí)操
- Oracle 函數(shù)用法之decode解剖
- Oracle數(shù)據(jù)庫字典的創(chuàng)建與安裝
- Oracle case的實(shí)際用法總結(jié)
- Oracle11生成AWR的實(shí)際相關(guān)報(bào)告簡(jiǎn)介