Oracle Tablespace之間資料遷移

2021-09-01 06:10:55 字數 1566 閱讀 7977

[size=large]分割槽表常用的資料字典

分割槽表資訊: dba_part_tables

顯示分割槽: dba_tab_partitions

顯示子分割槽: dba_tab_subpartitions

顯示分割槽列: dba_part_key_columns

顯示子分割槽列:dba_subpart_dey_columns

顯示分割槽索引:dba_part_indexes

顯示索引分割槽:dba_ind_partitions [/size]

select 'alter table '||table_name||' move tablespace wzrq ;'

from user_all_tables where tablespace_name='gzns'

union all

select 'alter table '||table_name||' move tablespace wzrq ;'

from dba_lobs where tablespace_name='gzns'

union all

--分割槽表

select 'alter table '|| table_name ||' move partition '||partition_name||' tablespace wzrq nologging; '

from dba_tab_partitions where 1=1

and tablespace_name='gzns'

order by table_name ,partition_position

--分割槽索引

select 'alter index '||index_name|| ' rebuild tablespace wzrq;'

from user_indexes where index_type='normal' and tablespace_name='gzns'

and dropped='no'

union all

select 'alter index '||index_name|| ' rebuild tablespace wzrq;'

from user_indexes where index_type='normal' and table_owner='wzrq'

and dropped='no'

轉移clob欄位

alter table knowledgeitem move lob(kilocaltext) store as (tablespace wzrq);

alter table mail_job move lob(mail_content) store as (tablespace wzrq);

alter table fax_job move lob(fax_content) store as (tablespace wzrq);

參考資料

[url]

[url]

集群之間資料的遷移

場景 舊集群的資料要遷移到新集群上面 hadoop distcp option hdfs master ip 8020 hive warehouse db tab name hdfs master ip 8020 hive warehouse db tab name option的內容可以hadoo...

oracle資料庫之間資料同步

這段時間負責某個專案開發的資料庫管理工作,這個專案中開發庫與測試資料庫分離,其中某些系統表資料與基礎資料資料經常需要進行同步,為方便完成指定資料表的同步操作,可以採用dblink與merge結合的方法完成,簡單方便。操作環境 此資料庫伺服器ip為192.168.196.76,有center與bran...

Oracle資料庫之間資料同步

源庫 env庫 中定義如下包 包定義如下 create or replace package pkg data report is author johnfnash created 2017 6 8 17 48 03 purpose data report to yw 資料同步儲存過程 proced...