码迷,mamicode.com
首页 > 数据库 > 详细

如何改变数据库存储引擎

时间:2018-02-02 17:08:47      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:指定   where   存储引擎   系统   alt   如何   engine   sam   使用   

更改数据库存储引擎
1:查看系统支持的存储引擎 > show engines;
2:查看表使用的存储引擎:
> show table status from `databases_name` where name = ‘table_name‘;
> show create table `table_name`;
3:修改表引擎
> alter table `table_name` engine = ‘InnoDB‘;
> show create table `table_name`;
4:通过配置文件指定存储引擎
default-storage-engine = MYISAM // 可以通过配置选项修改存储引擎
5:可以通过指定表存储引擎的方法;

如何改变数据库存储引擎

标签:指定   where   存储引擎   系统   alt   如何   engine   sam   使用   

原文地址:https://www.cnblogs.com/laowenBlog/p/8405762.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!