Mysql数据库大表归档操作

由于公司的某个系统数据表过亿,考虑到数据表的压力。所以根据某个时间点对数据表做了一个归档。以下的操作是在当前的数据库新建表用于存储历史数据,然后再对生产表做一个清理操作。如果有条件的话可以把归档的数据放在一台新的数据库服务器上。(具体的表名和时间结点根据自己需要修改)

归档sql:

 方法一:  复制表并且按照条件插入数据(此种方法除了主键索引不包括其他索引)

[sql]  view plain  copy
  1. CREATE TABLE lime_survey_549656_20151001 as select * from lime_survey_549656  where submitdate < "2015-10-01 00:00:00";  
  2.    
  3. ALTER TABLE lime_survey_549656_20151001 change id id int primary key auto_increment;  
  4.    
  5. CREATE TABLE lime_survey_186194_20151001 as select * from lime_survey_186194 where submitdate < "2015-10-01 00:00:00";  
  6.    
  7. ALTER TABLE lime_survey_186194_20151001 change id id int primary key auto_increment;  
  8.    
  9. CREATE TABLE lime_survey_279575_20151001 as select * from lime_survey_279575 where submitdate < "2015-10-01 00:00:00";  
  10.    
  11. ALTER TABLE lime_survey_279575_20151001 change id id int primary key auto_increment;  

方法二: 创建一张空表,结构和索引和原表一样

[sql]  view plain  copy
  1. create table lime_survey_549656_20151001 like lime_survey_549656;   
  2. INSERT INTO lime_survey_549656_20151001 select * from lime_survey_549656  where submitdate < "2015-10-01 00:00:00";  
  3.   
  4. create table lime_survey_186194_20151001 like lime_survey_186194;   
  5. INSERT INTO lime_survey_186194_20151001 select * from lime_survey_186194  where submitdate < "2015-10-01 00:00:00";  
  6.   
  7. create table lime_survey_279575_20151001 like lime_survey_279575;   
  8. INSERT INTO lime_survey_279575_20151001 select * from lime_survey_279575  where submitdate < "2015-10-01 00:00:00";  

数据归档成功后清理数据sql:

[sql]  view plain  copy
  1. delete from lime_survey_549656  where submitdate < "2015-10-0100:00:00";  
  2.    
  3. delete from lime_survey_186194  where submitdate < "2015-10-0100:00:00";  
  4.    
  5. delete from lime_survey_279575  where submitdate < "2015-10-0100:00:00";  
版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/bluestarf/article/details/49641047
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值