MySQL:MyISAM 有表空间吗?

发布于 2024-11-28 23:28:53 字数 47 浏览 0 评论 0原文

我可以使用在 MySQL 5.1.30 上运行的 MyISAM 表创建表空间吗?

Can i create tablespaces with a MyISAM table running on MySQL 5.1.30?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

冰火雁神 2024-12-05 23:28:53

表空间(在 MySQL 5.1 中)仅支持 NDB 和 NDBCLUSTER,参见 http://dev.mysql.com/doc/refman/5.1/en/create-tablespace.html

ENGINE参数决定了使用这个的存储引擎
表空间,engine_name 是存储引擎的名称。在
MySQL 5.1,engine_name 必须是值 NDB 或 NDBCLUSTER 之一。

但是你可以告诉 MySQL MyISAM 使用哪个数据和索引目录,参见。 http://dev.mysql.com/doc/refman/5.1 /en/create-table.html

通过使用 DATA DIRECTORY='directory' 或 INDEX DIRECTORY='directory' 您
可以指定MyISAM存储引擎应该将表的数据放置在哪里
文件和索引文件。该目录必须是完整路径名
目录,而不是相对路径。

Tablesspaces (in MySQL 5.1) are only supported for NDB and NDBCLUSTER, cf http://dev.mysql.com/doc/refman/5.1/en/create-tablespace.html:

The ENGINE parameter determines the storage engine which uses this
tablespace, with engine_name being the name of the storage engine. In
MySQL 5.1, engine_name must be one of the values NDB or NDBCLUSTER.

But you can tell MySQL which data- and index-dir to use for MyISAM, cf. http://dev.mysql.com/doc/refman/5.1/en/create-table.html:

By using DATA DIRECTORY='directory' or INDEX DIRECTORY='directory' you
can specify where the MyISAM storage engine should put a table's data
file and index file. The directory must be the full path name to the
directory, not a relative path.

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