建立表空間、回滾段、使用者、表的詳細語法資訊(轉)
1:建立表空間
CREATE TABLESPACE ts_name DATAFILE '/dev/name1' SIZE 2000M, '/dev/name2' SIZE 2000M
DEFAULT STORAGE ( INITIAL 64K NEXT 64K MAXEXTENTS UNLIMITED PCTINCREASE 50 );
2:修改表空間
alter TABLESPACE ts_name add DATAFILE '/dev/name3' SIZE 2000M;
3:回滾段
CREATE ROLLBACK SEGMENT "RS01" TABLESPACE "TS_name"
STORAGE ( INITIAL 8M NEXT 8M MAXEXTENTS UNLIMITED);
4:建立使用者和授權
CREATE USER tempuser IDENTIFIED BY tempuser
DEFAULT TABLESPACE TS_name1 TEMPORARY TABLESPACE TS_name2;
GRANT CONNECT TO tempuser;
GRANT DBA TO tempuser;
GRANT resource TO tempuser;
5:建立表
create table tablename
(
f1 NUMBER(10) not null,
f2 NUMBER(10) null ,
f3 NUMBER(3) defalut 0,
pt number(3) not null ,
constraint PK_t
ablename primary key (f1)
using index
tablespace ts_name
storage
(
initial 1m
next 1m
pctincrease 0
)
)
pctfree 10
tablespace ts_name
storage
(
initial 1m
next 1m
pctincrease 0
)
partition by range(pt)
(partition part000 values less than (1) tablespace ts_name,
partition part001 values less than (2) tablespace ts_name,
)
/
6:建立索引
create index i_tablename1 on tablename(f2)
tablespace ts_name
storage
(
initial 500k
next 500k
pctincrease 0
)
/
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9417382/viewspace-932286/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 臨時表空間和回滾表空間使用率查詢
- 16、表空間 建立表空間
- oracle建立使用者,表空間,臨時表空間,分配許可權步驟詳解Oracle
- oracle 建立表空間和使用者Oracle
- Oracle建立表空間和使用者Oracle
- oracle匯出使用者、表空間和角色的建立語句Oracle
- oracle建立臨時表空間和資料表空間以及刪除Oracle
- Oracle 19C 建立使用者&表空間Oracle
- Oracle 建立表空間和使用者指令碼Oracle指令碼
- 拉鍊表的建立、查詢和回滾
- 12C關於CDB、PDB 回滾undo表空間的總結
- DB2建立資料庫,建立表空間DB2資料庫
- [20140516]取出回滾段資訊.txt
- Oracle新建使用者、表空間、表Oracle
- Oracle OCP(47):表空間的建立Oracle
- Postgresql表空間詳解SQL
- Oracle的表空間quota詳解Oracle
- 2.5.6 建立預設的永久表空間
- 當使用者無限制使用表空間配額且表空間有足夠空間時出現超出表空間的空間限額
- Oracle OCP(46):表空間、段、區、塊Oracle
- db2 建立bufferpool,表空間DB2
- 刪使用者刪表空間的操作還能flashback回來嗎?
- PostgreSQL:表空間-->資料庫-->表SQL資料庫
- [20180423]表空間閃回與snapshot standby
- 2.4.11 Step 10: 建立額外的表空間
- 2.5.3 建立本地管理的SYSTEM表空間
- [轉]ORA-01652 無法通過128 (在表空間 TEMP中)擴充套件temp段套件
- 複製建立已有資料庫使用者、表空間、許可權的指令碼資料庫指令碼
- Oracle 刪除使用者、表空間、資料檔案、使用者下的所有表Oracle
- 2.5.7 建立預設臨時表空間
- Oracle資料泵建立使用者避坑(表空間配額、許可權)Oracle
- 表空間利用率及表空間的補充
- Oracle中新建表空間、使用者Oracle
- 2.5.9 在資料庫建立期間支援大檔案表空間資料庫
- KingbaseES的表空間
- PostgreSQL-表空間、資料庫、使用者之間的關係(七)SQL資料庫
- sybase iq表空間管理常用語句
- [轉帖]達夢資料庫-統計資料表資料量及空間表大小資料庫
- 檢視temp表空間的消耗明細情況