PDF (US Ltr)
- 43.3Mb
PDF (A4)
- 43.4Mb
Man Pages (TGZ)
- 296.5Kb
Man Pages (Zip)
- 401.9Kb
Info (Gzip)
- 4.3Mb
Info (Zip)
- 4.3Mb
Search Results
https://dev.mysql.com/doc/refman/8.0/en/replication-snapshot-method.html
In addition, InnoDB Cluster interfaces seamlessly with MySQL Router, which enables your applications to connect to the cluster without writing your own failover process. To import the data, either copy the dump file to the replica, or access the ...
https://dev.mysql.com/doc/refman/8.0/en/request-access.html
After the server accepts a connection, it enters Stage 2 of access control. For each request that you issue through the connection, the server determines what operation you want to perform, then checks whether your privileges are sufficient. The ...
https://dev.mysql.com/doc/refman/8.0/en/reserved-accounts.html
This account is locked so that it cannot be used for client connections. This account is locked so that it cannot be used for client connections. This account is locked so that it cannot be used for client connections. One part of the MySQL ...
https://dev.mysql.com/doc/refman/8.0/en/restart.html
Note After executing a RESTART statement, the client can expect the current connection to be lost. If auto-reconnect is enabled, the connection is reestablished after the server restarts. One use for RESTART is when it is not possible or convenient ...
https://dev.mysql.com/doc/refman/8.0/en/string-functions-charset.html
For operations that convert to character data, the character set and collation of the strings that result from the operations are defined by the character_set_connection and collation_connection system variables that determine the default connection ... MySQL has many operators and functions that return a ...
https://dev.mysql.com/doc/refman/8.0/en/system-variable-privileges.html
In addition, you must connect to the server using an encrypted connection and supply an SSL certificate with the Subject value specified by the persist_only_admin_x509_subject system variable. For persist-restricted variables, RESET PERSIST does not ...(For information about dynamic variables, see Section 7.1.9.2, “Dynamic System Variables”.) For certain global system variables, SET can be used to persist their value to the mysqld-auto.cnf file in the data directory, to affect server operation for subsequent ...
https://dev.mysql.com/doc/refman/8.0/en/thread-pool-tuning.html
You may need to adjust the value from this starting point to suit a given workload; a reasonable upper bound for this value is the maximum number of concurrent connections expected; the value of the Max_used_connections status variable can serve as ... This section provides guidelines on determining the best configuration for thread pool performance, as measured using a metric such as transactions per ...
https://dev.mysql.com/doc/refman/8.0/en/time-zone-support.html
Each client that connects has its own session time zone setting, given by the session time_zone variable. For example: mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root -p mysql The mysql command shown here assumes that you connect to the ...
https://dev.mysql.com/doc/refman/8.0/en/type-conversion.html
Implicit conversion of a numeric or temporal value to string produces a value that has a character set and collation determined by the character_set_connection and collation_connection system variables. For information about connection character ...
https://dev.mysql.com/doc/refman/8.0/en/using-explain.html
When EXPLAIN is used with FOR CONNECTION connection_id rather than an explainable statement, it displays the execution plan for the statement executing in the named connection. See Section 10.8.4, “Obtaining Execution Plan Information for a Named ... The EXPLAIN statement provides information about how MySQL executes statements: EXPLAIN works with SELECT, DELETE, INSERT, REPLACE, and UPDATE ...