忘記密碼的資料庫使用者處理方法

peng163fj發表於2015-07-15
思路:
1.建立臨時profile,不過期,無同密碼限制,做完再切回來
2.透過value進行密碼複製

--檢視使用者
select * from dba_users 
--建立測試使用者
create user user_forget identified by qCY2kXF2yWpHtftyFX
--新建臨時profile
create profile temp_profile limit
password_reuse_max unlimited
password_reuse_time unlimited;
--修改profile
alter user user_forget  profile temp_profile; 
--檢視密碼(非明文)
select * from sys.user$
--對密碼進行非明文修改
alter user user_forget identified by values'EF27AA183B0713F9';
---切換回原來的組
alter user user_forget profile default;

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/21302630/viewspace-1734391/,如需轉載,請註明出處,否則將追究法律責任。

相關文章