MySQL5.5 RANGE分区增加删除处理

栏目: 数据库 · 发布时间: 8年前

内容简介:MySQL5.5 RANGE分区增加删除处理

一、删除分区

##查看要处理的分区的数据量,并导出作为备份

mysql> select count(*)  from baby_account_change_log where updated_time >'2016-12-01 00:00:00' and updated_time <'2017-01-01 00:00:00';

+----------+

| count(*) |

+----------+

|    66252 |

+----------+

1 row in set (0.23 sec)

##导出备份

mysql> select *  into outfile '/tmp/baby_account_change_log_p1.sql' from baby_account_change_log where updated_time >'2016-12-01 00:00:00' and updated_time <'2017-01-01 00:00:00' limit 100000000000;

Query OK, 66252 rows affected (2.71 sec)

##确认要处理分区

mysql> explain partitions select count(*)  from baby_account_change_log where updated_time >'2016-12-01 00:00:00' and updated_time <'2017-01-01 00:00:00';

+----+-------------+-------------------------------+------------+-------+---------------+---------+---------+------+-------+--------------------------+

| id | select_type | table                         | partitions | type  | possible_keys | key     | key_len | ref  | rows  | Extra                    |

+----+-------------+-------------------------------+------------+-------+---------------+---------+---------+------+-------+--------------------------+

|  1 | SIMPLE      | baby_account_change_log | p1 | index | NULL          | PRIMARY | 8       | NULL | 66252 | Using where; Using index | 

+----+-------------+-------------------------------+------------+-------+---------------+---------+---------+------+-------+--------------------------+

##删除分区

mysql> alter table baby_account_change_log drop partition p0;

Query OK, 0 rows affected (0.01 sec)

二、增加分区

#错误提示删除存储最大值分区

mysql> alter table baby_account_change_log add partition(PARTITION p13 VALUES LESS THAN (unix_timestamp('2017-12-31 23:59:59')));

ERROR 1481 (HY000): MAXVALUE can only be used in last partition definition

#删除存储最大值分区

mysql> alter table baby_account_change_log drop partition p12;

##增加新的分区

mysql> alter table baby_account_change_log add partition(PARTITION p12 VALUES LESS THAN (unix_timestamp('2017-12-31 23:59:59')));


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

网站搜索设计

网站搜索设计

[美] Shari Thurow、[美] Nick Musica / 向怡宁 / 人民邮电出版社 / 2011-4 / 35.00

本书是提高网站搜索可用性的红宝书,它将SEO 和Web 可用性两个不同领域的知识融会贯通,详细阐述了用户的各种搜索行为和行为背后的真实意图,以及网站如何迎合用户心理,以便提供令其满意的内容,进而实现网站所有者的商业目标。 本书不仅仅是SEO 专业人员和Web 可用性人员的参考必备,同时更可为网络文案、设计开发人员、营销专员以及网站所有者、管理者等其他Web 领域从业人员拓展视野、补强技能。一起来看看 《网站搜索设计》 这本书的介绍吧!

URL 编码/解码
URL 编码/解码

URL 编码/解码

XML、JSON 在线转换
XML、JSON 在线转换

在线XML、JSON转换工具

UNIX 时间戳转换
UNIX 时间戳转换

UNIX 时间戳转换