我是银行项目的开发人员。交易表有1200万条记录,但它没有分区。那么,我可以用现有数据创建这个表的分区吗?
答案 0 :(得分:0)
您可以执行以下步骤:
1. Create an empty table with partitioned structure as you want.
2. Populate the table with insert as select from previous table.
3. Optionally disable constraints before load.
如果您想要更有效的方法:
1. Create an empty table with partitioned structure as you want.
2. Create side table with data for specific partition (you can do it easily using create as select).
3. Exchange partition with the table created.
这个过程效率更高,可以通过PL / SQL实现自动化,但还需要做更多的工作。第一种方法更容易,但可能需要更多时间。
答案 1 :(得分:-1)
您无法直接对现有的非分区表进行分区。您需要根据以下分区方法创建临时表/新表:
<强> DBMS_REDEFINITION 强>
<强> EXCHANGE PARTITION 强>