表空間重新命名相關命令與測試

eric_zhyd發表於2013-04-01
[10.2.0.1]版本以後才具備快速重新命名錶空間功能!

對普通使用者表空間進行重新命名[成功]
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
-- 建立測試表空間
create tablespace tbs_zhong datafile 'E:\OraData\Zhong\tbs_zhong01.dbf' size 10m;
 
-- 檢視錶空間與資料檔案的對應關係
col tablespace_name for a20
col file_name for a51
select tablespace_name,file_name from dba_data_files where file_name like '%zhong%';
 
-- 建立測試使用者
create user zhong identified by zhong default tablespace tbs_zhong;
grant connect,resource to zhong;
 
-- 查詢表空間與使用者的對應關係
select username,default_tablespace from dba_users where username = 'ZHONG';
 
-- ZHONG使用者內建立測試資料
create table t_zhong as select * from all_objects;
 
-- 查詢表與表空間的對應關係
select segment_name,tablespace_name from dba_segments where segment_name='T_ZHONG';
 
-- 表空間名稱變更
alter tablespace TBS_ZHONG rename to TBS_LIN;
 
-- 檢視錶空間與資料檔案的對應關係
col tablespace_name for a20
col file_name for a51
select tablespace_name,file_name from dba_data_files where file_name like '%zhong%';
 
-- 查詢表空間與使用者的對應關係
select username,default_tablespace from dba_users where username = 'ZHONG';
 
-- 查詢表與表空間的對應關係
select segment_name,tablespace_name from dba_segments where segment_name='T_ZHONG';
 
嘗試對UNDO表空間進行重新命名[成功]
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
alter tablespace UNDOTBS1 rename to UNDOTBS1_new;
 
 
嘗試對臨時表空間進行重新命名[成功]
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
alter tablespace TEMP rename to TEMP_new;
 
 
嘗試對系統表空間進行重新命名[失敗]
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
alter tablespace SYSTEM rename to SYSTEM_new;
alter tablespace SYSTEM rename to SYSTEM_new
*
ERROR at line 1:
ORA-00712: cannot rename system tablespace
 
alter tablespace SYSAUX rename to SYSAUX_new;
alter tablespace SYSAUX rename to SYSAUX_new
*
ERROR at line 1:
ORA-13502: Cannot rename SYSAUX tablespace

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12974804/viewspace-757605/,如需轉載,請註明出處,否則將追究法律責任。

相關文章