posted by 구름너머 2008. 11. 13. 13:36

파티션 테이블로 되어 있는 테이블의

특정 파티션의 데이터만 지우고자 할때!!!

SELECT 'alter table '||segment_name ||' drop partition '||partition_name ||';' from dba_segments
where segment_name like '%TB_NUMBERMOVE%'
and partition_name like '%200811%'
order by 1

alter table TB_NUMBERMOVE drop partition P200810;

'ORACLE' 카테고리의 다른 글

계층적 질의(hierarchical query)  (0) 2008.12.08
grouping sets 사용법  (0) 2008.12.08
plan_table  (0) 2008.11.06
FREE LEC  (0) 2008.10.15
SQL*LOADER  (0) 2008.10.14