mysql 日志表rename 备份
Posted 迷失之路
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 日志表rename 备份相关的知识,希望对你有一定的参考价值。
1. 按照原历史表新增一个新表(空表):
mysql> show create table history_log\G
mysql> create table history_log_new ...;
2. 给历史表重命名,并将新表重命名为历史表:
mysql> RENAME TABLE history_log to history_log_bak_20151217, history_log_new to history_log;
以上是关于mysql 日志表rename 备份的主要内容,如果未能解决你的问题,请参考以下文章