How can I import a partition from one table into another in Oracle?
问题 I would like to know if the following steps are possible and how fast this is: Create a partition named part1 in Table A Drop partition part1 in Table B Import the Table A partition part1 into Table B Can you provide me with an example if it is possible indeed? Or any resources I can look at? Note that the tables would have the exact same structure. 回答1: You can do something similar with the ALTER TABLE ... EXCHANGE PARTITION command. This would exchange a single partition with a table that