Search Results
https://dev.mysql.com/doc/mysql-enterprise-backup/8.4/en/partial.html
In particular, InnoDB tables have internal IDs and other data values that can only be restored to the same instance, not a different MySQL server. In particular, InnoDB tables have internal IDs and other data values that can only be restored to the ... By default, all the files under the database subdirectories in the data directory are included in the backup, so that the backup includes data from all MySQL storage engines, any third-party storage engines, and even any non-database files in that ...
https://dev.mysql.com/doc/mysql-enterprise-backup/8.4/en/platforms.compatibility.html
MySQL Enterprise Backup is by nature cross-platform compatible when running on the Linux and Windows operating systems: backups on a Linux machine can, in principle, be restored on a Windows machine, and vice versa. All applications that connect to ...However, because Identifier Case Sensitivity is dependent on the case sensitivity of the underlying operating system (which varies across platforms), data transfer problems might occur due to letter case issues with the database or table ...
https://dev.mysql.com/doc/mysql-enterprise-backup/8.4/en/what-is-new.html
MySQL Enterprise Backup 8.4 marks the start of a new series of LTS (Long Term Support) releases. MySQL Enterprise Backup 8.4 is recommended for use on production systems. The MySQL Enterprise Backup.x LTS releases will focus on security and bug ...
https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-collect-logs.html
When an mcmd agent receives the collect logs command from the mcm agent it is connected with, it sets up a TCP server socket using port 0 by default, and lets the operating system assign the actual port number. All agents in the site are then ...
https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-list-certs.html
list certs [--active|-A] [--all|-a] [--retired|-r] cluster_name The command lists the files created by the create certs command for the MySQL NDB Cluster named cluster_name.
https://dev.mysql.com/doc/c-api/8.4/en/c-api-binary-log-data-structures.html
C API functions for processing a replication event stream from a server require a connection handler (a MYSQL * pointer) and a pointer to a MYSQL_RPL structure that describes the steam of replication events to read from the server binary log. int ...Connection handlers are described in Section 5.2, “C API Basic Data ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-implementations.html
The MySQL C API is a C-based API that client applications written in C can use to communicate with MySQL Server. To obtain the C API header and library files required to build C API client programs, install a MySQL Server distribution. You can ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-change-user.html
Clears any current query attributes defined as a result of calling mysql_bind_param(). CR_SERVER_LOST The connection to the server was lost during the query. ER_UNKNOWN_COM_ERROR The MySQL server does not implement this command (probably an old ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-ssl-set.html
It is optional to call mysql_ssl_set() to obtain an encrypted connection because by default, MySQL programs attempt to connect using encryption if the server supports encrypted connections, falling back to an unencrypted connection if an encrypted ... bool mysql_ssl_set(MYSQL *mysql, const char *key, const char *cert, const char *ca, const char *capath, const char *cipher) Description Note As of MySQL 8.0.35, mysql_ssl_set() is deprecated and subject to removal in a future MySQL ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-stmt-reset.html
bool mysql_stmt_reset(MYSQL_STMT *stmt) Description Resets a prepared statement on client and server to state after prepare. It resets the statement on the server, data sent using mysql_stmt_send_long_data(), unbuffered result sets and current ...