Oracle大数据表的分表处理

Posted JohnKing

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Oracle大数据表的分表处理相关的知识,希望对你有一定的参考价值。

1.首先给大数据表创建rownum序列号

--增加序列号字段
alter table TEST add xlh number;
--填充序列号
update TEST set xlh = rownum;

2.通过xlh字段进行分数据到不同的表中(以建表的方式进行处理)

create table hik_1001 as select clm1 as hik_clm1,clm2 as hik_clm2,clm3 as hik_clm3 from TEST where   xlh>=1 and xlh <=5000000;

create table hik_1002 as select clm1 as hik_clm1,clm2 as hik_clm2,clm3 as hik_clm3 from TEST where   xlh>=5000001 and xlh <=10000000;

create table hik_1003 as select clm1 as hik_clm1,clm2 as hik_clm2,clm3 as hik_clm3 from TEST where   xlh>=10000001 and xlh <=15000000;

create table hik_1004 as select clm1 as hik_clm1,clm2 as hik_clm2,clm3 as hik_clm3 from TEST where   xlh>=15000001;

3.给创建的表分别建立主键或者索引

create index hik_1001_index on HIK_1001  (HIK_CLM2)

alter table HIK_1001  add constraint HIK_1001_PKEY primary key (HIK_CLM1)

如果数据有重复的话,只需要建立索引就可以.

4.然后对分表后的数据进行处理

 

以上是关于Oracle大数据表的分表处理的主要内容,如果未能解决你的问题,请参考以下文章

Oracle亿级数据查询处理(数据库分表分区实战)

Oracle学习(十四)分表分区

Oracle 数据库 - 使用UEStudio修改dmp文件版本号,解决imp命令恢复的数据库与dmp本地文件版本号不匹配导致的导入失败问题,“ORACLE error 12547”问题处理(代码片段

海量数据查询关系型数据库存储大数据,要点就是:简单存储分区分表高效索引批量写入

分库分表-简单总结

oracle单表的数据量太大该怎么处理