Search Results
https://dev.mysql.com/doc/refman/9.7/en/clone-plugin-local.html
Note A local cloning operation does not support cloning of user-created tables or tablespaces that reside outside of the data directory. Attempting to clone such tables or tablespaces causes the following error: ERROR 1086 (HY000): File ...The ...
https://dev.mysql.com/doc/refman/9.7/en/clone-plugin-stop.html
On the recipient MySQL server instance, you can retrieve the processlist identifier (PID) for a cloning operation from the PID column of the clone_status table. If necessary, you can stop a cloning operation with a KILL QUERY processlist_id ...
https://dev.mysql.com/doc/refman/9.7/en/clone-plugin.html
Cloned data is a physical snapshot of data stored in InnoDB that includes schemas, tables, tablespaces, and data dictionary metadata. By default, a remote cloning operation removes existing user-created data (schemas, tables, tablespaces) and binary ... The clone plugin permits cloning data locally or from a remote MySQL server ...
https://dev.mysql.com/doc/refman/9.7/en/connection-compression-control.html
For source/replica replication connections, the configured compression algorithms and compression level are available from multiple sources: The Performance Schema replication_connection_configuration table has COMPRESSION_ALGORITHMS and ...
https://dev.mysql.com/doc/refman/9.7/en/connection-control-component.html
In addition, component_connection_control implements a Performance Schema table connection_control_failed_login_attempts which provides detailed monitoring information for failed connection attempts. For more information about this table, see ...
https://dev.mysql.com/doc/refman/9.7/en/connection-control-plugin.html
CONNECTION_CONTROL_FAILED_LOGIN_ATTEMPTS implements an INFORMATION_SCHEMA table that exposes more detailed monitoring information for failed connection attempts. For more information about this table, see Section 28.6.2, “The INFORMATION_SCHEMA ...
https://dev.mysql.com/doc/refman/9.7/en/constraints.html
MySQL enables you to work both with transactional tables that permit rollback and with nontransactional tables that do not. We must handle the case when you have inserted or updated a lot of rows in a nontransactional table for which changes cannot ...Because of this, constraint handling is a bit different in MySQL than in other ...
https://dev.mysql.com/doc/refman/9.7/en/counting-rows.html
Counting the total number of animals you have is the same question as “How many rows are in the pet table?” because there is one record per pet. COUNT(*) counts the number of rows, so the query to count your animals looks like this: mysql> ...
https://dev.mysql.com/doc/refman/9.7/en/create-library.html
The SELECT statement that follows it displays the row in the Information Schema LIBRARIES table corresponding to the library just created. The SELECT statement that follows it displays the row in the Information Schema LIBRARIES table corresponding ... CREATE LIBRARY [IF NOT EXISTS] [database.]library LANGUAGE language [COMMENT "comment_text"] AS code This statement creates a library in the named database, if ...
https://dev.mysql.com/doc/refman/9.7/en/create-logfile-group.html
For example, you cannot have a tablespace and a log file group with the same name, or a tablespace and a data file with the same name. You can verify that the undo files were created and obtain information about them by querying the Information ...