Search Results
https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-rotate-log.html
rotate log [{--hosts=|-h }host_list] [site_name] host_list: host[,host[,...]] Rotate mcmd logs for the connected MySQL Cluster Manager agent, for agents running on certain hosts, or for agents on all hosts in a management site.
https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-using-backup-restore-added.html
REORGANIZE PARTITION steps is to make use of the logical backup of the NDB tables' metadata, which is part of the cluster backup created by MySQL Cluster Manager. A partial restore can also be performed when new data nodes have been added to a ...
https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-using-backup-restore-requirements.html
To restore a backup created by MySQL Cluster Manager to a cluster with fewer data nodes, you need to restore first the logical backup of the metadata of the NDB tables using the mysqldump utility and then restore the table data using the ndb_restore ... This section provides information about basic requirements for performing backup and restore operations using MySQL Cluster ...
https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-using-backup-restore-simple-complete.html
In this example, we use the backup having the ID 4, that was created for mycluster previously in this section. To perform a complete restore of a MySQL NDB Cluster from a backup with a given ID, follow the steps listed here: Identify the backup to ...
https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-using-import-cluster-example.html
As discussed previously (see Section 4.5.1, “Importing a Cluster Into MySQL Cluster Manager: Basic Procedure”), importing a standalone or “wild” cluster that was not created with MySQL Cluster Manager into the manager requires the ...The ...
MySQL Cluster Manager 8.4 User Manual :: 4.5 Importing MySQL NDB Clusters into MySQL Cluster Manager
https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-using-import-cluster.html
It is possible to bring a “wild” MySQL NDB Cluster—that is, a cluster not created using MySQL Cluster Manager—under the control of MySQL Cluster Manager. The following sections provide an outline of the procedure required to import such a ...
https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-using-start-stop-agent-windows.html
To start the MySQL Cluster Manager agent manually on a Windows host, you should invoke mcmd.exe, found in the bin directory under the manager installation directory on that host. If the configuration file's location is not specified with the ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-multiple-queries.html
By default, mysql_real_query() and mysql_query() interpret their statement string argument as a single statement to be executed, and you process the result according to whether the statement produces a result set (a set of rows, as for SELECT) or ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-prepared-call-statements.html
This section describes prepared-statement support in the C API for stored procedures executed using CALL statements: Stored procedures executed using prepared CALL statements can be used in the following ways: A stored procedure can produce any ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-prepared-statement-data-structures.html
A handler is created by calling mysql_stmt_init(), which returns a pointer to a MYSQL_STMT. Prepared statements use several data structures: To obtain a statement handler, pass a MYSQL connection handler to mysql_stmt_init(), which returns a ...