From 3ffb5df455cd639b8a19019a90061eb5fc7f6660 Mon Sep 17 00:00:00 2001 From: wxy Date: Wed, 23 Jul 2014 15:51:27 +0800 Subject: [PATCH] =?UTF-8?q?PUB=EF=BC=9A20140702=20How=20to=20check=20MySQL?= =?UTF-8?q?=20storage=20engine=20type=20on=20Linux?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit @geekpi --- ...40702 How to check MySQL storage engine type on Linux.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename {translated/tech => published}/20140702 How to check MySQL storage engine type on Linux.md (80%) diff --git a/translated/tech/20140702 How to check MySQL storage engine type on Linux.md b/published/20140702 How to check MySQL storage engine type on Linux.md similarity index 80% rename from translated/tech/20140702 How to check MySQL storage engine type on Linux.md rename to published/20140702 How to check MySQL storage engine type on Linux.md index 565d0965b1..ef16572047 100644 --- a/translated/tech/20140702 How to check MySQL storage engine type on Linux.md +++ b/published/20140702 How to check MySQL storage engine type on Linux.md @@ -1,8 +1,8 @@ -如何在Linux上检查MySQL的存储引擎类型 +[小白技巧]如何在Linux上检查MySQL数据表的存储引擎类型 ================================================================================ > **提问**: 我想要知道我的MySQL数据库是MyISAM还是Innodb类型。我该如何检查MySQL数据库表的类型? -MySQl主要使用两种存储引擎:**MyISAM and Innodb**。MyISAM是非事务的,因此拥有读取更快,然而InnoDB完全支持细颗粒的事务锁定(比如:commit/rollback)。当你创建一张新的MySQL表时,你要选择它的类型(也就是存储引擎)。如果没有选择,你就会使用与预设置的默认引擎。 +MySQl主要使用两种存储引擎:**MyISAM 和 Innodb**。MyISAM是非事务的,因此拥有读取更快,然而InnoDB完全支持细颗粒度的事务锁定(比如:commit/rollback)。当你创建一张新的MySQL表时,你要选择它的类型(也就是存储引擎)。如果没有选择,你就会使用与预设置的默认引擎。 如果你想要知道已经存在的MySQL数据表的类型,这里有几种方法达到。 @@ -34,7 +34,7 @@ MySQl主要使用两种存储引擎:**MyISAM and Innodb**。MyISAM是非事务 via: http://ask.xmodulo.com/check-mysql-storage-engine-type-linux.html -译者:[geekpi](https://github.com/geekpi) 校对:[校对者ID](https://github.com/校对者ID) +译者:[geekpi](https://github.com/geekpi) 校对:[wxy](https://github.com/wxy) 本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创翻译,[Linux中国](http://linux.cn/) 荣誉推出