PLSQL來Oracle建立表空間和建立使用者
//建立臨時表空間
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表空間,這就不用在每建立一個物件給其指定表空間了。
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表空間,這就不用在每建立一個物件給其指定表空間了。
相關文章
- oracle 建立表空間和使用者Oracle
- Oracle建立表空間和使用者Oracle
- Oracle 建立表空間和使用者指令碼Oracle指令碼
- Oracle 19C 建立使用者&表空間Oracle
- oracle建立臨時表空間和資料表空間以及刪除Oracle
- Oracle OCP(47):表空間的建立Oracle
- 16、表空間 建立表空間
- oracle建立使用者,表空間,臨時表空間,分配許可權步驟詳解Oracle
- oracle匯出使用者、表空間和角色的建立語句Oracle
- Oracle資料泵建立使用者避坑(表空間配額、許可權)Oracle
- DB2建立資料庫,建立表空間DB2資料庫
- Oracle新建使用者、表空間、表Oracle
- db2 建立bufferpool,表空間DB2
- 2.5.6 建立預設的永久表空間
- 2.5.7 建立預設臨時表空間
- Oracle中新建表空間、使用者Oracle
- Oracle建立使用者和授權Oracle
- 2.4.11 Step 10: 建立額外的表空間
- 2.5.3 建立本地管理的SYSTEM表空間
- LINUX 建立swap空間Linux
- Oracle表空間Oracle
- oracle 表空間Oracle
- Oracle建立使用者、角色、授權、建表Oracle
- 2.5.5 使用自動Undo管理: 建立 Undo 表空間
- 用PLSQL建立新使用者及匯入dmpSQL
- oracle新建使用者,表空間,並授權Oracle
- Oracle新建表空間、使用者及授權Oracle
- Oracle OCP(20):建立表Oracle
- 增加oracle表空間Oracle
- oracle temp 表空間Oracle
- 達夢(DM)資料庫的表空間建立和遷移維護資料庫
- oracle 表移動表空間Oracle
- Oracle表移動表空間Oracle
- 複製建立已有資料庫使用者、表空間、許可權的指令碼資料庫指令碼
- 2.5.9 在資料庫建立期間支援大檔案表空間資料庫
- Oracle大表快速建立索引Oracle索引
- oracle表空間的整理Oracle
- Oracle 批量建表空間Oracle
- Oracle清理SYSAUX表空間OracleUX