oracle用dba建立使用者並授權

2022-07-03 19:09:15 字數 571 閱讀 5922

參考:

sqlplus中切換使用者,如切換到adm使用者,命令為:conn adm/123456   ,其中adm為使用者名稱,123456   為密碼

1、建立使用者,如建立wstest,密碼為wstest1

create user wstest identified by wstest1;

2、授予登入許可權

grant connect to wstest;

3、授予表或檢視的增刪查改許可權,如授予檢視許可權

grant select on dept_dict to wstest ;

4、由於是把當前使用者的表授予另乙個使用者,所以其他使用者檢視時必須加上表所有者字首,如 select * from a.dept_dict ;,這樣就很不方便,如果想查詢時不加字首,那麼就得建立當前使用者的同義詞,同義詞是對所有使用者生效,也就是相當於別名

create public synonym dept_dict for adm.dept_dict;

這樣查詢時就直接可以使用  select * from  dept_dict ;

5、刪除使用者

drop user wstest;

Oracle建立使用者並授權dba許可權

很多時候我們用擁有dba許可權的使用者 從oracle資料庫匯出資料,那麼再匯入新的資料庫時就還得需要dba許可權的使用者,下面是如何建立乙個新使用者並授予dba許可權命令。1.用有dba許可權的使用者登入 sys使用者 2.建立乙個新使用者 create user abc identified b...

Oracle建立使用者並授權dba許可權

很多時候我們用擁有dba許可權的使用者 從oracle資料庫匯出資料,那麼再匯入新的資料庫時就還得需要dba許可權的使用者,下面是如何建立乙個新使用者並授予dba許可權命令。1.用有dba許可權的使用者登入 sys使用者 2.建立乙個新使用者 create user abc identified b...

Oracle建立新使用者並授予dba許可權

使用命令列建立使用者 create user byq identified by orcl 這裡我建立了乙個名字為byq的使用者,設定登入密碼為orcl grant connect,resource,dba to byq 其中connect resource dba是oracle中的三種許可權,具體...