如何设置MySQL数据库默认使用MyISAM?

发布于 2024-11-09 03:20:01 字数 126 浏览 0 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

汐鸠 2024-11-16 03:20:01

编辑:
实际上,是的 - 一个全局变量 default-storage-engine 只能针对一个会话进行更改,因此

SET storage_engine=MYISAM;    
SET table_type=BDB;

只会影响当前会话。有关详细信息,请参阅此处

EDITED:
Actually, yes - a global variable default-storage-engine can be changed only for a session, so

SET storage_engine=MYISAM;    
SET table_type=BDB;

will affect only the current session. See here for details.

秋千易 2024-11-16 03:20:01

在这里看到这个: 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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文