mysqlshow


mysqlcheck

mysqlcheck is a client program for checking and repairing tables. It presents a command-line interface to the CHECK TABLE, ANALYZE TABLE, OPTIMIZE TABLE, and REPAIR TABLE statements. It's somewhat similar to myisamchk, but is used while the server is running and has some support for non-MyISAM tables. mysqlcheck works by sending administrative SQL statements to the server to be executed. This contrasts with myisamchk, which operates directly on table files and thus requires either that you coordinate table access with the server or stop the server.

All mysqlcheck options are supported for MyISAM tables. mysqlcheck can also analyze BDB tables and can check InnoDB tables.

Usage

mysqlcheck can be run in any of three modes:

 mysqlcheck [options] db_name [tbl_name] ... mysqlcheck [options] --databases db_name ... mysqlcheck [options] --all-databases 

In the first case, mysqlcheck checks the named tables in the given database. If no tables are named, mysqlcheck checks all tables in the database. In the second case, all arguments are taken as database names and mysqlcheck checks all tables in each one. In the third case, mysqlcheck checks all tables in all databases.

Standard Options Supported by mysqlcheck

 --character-sets-dir      --password                --socket --compress                --pipe                    --user --debug                   --port                    --verbose --default-character-set   --protocol                --version --help                    --shared-memory-base-name --host                    --silent 

mysqlcheck also supports the standard SSL options.

Options Specific to mysqlcheck

mysqlcheck supports the following options to control how it processes tables. Following this list is a description of the equivalences between these options and the SQL statements to which they correspond.

  • --all-databases, -A (boolean)

    Check all tables in all databases.

  • --analyze, -a

    Perform table analysis by issuing an ANALYZE TABLE statement. (For example, this analyzes the distribution of key values.) The results of the analysis can help the query optimizer perform index-based lookups and joins more quickly.

  • --all-in-1, -1 (boolean)

    Without this option, mysqlcheck issues separate statements for each table. This option causes mysqlcheck to group tables by database and name all tables within each database in a single statement.

  • --auto-repair (boolean)

    If any tables to be checked are found to have problems, run a second phase to repair them after the check phase has finished.

  • --check, -c

    Issue a CHECK TABLE statement to check for errors. This is the default action if no action is specified explicitly.

  • --check-only-changed, -C

    Check only tables that have changed since they were last checked or that have not been closed properly.

  • --databases, -B (boolean)

    Interpret all arguments as database names and check all tables in each database.

  • --extended, -e (boolean)

    Perform an extended table check. If used with --repair, use a more extensive but slower repair method than is used for --repair by itself.

  • --fast, -F (boolean)

    Check only tables that have not been closed properly.

  • --force, -f (boolean)

    Continue executing even if errors occur.

  • --medium-check, -m

    Perform table checking using a method that is faster than --extended but slightly less thorough. This checking mode should be sufficient for most circumstances.

  • --optimize, -o

    Perform table optimization by issuing an OPTIMIZE TABLE statement.

  • --quick, -q (boolean)

    For table checking, this option skips checking links in the data rows. Used with --repair, this option repairs only the index file and leaves the data file untouched. Giving this option twice is no different from giving it once, in contrast to myisamchk, which does behave differently when the option is specified twice.

  • --repair, -r

    Perform table repair by issuing a REPAIR TABLE statement. This repair mode should correct most problems except the occurrence of duplicate values in an index that should be unique.

  • --tables

    Override --databases.

  • --use-frm (boolean)

    Used with --repair to perform a table repair operation that uses the .frm file to interpret the data file and rebuild the index file. This option can be used when the index file has been lost or corrupted.

The relationship between mysqlcheck's options and the SQL statements that it issues is described by the following tables, which show the statements that correspond to mysqlcheck's options.

Table checking options (MyISAM and InnoDB tables only):

Option

Corresponding Statement

--check

CHECK TABLE tbl_list

--check-only-changed

CHECK TABLE tbl_list CHANGED

--extended

CHECK TABLE tbl_list EXTENDED

--fast

CHECK TABLE tbl_list FAST

--medium-check

CHECK TABLE tbl_list MEDIUM

--quick

CHECK TABLE tbl_list QUICK


For InnoDB tables, all options in the preceding table are treated as --check; InnoDB does not support different types of checks.

Table analysis options (MyISAM and BDB tables only):

Option

Corresponding Statement

--analyze

ANALYZE TABLE tbl_list


Table repair options (MyISAM tables only):

Option(s)

Corresponding Statement

--repair

REPAIR TABLE tbl_list

--repair --quick

REPAIR TABLE tbl_list QUICK

--repair --extended

REPAIR TABLE tbl_list EXTENDED

--repair --use-frm

REPAIR TABLE tbl_list USE_FRM


Table optimization options (MyISAM tables only):

Option

Corresponding Statement

--optimize

OPTIMIZE TABLE tbl_list




MySQL The definitive guide to using, programming, and administering MySQL 4. 1 and 5. 0
Mysql: the Definitive Guide to Using, Programming, and Administering Mysql 4.1 and 5.0
ISBN: B003A1PKHY
EAN: N/A
Year: 2004
Pages: 190
Authors: Paul Dubois

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net