oracle建立表空間,用戶

/* 分爲四步 */
/* 第1步:建立臨時表空間  */
create temporary tablespace user_temp 
tempfile
' G:\oracle\product\10.1.0\chenyanxi\user_temp.dbf '
size 50m 
autoextend
on 
next 50m maxsize 20480m 
extent management local; 

/* 第2步:建立數據表空間  */
create tablespace user_data 
logging 
datafile
' G:\oracle\product\10.1.0\chenyanxi\user_data.dbf '
size 50m 
autoextend
on 
next 50m maxsize 20480m 
extent management local; 

/* 第3步:建立用戶並指定表空間  */
create user username identified by password 
default tablespace user_data 
temporary tablespace user_temp; 

/* 第4步:給用戶授予權限  */
grant connect,resource,dba to username;

本文出自 「陳硯羲」 博客,謝絕轉載!oracle

相關文章
相關標籤/搜索