PDF (US Ltr)
- 41.8Mb
PDF (A4)
- 41.9Mb
Man Pages (TGZ)
- 272.4Kb
Man Pages (Zip)
- 378.4Kb
Info (Gzip)
- 4.2Mb
Info (Zip)
- 4.2Mb
Search Results
https://dev.mysql.com/doc/refman/9.7/en/mysqldump.html
--enable-cleartext-plugin Command-Line Format --enable-cleartext-plugin Type Boolean Default Value FALSE Enable the mysql_clear_password cleartext authentication plugin. --debug-check Command-Line Format --debug-check Type Boolean Default Value ...
https://dev.mysql.com/doc/refman/9.7/en/ibd2sdi.html
ibd2sdi Options ibd2sdi supports the following options: --help, -h Command-Line Format --help Type Boolean Default Value false Display a help message and exit. ibd2sdi --dump-file=file_name ../data/test/t1.ibd --skip-data, -s Command-Line Format ...
https://dev.mysql.com/doc/refman/9.7/en/mysql-cluster-options-variables.html
--ndb-log-fail-terminate Command-Line Format --ndb-log-fail-terminate System Variable ndb_log_fail_terminate Scope Global Dynamic No SET_VAR Hint Applies No Type Boolean Default Value FALSE When this option is specified, and complete logging of all ... This section provides information about MySQL server options, server and status variables that are specific to NDB ...
https://dev.mysql.com/doc/refman/9.7/en/mysql-command-options.html
--binary-as-hex Command-Line Format --binary-as-hex Type Boolean Default Value FALSE in noninteractive mode When this option is given, mysql displays binary data using hexadecimal notation (0xvalue). --commands Command-Line Format --commands Type ...
https://dev.mysql.com/doc/refman/9.7/en/mysqlbinlog.html
--debug-check Command-Line Format --debug-check Type Boolean Default Value FALSE Print some debugging information when the program exits. --debug-info Command-Line Format --debug-info Type Boolean Default Value FALSE Print debugging information and ... The server's binary log consists of files containing “events” that describe modifications to database ...
https://dev.mysql.com/doc/refman/9.7/en/mysqld-multi.html
Command-Line Format --no-defaults Type Boolean Default Value false With --defaults-file=file_name, only the named file is read. --help Command-Line Format --help Type Boolean Default Value false Display a help message and exit. --example ...
https://dev.mysql.com/doc/refman/9.7/en/mysqlslap.html
--auto-generate-sql, -a Command-Line Format --auto-generate-sql Type Boolean Default Value FALSE Generate SQL statements automatically when they are not supplied in files or using command options. --auto-generate-sql-add-autoincrement Command-Line ... mysqlslap is a diagnostic program designed to emulate client load for a MySQL server and to report the timing of each ...
https://dev.mysql.com/doc/refman/9.7/en/innochecksum.html
--help, -? Command-Line Format --help Type Boolean Default Value false Displays command line help. Example usage: innochecksum --help --info, -I Command-Line Format --info Type Boolean Default Value false Synonym for --help. Example usage: ...This ...
https://dev.mysql.com/doc/refman/9.7/en/innodb-parameters.html
InnoDB Startup Options InnoDB System Variables System variables that are true or false can be enabled at server startup by naming them, or disabled by using a --skip- prefix. Boolean variables can be set at startup to the values ON, TRUE, OFF, and ...For example, to enable or disable the InnoDB adaptive hash index, you can use --innodb-adaptive-hash-index or --skip-innodb-adaptive-hash-index on the command line, or innodb_adaptive_hash_index or skip_innodb_adaptive_hash_index in an option ...
https://dev.mysql.com/doc/refman/9.7/en/comparison-operators.html
Some of the functions in this section return values other than 1 (TRUE), 0 (FALSE), or NULL. expr IN (value,...) Returns 1 (true) if expr is equal to any of the values in the IN() list, else returns 0 (false). mysql> SELECT INTERVAL(23, 1, 15, 17, ... Table 14.4 Comparison Operators Name Description > Greater than operator >= Greater than or equal operator < Less than operator <>, != Not equal operator <= Less than or equal operator <=> NULL-safe equal to operator = Equal operator BETWEEN ...