如何更改mysql 数据库的存储引擎

如何更改mysql 数据库的存储引擎,第1张

mysql 5.5以前默认的引擎是myisam,5.5以后是innodb,引擎可以在创建表的时候指定,如下:

Ceate table test

(id int,name varchar(10))

engine innodb

修改:

alter table test type=innodb

如果想设置缺省引擎可以在配置文件的mysqld添加一行:

default-storage-engine=INNODB

修改MySQL数据库引擎步骤如下

第一:修改my.ini,在[mysqld]下加上:

default-storage-engine=引擎名称

其中的等号后面是要指定的数据库引擎名称。

第二:用sql语句修改已经建成表的引擎:

alter table tableName type=InnoDB --type语法在4.X版本下存在

alter table tableName ENGINE=InnoDB --5.X下都改成engine=innodb

举例说明下面贴出我的my.ini文件供参考:

[mysqld] basedir=C:\Program Files\VertrigoServ\Mysql\ datadir=C:\Program Files\VertrigoServ\Mysql\data\ port =3306 key_buffer =64M max_allowed_packet =1M table_cache =128 sort_buffer_size =512K net_buffer_length =8K read_buffer_size =256K read_rnd_buffer_size =512K myisam_sort_buffer_size =68M default-storage-engine=INNODB [mysqldump] quick max_allowed_packet =116M [mysql] no-auto-rehash # Remove the next comment character if you are not familiar with SQL #safe-updates [isamchk] key_buffer =20M sort_buffer_size =20M read_buffer =62M write_buffer =62M [myisamchk] key_buffer =20M sort_buffer_size =20M read_buffer =62M write_buffer =62M [mysqlhotcopy] interactive-timeout

按照以上的代码提示 *** 作,我们就能够成功地修改MySQL数据库引擎为INNODB了。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/10823008.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-11
下一篇 2023-05-11

发表评论

登录后才能评论

评论列表(0条)

保存