1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
mysql> show engines;
+
--------------------+---------+----------------------------------------------------------------+--------------+------+------------+
| Engine | Support | Comment | Transactions | XA | Savepoints |
+
--------------------+---------+----------------------------------------------------------------+--------------+------+------------+
| PERFORMANCE_SCHEMA | YES | Performance
Schema
|
NO
|
NO
|
NO
|
| CSV | YES | CSV storage engine |
NO
|
NO
|
NO
|
| MRG_MYISAM | YES | Collection
of
identical MyISAM tables |
NO
|
NO
|
NO
|
| BLACKHOLE | YES | /dev/
null
storage engine (anything you write
to
it disappears) |
NO
|
NO
|
NO
|
| MyISAM | YES | MyISAM storage engine |
NO
|
NO
|
NO
|
| MEMORY | YES | Hash based, stored
in
memory, useful
for
temporary
tables |
NO
|
NO
|
NO
|
| ARCHIVE | YES | Archive storage engine |
NO
|
NO
|
NO
|
| InnoDB |
DEFAULT
| Supports transactions, row-
level
locking,
and
foreign
keys | YES | YES | YES |
| FEDERATED |
NO
| Federated MySQL storage engine |
NULL
|
NULL
|
NULL
|
+
--------------------+---------+----------------------------------------------------------------+--------------+------+------------+
9
rows
in
set
(0.00 sec)
mysql>
|
1
2
3
4
5
6
7
8
9
|
mysql> show status
like
'table_lock%'
;
+
-----------------------+-------+
| Variable_name | Value |
+
-----------------------+-------+
| Table_locks_immediate | 70 |
| Table_locks_waited | 0 |
+
-----------------------+-------+
2
rows
in
set
(0.00 sec)
mysql>
|