Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Drop Partitioning
I think it is much simpler than that. Experiment first though
John
ALTER TABLE <table_name>
EXCHANGE PARTITION <partition_name>
WITH TABLE <new_table_name>
<including | excluding> INDEXES
<with | without> VALIDATION
EXCEPTIONS INTO <schema.table_name>;
ALTER TABLE sales
EXCHANGE PARTITION feb97 WITH TABLE sales_feb97
INCLUDING INDEXES
WITHOUT VALIDATION
EXCEPTIONS INTO uwclass.problems;
From: oracle-l-bounce_at_freelists.org
[mailto:oracle-l-bounce_at_freelists.org] On Behalf Of Bryan Wells
Sent: 03 August 2005 10:57
To: Oracle-L
Subject: Drop Partitioning
We have a test box that we want to remove partitioning from. does anyone have the steps to retain table data while dropping the date range partitioning. My first thought was the following. please correct me where I go astray:
Thank you in advance for your help and expertise...
-- http://www.freelists.org/webpage/oracle-lReceived on Wed Aug 03 2005 - 05:30:56 CDT