資料庫使用者登入、切換以及解鎖

773281375發表於2014-03-06
一、查詢資料庫預設SCOTT使用者的狀態
select username,account_status from dba_users where username='SCOTT';
dba_users:資料庫字典表,儲存著oracle資料庫的所有使用者資訊

二、表結構查詢
desc dba_users;

三、對SCOTT使用者進行解鎖
解鎖語法:
alter user 資料庫使用者名稱 account unlock;
1、對SCOTT使用者解鎖
alter user scott account unlock;
2、驗證SCOTT使用者是否已經解鎖
select username,account_status from dba_users where username='SCOTT';

四、檢視當前資料庫使用者
show user;

五、資料庫中切換使用者
語法:
conn 使用者名稱/密碼
例如:conn scott/tiger

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

相關文章