Mysql数据库大表归档操作

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


归档sql

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

CREATE TABLE lime_survey_549656_20151001 as select * from lime_survey_549656  where submitdate < "2015-10-01 00:00:00";
 
ALTER TABLE lime_survey_549656_20151001 change id id int primary key auto_increment;
 
CREATE TABLE lime_survey_186194_20151001 as select * from lime_survey_186194 where submitdate < "2015-10-01 00:00:00";
 
ALTER TABLE lime_survey_186194_20151001 change id id int primary key auto_increment;
 
CREATE TABLE lime_survey_279575_20151001 as select * from lime_survey_279575 where submitdate < "2015-10-01 00:00:00";
 
ALTER TABLE lime_survey_279575_20151001 change id id int primary key auto_increment;


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

create table lime_survey_549656_20151001 like lime_survey_549656; 
INSERT INTO lime_survey_549656_20151001 select * from lime_survey_549656  where submitdate < "2015-10-01 00:00:00";

create table lime_survey_186194_20151001 like lime_survey_186194; 
INSERT INTO lime_survey_186194_20151001 select * from lime_survey_186194  where submitdate < "2015-10-01 00:00:00";

create table lime_survey_279575_20151001 like lime_survey_279575; 
INSERT INTO lime_survey_279575_20151001 select * from lime_survey_279575  where submitdate < "2015-10-01 00:00:00";

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

deletefrom lime_survey_549656  where submitdate < "2015-10-0100:00:00";
 
deletefrom lime_survey_186194  where submitdate < "2015-10-0100:00:00";
 
deletefrom lime_survey_279575  where submitdate < "2015-10-0100:00:00";


  • 0
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值