您现在的位置是:网站首页> 编程资料编程资料
optimize table出错解决方法_RedHat/Centos_操作系统_
2024-03-06
424人已围观
简介 optimize table出错解决方法_RedHat/Centos_操作系统_
一个某某库大概360W,为了提高查询效率,做点优化,使用optimize table table.name;出现Table does not support optimize, doing recreate + analyze instead
果断谷歌,查到一段E文。。。
Everytime you do optimize MySQL, by using mysqlcheck -A -o or using ./mysql_optimize from here.
You may see the output
Table does not support optimize, doing recreate + analyze instead.
It is because the table that you are using is InnoDB.
You can optimize the InnoDB tables by using this.
ALTER TABLE table.name ENGINE='InnoDB';
This will create a copy of the original table, and drop the original table, and replace to the original place.
Although this is safe, but I suggest you do backup and test first before doing this.
原来如此,大致意思是说innodb的数据库不支持optimize,可以用
ALTER TABLE table.name ENGINE='InnoDB';
该方法会对旧表以复制的方式新建一个新表,然后删除旧表。虽然这个过程是安全的,但是在进行操作时还是先进行备份为好
还有一种方式:
You can make OPTIMIZE TABLE work on other storage engines by starting mysqld with the --skip-new or --safe-mode option. In this case, OPTIMIZE TABLE is just mapped toALTER TABLE.
上面是说要求我们在启动的时候指定--skip-new或者--safe-mode选项来支持optimize功能
果断谷歌,查到一段E文。。。
Everytime you do optimize MySQL, by using mysqlcheck -A -o or using ./mysql_optimize from here.
You may see the output
Table does not support optimize, doing recreate + analyze instead.
It is because the table that you are using is InnoDB.
You can optimize the InnoDB tables by using this.
复制代码
代码如下:ALTER TABLE table.name ENGINE='InnoDB';
This will create a copy of the original table, and drop the original table, and replace to the original place.
Although this is safe, but I suggest you do backup and test first before doing this.
原来如此,大致意思是说innodb的数据库不支持optimize,可以用
ALTER TABLE table.name ENGINE='InnoDB';
该方法会对旧表以复制的方式新建一个新表,然后删除旧表。虽然这个过程是安全的,但是在进行操作时还是先进行备份为好
还有一种方式:
You can make OPTIMIZE TABLE work on other storage engines by starting mysqld with the --skip-new or --safe-mode option. In this case, OPTIMIZE TABLE is just mapped toALTER TABLE.
上面是说要求我们在启动的时候指定--skip-new或者--safe-mode选项来支持optimize功能
相关内容
- Linux centos系统的IP设置配置方法_RedHat/Centos_操作系统_
- CentOS 5 安装免费虚拟主机管理系统Kloxo_RedHat/Centos_操作系统_
- 洛克王国影笼雪山6-1打法攻略 洛克快打6-1怎么打_网络游戏_游戏攻略_
- 佣兵天下丛林独角兽详细介绍_网络游戏_游戏攻略_
- 洛克王国天蝎宝宝出现啦 天蝎宝宝获得方法图文攻略_网络游戏_游戏攻略_
- 佣兵天下幻兽紫电驹详细介绍_网络游戏_游戏攻略_
- 洛克王国蝎子王的信物活动图文攻略_网络游戏_游戏攻略_
- 佣兵天下幻兽冰狼详细介绍_网络游戏_游戏攻略_
- 洛克版大战僵尸游戏闪亮登场 闯关赢小蘑菇_网络游戏_游戏攻略_
- 我是火影攻击型BOSS怎么打 攻击型BOSS攻略_网络游戏_游戏攻略_
