summaryrefslogtreecommitdiff
path: root/Docs
diff options
context:
space:
mode:
authorunknown <paul@central.snake.net>2001-06-02 12:48:05 -0500
committerunknown <paul@central.snake.net>2001-06-02 12:48:05 -0500
commit05cfa81185dd27d8a1dd34d3c0a61198ce2fd020 (patch)
tree0434e11396015b7ff377f83e7187b78c6bfcb5ec /Docs
parent6c7dd0458105f6f27b1d6aaa44b80e21b2597251 (diff)
downloadmariadb-git-05cfa81185dd27d8a1dd34d3c0a61198ce2fd020.tar.gz
manual.texi ISAM Tables: show how to convert to MySQL so mysqlcheck
manual.texi can be used. Docs/manual.texi: ISAM Tables: show how to conver to MySQL so mysqlcheck can be used.
Diffstat (limited to 'Docs')
-rw-r--r--Docs/manual.texi8
1 files changed, 8 insertions, 0 deletions
diff --git a/Docs/manual.texi b/Docs/manual.texi
index d6133bf2ea2..2c67d3e5d90 100644
--- a/Docs/manual.texi
+++ b/Docs/manual.texi
@@ -24186,6 +24186,14 @@ tables are:
@item Tables are compressed with @code{pack_isam} rather than with @code{myisampack}.
@end itemize
+If you want to convert an @code{ISAM} table to a @code{MyISAM} table so
+that you can use utilities such as @code{mysqlcheck}, use an @code{ALTER
+TABLE} statement:
+
+@example
+mysql> ALTER TABLE tbl_name TYPE = MYISAM;
+@end example
+
@cindex tables, @code{HEAP}
@node HEAP, BDB, ISAM, Table types
@section HEAP Tables