如何设置MySQL数据库默认使用MyISAM?
我有一个 MySQL 服务器,其默认存储引擎设置为 InnoDB。我有一个项目,要求数据库中的表是MyISAM。我想创建带有标志的数据库,将默认存储引擎设置为 MyISAM。这是否可以在不更改服务器默认值且无需手动指定每个表的情况下实现?
I have a MySQL server which has it's default storage engine set as InnoDB. I have a project which requires the tables in the database to be MyISAM. I'd like to create my database with a flag to set the default storage engine to be MyISAM. Is this possible without changing the server default and also without manually specifying each table?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
编辑:
实际上,是的 - 一个全局变量 default-storage-engine 只能针对一个会话进行更改,因此
只会影响当前会话。有关详细信息,请参阅此处。
EDITED:
Actually, yes - a global variable default-storage-engine can be changed only for a session, so
will affect only the current session. See here for details.
在这里看到这个: http://forums.mysql.com/read.php?21 ,26193,26193
你可以将数据库更改为 MyISAM ——我猜你只是从数据库中的表中读取(否则,如果你有读/写事务,InnoDB 是更好的选择)。
see this here: http://forums.mysql.com/read.php?21,26193,26193
you can change your database to MyISAM -- I'm guessing you're only reading from the tables in the database (otherwise if you have read/write transactions InnoDB is the better choice).