Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
ea1251b1
Commit
ea1251b1
authored
May 30, 2001
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added documentation about mysqlcheck.
Docs/manual.texi: Added documentation about mysqlcheck
parent
3a837a04
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
129 additions
and
3 deletions
+129
-3
Docs/manual.texi
Docs/manual.texi
+129
-3
No files found.
Docs/manual.texi
View file @
ea1251b1
...
@@ -729,6 +729,7 @@ MySQL Utilites
...
@@ -729,6 +729,7 @@ MySQL Utilites
Maintaining a MySQL Installation
Maintaining a MySQL Installation
* Table maintenance:: Table maintenance and crash recovery
* Table maintenance:: Table maintenance and crash recovery
* Using mysqlcheck:: Using mysqlcheck for maintenance and recovery
* Maintenance regimen:: Setting up a table maintenance regimen
* Maintenance regimen:: Setting up a table maintenance regimen
* Table-info:: Getting information about a table
* Table-info:: Getting information about a table
* Crash recovery:: Using @code{myisamchk} for crash recovery
* Crash recovery:: Using @code{myisamchk} for crash recovery
...
@@ -34598,7 +34599,8 @@ to start using the new table.
...
@@ -34598,7 +34599,8 @@ to start using the new table.
@cindex maintaining, tables
@cindex maintaining, tables
@cindex tables, maintaining
@cindex tables, maintaining
@cindex databases, maintaining
@cindex databases, maintaining
@cindex @code{mysiamchk}
@cindex @code{myisamchk}
@cindex @code{mysqlcheck}
@cindex crash, recovery
@cindex crash, recovery
@cindex recovery, from crash
@cindex recovery, from crash
@node Maintenance, Adding functions, Tools, Top
@node Maintenance, Adding functions, Tools, Top
...
@@ -34606,6 +34608,7 @@ to start using the new table.
...
@@ -34606,6 +34608,7 @@ to start using the new table.
@menu
@menu
* Table maintenance:: Table maintenance and crash recovery
* Table maintenance:: Table maintenance and crash recovery
* Using mysqlcheck:: Using mysqlcheck for maintenance and recovery
* Maintenance regimen:: Setting up a table maintenance regimen
* Maintenance regimen:: Setting up a table maintenance regimen
* Table-info:: Getting information about a table
* Table-info:: Getting information about a table
* Crash recovery:: Using @code{myisamchk} for crash recovery
* Crash recovery:: Using @code{myisamchk} for crash recovery
...
@@ -34616,7 +34619,7 @@ This chapter covers what you should know about maintaining a @strong{MySQL}
...
@@ -34616,7 +34619,7 @@ This chapter covers what you should know about maintaining a @strong{MySQL}
distribution. You will learn how to care for your tables on a regular
distribution. You will learn how to care for your tables on a regular
basis, and what to do when disaster strikes.
basis, and what to do when disaster strikes.
@node Table maintenance,
Maintenance regimen
, Maintenance, Maintenance
@node Table maintenance,
Using mysqlcheck
, Maintenance, Maintenance
@section Using @code{myisamchk} for Table Maintenance and Crash Recovery
@section Using @code{myisamchk} for Table Maintenance and Crash Recovery
Starting with @strong{MySQL} Version 3.23.13, you can check MyISAM
Starting with @strong{MySQL} Version 3.23.13, you can check MyISAM
...
@@ -34998,9 +35001,132 @@ This space is allocated on the temporary disk (specified by @code{TMPDIR} or
...
@@ -34998,9 +35001,132 @@ This space is allocated on the temporary disk (specified by @code{TMPDIR} or
If you have a problem with disk space during repair, you can try to use
If you have a problem with disk space during repair, you can try to use
@code{--safe-recover} instead of @code{--recover}.
@code{--safe-recover} instead of @code{--recover}.
@node Using mysqlcheck, Maintenance regimen, Table maintenance, Maintenance
@section Using @code{mysqlcheck} for Table Maintenance and Crash Recovery
Since @strong{MySQL} version 3.23.38 you will be able to use a new
checking and repairing tool for @code{MyISAM} tables. The difference to
@code{myisamchk} is that @code{mysqlcheck} should be used when the
@code{mysqld} server is running, where as @code{myisamchk} should be used
when it is not. The benefit is that you no longer have to take the
server down for checking or repairing your tables.
@code{mysqlcheck} uses @strong{MySQL} server commands @code{CHECK},
@code{REPAIR}, @code{ANALYZE} and @code{OPTIMIZE} in a convenient way
for the user.
There are three alternative ways to invoke @code{mysqlcheck}:
@example
shell> mysqlcheck [OPTIONS] database [tables]
shell> mysqlcheck [OPTIONS] --databases DB1 [DB2 DB3...]
shell> mysqlcheck [OPTIONS] --all-databases
@end example
So it can be used in a similar way as @code{mysqldump} when it
comes to what databases and tables you want to choose.
@code{mysqlcheck} does have a special feature compared to the other
clients; the default behavior, checking tables (-c), can be changed by
renaming the binary. So if you want to have a tool that repairs tables
by default, you should just copy @code{mysqlcheck} to your harddrive
with a new name, @code{mysqlrepair}, or alternatively make a symbolic
link to @code{mysqlrepair} and name the symbolic link as
@code{mysqlrepair}. If you invoke @code{mysqlrepair} now, it will repair
tables by default.
The names that you can use to change @code{mysqlcheck} default behavior
are here:
@example
mysqlrepair: The default option will be -r
mysqlanalyze: The default option will be -a
mysqloptimize: The default option will be -o
@end example
The options available for @code{mysqlcheck} are listed here, please
check what your version supports with @code{mysqlcheck --help}.
@table @code
@item -A, --all-databases
Check all the databases. This will be same as --databases with all
databases selected
@item -1, --all-in-1
Instead of making one query for each table, execute all queries in 1
query separately for each database. Table names will be in a comma
separated list.
@item -a, --analyze
Analyze given tables.
@item --auto-repair
If a checked table is corrupted, automatically fix it. Repairing will be
done after all tables have been checked, if corrupted ones were found.
@item -#, --debug=...
Output debug log. Often this is 'd:t:o,filename'
@item --character-sets-dir=...
Directory where character sets are
@item -c, --check
Check table for errors
@item -C, --check-only-changed
Check only tables that have changed since last check or haven't been
closed properly.
@item --compress
Use compression in server/client protocol.
@item -?, --help
Display this help message and exit.
@item -B, --databases
To check several databases. Note the difference in usage; In this case
no tables are given. All name arguments are regarded as database names.
@item --default-character-set=...
Set the default character set
@item -F, --fast
Check only tables that hasn't been closed properly
@item -f, --force
Continue even if we get an sql-error.
@item -e, --extended
If you are using this option with CHECK TABLE, it will ensure that the
table is 100 percent consistent, but will take a long time.
If you are using this option with REPAIR TABLE, it will run an extended
repair on the table, which may not only take a long time to execute, but
may produce a lot of garbage rows also!
@item -h, --host=...
Connect to host.
@item -m, --medium-check
Faster than extended-check, but only finds 99.99 percent of all
errors. Should be good enough for most cases.
@item -o, --optimize
Optimize table
@item -p, --password[=...]
Password to use when connecting to server. If password is not given
it's solicited on the tty.
@item -P, --port=...
Port number to use for connection.
@item -q, --quick
If you are using this option with CHECK TABLE, it prevents the check
from scanning the rows to check for wrong links. This is the fastest
check.
If you are using this option with REPAIR TABLE, it will try to repair
only the index tree. This is the fastest repair method for a table.
@item -r, --repair
Can fix almost anything except unique keys that aren't unique.
@item -s, --silent
Print only error messages.
@item -S, --socket=...
Socket file to use for connection.
@item --tables
Overrides option --databases (-B).
@item -u, --user=#
User for login if not current user.
@item -v, --verbose
Print info about the various stages.
@item -V, --version
Output version information and exit.
@end table
@cindex maintaining, tables
@cindex maintaining, tables
@cindex tables, maintenance regimen
@cindex tables, maintenance regimen
@node Maintenance regimen, Table-info,
Table maintenance
, Maintenance
@node Maintenance regimen, Table-info,
Using mysqlcheck
, Maintenance
@section Setting Up a Table Maintenance Regimen
@section Setting Up a Table Maintenance Regimen
Starting with @strong{MySQL} Version 3.23.13, you can check MyISAM
Starting with @strong{MySQL} Version 3.23.13, you can check MyISAM
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment