1樓:匿名使用者
//建立臨時表空間
create temporary tablespace test_temp
tempfile 'e:\oracle\product\10.2.0\oradata\testserver\test_temp01.dbf'
size 32m
autoextend on
next 32m maxsize 2048m
extent management local;
//建立資料表空間
create tablespace test_data
logging
datafile 'e:\oracle\product\10.2.0\oradata\testserver\test_data01.dbf'
size 32m
autoextend on
next 32m maxsize 2048m
extent management local;
//建立使用者並指定表空間
create user username identified by password
default tablespace test_data
temporary tablespace test_temp;
//給使用者授予許可權
grant connect,resource to username;
//以後以該使用者登入,建立的任何資料庫物件都屬於test_temp 和test_data表空間,這就不用在每建立乙個物件給其指定表空間了。
2樓:匿名使用者
create tablespace tablespace_name datafile '路勁\tablespace_name.dbf' size 128m autoextend on next 64m permanent online;
如何獲取oracle的表空間建立的語句
3樓:魯步天慧
可以使用toad,這個工具作為dba來說是必備的,可以方便你很多的管理工作。
如圖所示就可以找到每乙個表空間的指令碼,還有更多的資訊你可以自己去發掘
4樓:匿名使用者
無法獲取到建立語句的,因為表空間建立之後可能更改過的,不過可以檢視所有的表空間屬性:
sql:select * from dba_tablespaces;
解釋:以上必須是sysdba許可權進行檢視,之後根據實際需要新增相應的where語句即可。
擴充套件:建立表空間:
create tablespace tbs_etl_data logging datafile 'g:\oracle\product\10.2.
0\oradata\tbs_etl_data01.dbf' size 521m autoextend off;
建立使用者:
create user vpetl identified by vpetl default tablespace tbs_etl_data;
賦許可權:
grant connect,resource,alter system,debug connect session,select any table,delete any table,drop any table,alter any table to vpetl;
建立表:
create table tablename(id varchar2(20));
備註:建立表空間的file路徑根據實際需要修改為linux等系統的路徑即可。
5樓:匿名使用者
沒有接觸過啊。。。。菜鳥當中
6樓:手機使用者
alter tablespace users
add datafile 'd:\oracle\users01.dbf' size 500m autoextend off
檢視資料庫建立了哪些表空間oracle
檢視oracle中表空間需要用具有dba許可權的使用者使用以下語句 select distinct tablespace name from dba data files 查詢結果 另外,可通過其他方法檢視一下oracle中表空間的使用率,語句如下 select total.tablespace n...
oracle如何查詢表空間,Oracle如何查詢表空間?
系統資料字典 dba tablespaces 中記錄了關於表空間的詳細資訊 select from sys.dba tablespaces 資料字典 dba tablespaces 中的字段和含義 tablespace name tablespace name block size tablespa...
如何用SQL語句建立表
create table userinfo id int primary key not null identity 1,1 name char 20 unique,age int check age 10 char 2 建議乙個名叫userinfo的表,欄位為id 自動 1,主鍵,不為空!name...