Search Results
https://dev.mysql.com/doc/refman/8.4/en/mysql-cluster-ndb-api-statistics.html
A number of types of statistical counters relating to actions performed by or affecting Ndb objects are available. Such actions include starting and closing (or aborting) transactions; primary key and unique key operations; table, range, and pruned ...
https://dev.mysql.com/doc/refman/8.4/en/mysqld-multi.html
mysqld_multi is designed to manage several mysqld processes that listen for connections on different Unix socket files and TCP/IP ports. It can start or stop servers, or report their current status. Note For some Linux platforms, MySQL installation ...
https://dev.mysql.com/doc/refman/8.4/en/mysqlimport.html
MySQL release binaries provided by Oracle are not built using this option. MySQL release binaries provided by Oracle are not built using this option. MySQL release binaries provided by Oracle are not built using this option. The mysqlimport client ...
https://dev.mysql.com/doc/refman/8.4/en/mysqlshow.html
MySQL release binaries provided by Oracle are not built using this option. MySQL release binaries provided by Oracle are not built using this option. MySQL release binaries provided by Oracle are not built using this option. The mysqlshow client ...
https://dev.mysql.com/doc/refman/8.4/en/mysqlslap.html
MySQL release binaries provided by Oracle are not built using this option. MySQL release binaries provided by Oracle are not built using this option. MySQL release binaries provided by Oracle are not built using this option. mysqlslap is a ...
https://dev.mysql.com/doc/refman/8.4/en/partitioning.html
MySQL 8.4 Community binaries provided by Oracle include partitioning support provided by the InnoDB and NDB storage engines. For information about partitioning support offered in MySQL Enterprise Edition binaries, see Chapter 32, MySQL Enterprise ...
https://dev.mysql.com/doc/refman/8.4/en/pattern-matching.html
MySQL provides standard SQL pattern matching as well as a form of pattern matching based on extended regular expressions similar to those used by Unix utilities such as vi, grep, and sed. SQL pattern matching enables you to use _ to match any ...
https://dev.mysql.com/doc/refman/8.4/en/performance-schema-log-status-table.html
The log_status table provides information that enables an online backup tool to copy the required log files without locking those resources for the duration of the copy process. When the log_status table is queried, the server blocks logging and ...
https://dev.mysql.com/doc/refman/8.4/en/performance-schema-prepared-statements-instances-table.html
The Performance Schema provides instrumentation for prepared statements, for which there are two protocols: The binary protocol. This is accessed through the MySQL C API and maps onto underlying server commands as shown in the following table. C ...
https://dev.mysql.com/doc/refman/8.4/en/prepare.html
PREPARE stmt_name FROM preparable_stmt The PREPARE statement prepares a SQL statement and assigns it a name, stmt_name, by which to refer to the statement later. The prepared statement is executed with EXECUTE and released with DEALLOCATE PREPARE.