1.首先给大数据表创建rownum序列号 --增加序列号字段 alter table TEST add xlh number; --填充序列号 update TEST set xlh = rownum; 2.通过xlh字段进行分数据到不同的表中(以建表的方式进行处理) ; ; ; ; 3.给创建的表分别建立主键或者索引 create index hik_1001_index on HIK_1001 (HIK_CLM2) alter table HIK_1001 add constraint HI…