数据交换表面看上去是两个段里面的数据进行交换,其实就是数据字典的交换,但是表结构必须一样
下面一个例子交换分区和索引
创建分区
create table Part_index_example
(
x number ,
y number,
data varchar2(20)
)
partition by range(x)
(
partition Part_index_part1 values less than(5),
partition Part_index_part2 values less than(10)
);
创建索引
create index local_prefixed on Part_index_example(x,y) local;
插入数据
insert into Part_index_example(x,y,Data) select mod(level ,10),level,level from dual connect by level<1000;
创建表
create table less5
(
x number ,
y number,
data varchar2(20)
);
索引
create index less_ind on less5(x,y);
插入数据
insert into less5 select mod(level,5),level,level from dual connect by level<1000;
SQL> select count(*) from less5;
COUNT(*)
----------
999
SQL> select count(*) from Part_index_example partition(Part_index_part1);
COUNT(*)
----------
504
SQL> begin
2 dbms_stats.gather_table_stats(ownname => user ,tabname => upper('less5'),cascade => true);
3 dbms_stats.gather_table_stats(ownname => user ,tabname => upper('Part_index_example'),cascade => true);
4 end;
5 /
PL/SQL 过程已成功完成。
alter table Part_index_example exchange partition Part_index_part1 with table less5 including indexes without validation;
这个操作非常快。
SQL> select count(*) from Part_index_example partition(Part_index_part1);
COUNT(*)
----------
999
SQL> select count(*) from less5;
COUNT(*)
----------
504
通过交换,其实可以用一张空表与一个分区进行交换,从而使得区间数据清除,并且又能将数据归档
可以将分区边满表,空表变分区,从而可以将满表导出数据库。
注意:
这个操作会导致全局索引分区失效
全局分区索引每一个分区索引可能指向任何表分区,而我们取走了一个分区,导致索引失败。其中有些条目指向我们已经删除数据,而新增的数据不再该索引条目中。使得在查询时无法使用全局索引分区
在对分区进行维护时,基本会导致全局索引分区失效,
alter table Part_index_example drop partition Part_index_part2 ;
alter table Part_index_example add partition Part_index_part3 values less than(20);
alter table Part_index_example exchange partition Part_index_part1 with table less5 including indexes without validation ;
都会导致全局索引分区失效,但是如果在这些ddl语句后面加 update global indexes;
alter table Part_index_example drop partition Part_index_part2 update global indexes ;
alter table Part_index_example add partition Part_index_part3 values less than(20) update global indexes;
alter table Part_index_example exchange partition Part_index_part1 with table less5 including indexes without validation update global indexes;