察看用戶狀態(是否被鎖)
select * from dba_users where username='user1'
解鎖
ALTER USER user1 ACCOUNT UNLOCK;
修改用戶密碼
alter user user1 identified by newpass;
察看用戶狀態(是否被鎖)
select * from dba_users where username='user1'
解鎖
ALTER USER user1 ACCOUNT UNLOCK;
修改用戶密碼
alter user user1 identified by newpass;
本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。