1樓:匿名使用者
dba 使用者授權 grant create database to new_user
oracle 建立使用者並且賦給,剛建立的使用者管理員許可權。
2樓:匿名使用者
如果不用指定表空間等可以直接採用預設的user表空間等
create username identified by passwd;
grant dba to username;
oracle給使用者賦予建立資料庫的許可權除了dba還有別的嗎下面的有問題 20
3樓:匿名使用者
一般建立完使用者後,至少要進行以下授權:
grant session,resources to leiyanfo;
如果需要其他許可權,再分別授予。
4樓:厙曼冬
grant create session to leiyanfo;
grant connect to leiyanfo;
grant dba to leiyanfo;
先給dba許可權建立完成資料庫後,在收回dba
5樓:牛角山麥子
我覺得你可能跟其他資料庫的概念弄混了。oracle沒有「create database許可權」這個概念。
非叢集情況,資料庫(或者說例項)只有一個,當你用dbca建庫時(或者安裝軟體時選擇了建庫)已經建立好了。你用conn / as sysdba登入時,已經登入上了這個資料庫。oracle 資料庫邏輯的層級是
例項(instance)==> 多個使用者 ==> 每個使用者下多個表(或其它物件) ===> 每個表多行資料
等等。不知道你通過「grant create database」是想實現什麼功能呢?我可以幫你看一下該如何實現
怎麼給oracle資料庫建立使用者,並賦許可權
6樓:匿名使用者
create user testu identifyed by passu; -- 使用者名稱testu , 密碼 passu
grant connect,resource to testu; -- 授予connect和resource許可權
7樓:邊淑蘭查羅
開始,執行輸入cmd或是wind+r輸入cmd使用dba登入。
先建立一個使用者:使用命令:create
user
使用者名稱identified
by密碼
給該使用者解鎖:使用命令:使用者解鎖
alter
user
使用者名稱account
unlock(不解鎖無法登陸)
給該使用者授權:grant
create
session
to使用者名稱。這裡是給的登入許可權。如果想把dba的許可權授權給該使用者。
oracle 如何建立只有查詢許可權的使用者
8樓:
建立使用者名稱、授予查詢任何表、授予查詢任何字典。
具體操作如下:
create user username identified by password;
grant select any table to username; --授予查詢任何表
grant select any dictionary to username;--授予查詢任何字典
執行上面三步就行了,那麼這個使用者就只有查詢許可權,其他的許可權都沒有。
9樓:匿名使用者
1、create user username identified by password;
2、grant select any table to username; --授予查詢任何表
3、grant select any dictionary to username;--授予 查詢任何字典
執行上面三步就行了,那麼這個使用者就只有查詢許可權,其他的許可權都沒有!!
10樓:匿名使用者
select * from dba_users可以查到所有的使用者,在裡面只要加上你想要的條件就行了
oracle如何新增使用者
答案整理如下,每條命令後都有註釋 刪除tantan 使用者 drop user tantan cascade 建立tantan 使用者 create user tantan identified by oracle default tablespace tantantemporary tablesp...
oracle如何建立資料庫???
操作 視窗,單擊建立資料庫。步驟 3.從步驟 2 共 8 個步驟 資料庫標識 視窗,在全域性資料庫名稱欄位輸入 tivoli privacy manager 資料庫的名稱然後單擊下一步。步驟 5.從步驟 4 共 7 個步驟 資料庫連線選項 視窗,選擇在預設情況下您需要您的資料庫工作的模式。單擊未用模...
ORACLE匯入改變使用者及表空間
先建立表空間 b create bigfile tablespace bdatafile b.dat size 20m autoextend on 然後建立 使用者 b create user b identified by b default tablespace b temporary tabl...