PDF (US Ltr)
- 43.3Mb
PDF (A4)
- 43.4Mb
Man Pages (TGZ)
- 296.6Kb
Man Pages (Zip)
- 402.0Kb
Info (Gzip)
- 4.3Mb
Info (Zip)
- 4.3Mb
Search Results
https://dev.mysql.com/doc/refman/8.0/en/replication-options-gtids.html
If the server has a mix of InnoDB transactions and non-InnoDB transactions, the compression controlled by this system variable interferes with the work of this process and can slow it significantly. This variable is mainly useful for testing and ...
https://dev.mysql.com/doc/refman/8.0/en/keywords.html
Certain keywords, such as SELECT, DELETE, or BIGINT, are reserved and require special treatment for use as identifiers such as table and column names. This may also be true for the names of built-in functions. Some keywords which are otherwise ...
https://dev.mysql.com/doc/refman/8.0/en/ipv6-brokers.html
Create an account at Freenet6 by visiting this URL and signing up: http://gogonet.gogo6.com After creating the account, go to this URL, sign in, and create a user ID and password for the IPv6 broker: ... If you do not have a public IPv6 address that ...
https://dev.mysql.com/doc/refman/8.0/en/integer-types.html
MySQL supports the SQL standard integer types INTEGER (or INT) and SMALLINT. As an extension to the standard, MySQL also supports the integer types TINYINT, MEDIUMINT, and BIGINT. The following table shows the required storage and range for each ...
https://dev.mysql.com/doc/refman/8.0/en/identifiers.html
Beginning with MySQL 8.0.32, use of the dollar sign as the first character in the unquoted name of a database, table, view, column, stored program, or alias is deprecated and produces a warning. The dollar sign can still be used as the leading ...
https://dev.mysql.com/doc/refman/8.0/en/charset-unicode-sets.html
By default, the collation sorts characters having a code point listed in the DUCET table (Default Unicode Collation Element Table) according to the weight value assigned in the table. NOTE 11: The Unicode scalar value of a character is its code ...
https://dev.mysql.com/doc/refman/8.0/en/clone-plugin-remote.html
The client certificate and key files to make available include: ca.pem The self-signed certificate authority (CA) file. clone_ssl_ca Specifies the path to the self-signed certificate authority (CA) file. The clone plugin supports the following ...
https://dev.mysql.com/doc/refman/8.0/en/command-line-options.html
For a long option that takes a value, separate the option name and the value by an = sign. In this Manual, we use dashes in option names, except where underscores are significant. For example: $> mysql -u root -p -e "SELECT VERSION();SELECT NOW()" ... Program options specified on the command line follow these rules: Options are given after the command ...
https://dev.mysql.com/doc/refman/8.0/en/connection-options.html
Note Host name identity verification with VERIFY_IDENTITY does not work with self-signed certificates that are created automatically by the server or manually using mysql_ssl_rsa_setup (see Section 8.3.3.1, “Creating SSL and RSA Certificates and ... This section describes options supported by most MySQL client programs that control how client programs establish connections to the server, whether connections are encrypted, and whether connections are ...
https://dev.mysql.com/doc/refman/8.0/en/constant-folding-optimization.html
Consider the table created by the following statement: CREATE TABLE t (c TINYINT UNSIGNED NOT NULL); The WHERE condition in the query SELECT * FROM t WHERE c < 256 contains the integral constant 256 which is out of range for a TINYINT UNSIGNED ...