partition 分割槽表移動到其他表空間

perfychi發表於2013-02-27
begin
for x in(select partition_name from dba_tab_partitions where table_name='SMSG_LOGS')
loop
execute immediate 'alter table smsg_logs move partition ' || x.partition_name || ' tablespace users';
end loop;
end;
/

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

相關文章