Oracle RAC建立表空間和使用者
建立表空間:
create tablespace hr6_Data datafile
'+DATA' size 5000M REUSE
autoextend on next 10M MAXSIZE Unlimited
extent management local autoallocate
permanent
online;
建立臨時表空間:
create temporary tablespace hr6_TempData tempfile
'+DATA' size 200M REUSE
autoextend on next 10M MAXSIZE Unlimited
extent management local uniform size 256K;
檢視錶空間情況:
SELECT t.tablespace_name, round(SUM(bytes / (1024 * 1024)), 0) ts_size
FROM dba_tablespaces t, dba_data_files d
WHERE t.tablespace_name = d.tablespace_name
GROUP BY t.tablespace_name;
建立使用者:
SQL> create user wmwhse6 profile SCEUSER identified by "XXXX"
default tablespace wmwhse6_Data temporary tablespace wmwhse6_TempData;
User created.
SQL> grant connect,resource to wmwhse6;
Grant succeeded.
SQL> grant dba to wmwhse6;
Grant succeeded.
SQL> create role r_wmwhse6 not identified;
Role created.
SQL> grant r_wmwhse6 to wmwhse6;
Grant succeeded.
刪除臨時表空間:
SQL> DROP TABLESPACE HR6_TEMPDATA INCLUDING CONTENTS AND DATAFILES;
Tablespace dropped.
刪除表空間:
SQL> DROP TABLESPACE HR6_DATA INCLUDING CONTENTS AND DATAFILES;
Tablespace dropped.
create tablespace hr6_Data datafile
'+DATA' size 5000M REUSE
autoextend on next 10M MAXSIZE Unlimited
extent management local autoallocate
permanent
online;
建立臨時表空間:
create temporary tablespace hr6_TempData tempfile
'+DATA' size 200M REUSE
autoextend on next 10M MAXSIZE Unlimited
extent management local uniform size 256K;
檢視錶空間情況:
SELECT t.tablespace_name, round(SUM(bytes / (1024 * 1024)), 0) ts_size
FROM dba_tablespaces t, dba_data_files d
WHERE t.tablespace_name = d.tablespace_name
GROUP BY t.tablespace_name;
建立使用者:
SQL> create user wmwhse6 profile SCEUSER identified by "XXXX"
default tablespace wmwhse6_Data temporary tablespace wmwhse6_TempData;
User created.
SQL> grant connect,resource to wmwhse6;
Grant succeeded.
SQL> grant dba to wmwhse6;
Grant succeeded.
SQL> create role r_wmwhse6 not identified;
Role created.
SQL> grant r_wmwhse6 to wmwhse6;
Grant succeeded.
刪除臨時表空間:
SQL> DROP TABLESPACE HR6_TEMPDATA INCLUDING CONTENTS AND DATAFILES;
Tablespace dropped.
刪除表空間:
SQL> DROP TABLESPACE HR6_DATA INCLUDING CONTENTS AND DATAFILES;
Tablespace dropped.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/22996654/viewspace-2149189/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- oracle RAC 建立使用者和表空間Oracle
- oracle 建立表空間和使用者Oracle
- Oracle建立表空間和使用者Oracle
- PLSQL來Oracle建立表空間和建立使用者SQLOracle
- Oracle 建立表空間和使用者指令碼Oracle指令碼
- oracle建立表空間Oracle
- 815-Oracle規範(建立使用者,表空間和表)Oracle
- Oracle建立表空間、建立使用者以及授權Oracle
- Oracle學習系列—Oracle表空間和使用者的手工建立Oracle
- Oracle 19C 建立使用者&表空間Oracle
- oracle建立臨時表空間和資料表空間以及刪除Oracle
- Oracle 基礎溫習1 建立表空間和新使用者Oracle
- linux下oracle11g 建立使用者和表空間LinuxOracle
- 指令碼建立表空間、使用者、表指令碼
- Oracle建立使用者、表空間、匯入匯出、...命令Oracle
- oracle建立使用者,表空間,臨時表空間,分配許可權步驟詳解Oracle
- Oracle新建使用者、表空間、表Oracle
- 單例項和RAC下建立表空間的小區別單例
- Oracle建立表空間、建立資料庫使用者、賦許可權Oracle資料庫
- Oracle OCP(47):表空間的建立Oracle
- Oracle表空間建立引數解析Oracle
- Linux下建立Oracle表空間LinuxOracle
- oracle 建立表空間完整版Oracle
- Oracle RAC+DG 表空間擴容Oracle
- Oracle建立表空間、使用者、分配許可權語句Oracle
- oracle一個建立使用者、建立表空間、授權、建表的完整過程Oracle
- oracle RAC+DG 擴容ASM和表空間(Linux)OracleASMLinux
- Oracle的表空間、使用者和使用者授權Oracle
- Oracle 建立表空間、建立使用者以及授權、檢視許可權Oracle
- ORACLE表空間的建立修改刪除Oracle
- Oracle 表空間 建立引數 說明Oracle
- oracle匯出使用者、表空間和角色的建立語句Oracle
- Oracle中新建表空間、使用者Oracle
- 建立加密表空間加密
- Oracle——01表空間和區Oracle
- 利用toad發現oracle自動為你幹了什麼(表空間建立和使用者建立)Oracle
- oracle建立/刪除表空間、建立/刪除使用者並賦予許可權Oracle
- Oracle修改預設表空間和預設臨時表空間Oracle