oracle創建用戶及授權

--創建表空間
create tablespace yyf
datafile 'E:\soft\oradata\orcl\yyf.dbf'
size 50m
 
--創建用戶
create user onlineexam identified by onlineexam
default tablespace yyf
Temporary TABLESPACE Temp
profile default
account unlock;
 
--授權
grant resource,connect,dba to onlineexam
 
 
 
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章