第一步:建立臨時表空間
createtablespace user_temp
logging
datafile ''
size 200m
autoextend
onnext
50m maxsize unlimited
extent management local;
注:1、user_temp 臨時表空間名稱
2、datafile路徑為oracle資料檔案的儲存路徑
3、size 表空間初始大小
4、當表空間儲存已滿,擴增的大小為50m
5、maxsize unlimited 表空間可無限擴容,也可以設定最大值,如:maxsize 20480m
第二步:建立資料表空間
createtablespace tbs_user
logging
datafile ''
size 1024m
autoextend
onnext
100m maxsize unlimited
extent management local;
第三步:建立使用者
createuser test identified by
test
default
tablespace tbs_user
temporary tablespace user_temp;
第四步:分配許可權
grant connect,resource,dba to test;
Oracle11g建立表空間語句
在plsql工具中執行以下語句,可建立oracle表空間。分為四步 第1步 建立臨時表空間 create temporary tablespace yuhang temp tempfile d oracledata yuhang temp.dbf size 50m autoextend on nex...
Oracle11g建立表空間語句
在plsql工具中執行以下語句,可建立oracle表空間。分為四步 第1步 建立臨時表空間 create temporary tablespace yuhang temp tempfile d oracledata yuhang temp.dbf size 50m autoextend on nex...
Oracle11g建立表空間語句
在plsql工具中執行以下語句,可建立oracle表空間。分為四步 第1步 建立臨時表空間 create temporary tablespace yuhang temp tempfile d oracledata yuhang temp.dbf size 50m autoextend on nex...