SHOW
Syntax
1182
Engine: NDBCLUSTER
Support: NO
Comment: Clustered, fault-tolerant, memory-based tables
*************************** 13. row ***************************
Engine: NDB
Support: NO
Comment: Alias for NDBCLUSTER
*************************** 14. row ***************************
Engine: EXAMPLE
Support: NO
Comment: Example storage engine
*************************** 15. row ***************************
Engine: ARCHIVE
Support: YES
Comment: Archive storage engine
*************************** 16. row ***************************
Engine: CSV
Support: NO
Comment: CSV storage engine
*************************** 17. row ***************************
Engine: FEDERATED
Support: YES
Comment: Federated MySQL storage engine
*************************** 18. row ***************************
Engine: BLACKHOLE
Support: YES
Comment: /dev/null storage engine (anything you write to it disappears)
The output from
SHOW ENGINES
may vary according to the MySQL version used and other factors.
The values shown in the
Support
column indicate the server's level of support for the storage engine,
as shown in the following table.
Value
Meaning
YES
The engine is supported and is active
DEFAULT
Like
YES
, plus this is the default engine
NO
The engine is not supported
DISABLED
The engine is supported but has been disabled
A value of
NO
means that the server was compiled without support for the engine, so it cannot be
activated at runtime.
A value of
DISABLED
occurs either because the server was started with an option that disables the
engine, or because not all options required to enable it were given. In the latter case, the error log file
should contain a reason indicating why the option is disabled. See
Section 5.2.1, “The Error Log”
.
You might also see
DISABLED
for a storage engine if the server was compiled to support it, but was
started with a
--skip-engine_name
option. For example,
--skip-innodb
[1236]
disables the
InnoDB
engine. For the
NDBCLUSTER
storage engine,
DISABLED
means the server was compiled with
support for MySQL Cluster, but was not started with the
--ndbcluster
[1610]
option.
All MySQL servers support
MyISAM
tables, because
MyISAM
is the default storage engine. It is not
possible to disable
MyISAM
.
13.7.5.14.
SHOW ERRORS
Syntax
SHOW ERRORS [LIMIT [
offset
,]
row_count
]
SHOW COUNT(*) ERRORS
This statement is similar to
SHOW WARNINGS
, except that it displays information only for errors, rather
than for errors, warnings, and notes.
The
LIMIT
clause has the same syntax as for the
SELECT
statement. See
Section 13.2.8, “
SELECT
Syntax”
.
Summary of Contents for 5.0
Page 1: ...MySQL 5 0 Reference Manual ...
Page 18: ...xviii ...
Page 60: ...40 ...
Page 396: ...376 ...
Page 578: ...558 ...
Page 636: ...616 ...
Page 844: ...824 ...
Page 1234: ...1214 ...
Page 1427: ...MySQL Proxy Scripting 1407 ...
Page 1734: ...1714 ...
Page 1752: ...1732 ...
Page 1783: ...Configuring Connector ODBC 1763 ...
Page 1793: ...Connector ODBC Examples 1773 ...
Page 1839: ...Connector Net Installation 1819 2 You must choose the type of installation to perform ...
Page 2850: ...2830 ...
Page 2854: ...2834 ...
Page 2928: ...2908 ...
Page 3000: ...2980 ...
Page 3122: ...3102 ...
Page 3126: ...3106 ...
Page 3174: ...3154 ...
Page 3232: ...3212 ...