Search Results
https://dev.mysql.com/doc/mysql-enterprise-backup/8.4/en/advanced.replica.html
MySQL Enterprise Backup allows you to set up a replica server (referred to as the “replica” below) by backing up the source server (referred to as the “source” below) and restoring the backup on a new replica, without having to stop the ...
https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-get.html
get [--include-defaults|-d] [--all] [filter_specification_list] cluster_name filter_specification_list: filter_specification[,filter_specification][,...] filter_specification: [attribute_name][:process_specification][+process_specification]] ...
https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-show-status.html
show status show status --cluster|-c cluster_name show status --operation|-o cluster_name show status --backup|-b cluster_name show status --process|-r cluster_name show status --progress cluster_name show status --progressbar cluster_name This ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-basic-function-reference.html
The following table summarizes the functions available in the C API basic interface. For greater detail, see the descriptions in Section 5.4, “C API Basic Function Descriptions”.
https://dev.mysql.com/doc/c-api/8.4/en/c-api-prepared-call-statements.html
An application that executes a prepared CALL statement should use a loop that fetches a result and then invokes mysql_stmt_next_result() to determine whether there are more results. This section describes prepared-statement support in the C API for ...
https://dev.mysql.com/doc/ndb-operator/8.4/en/index.html
The information presented in this guide relating to MySQL NDB Cluster is current for recent releases up to and including NDB Cluster 8.4. For more information about NDB 8.4, see What is New in MySQL NDB Cluster 8.4. For help with using MySQL, please ... NDB Operator for Kubernetes Legal Notice NDB Operator Manual This is the NDB Operator Manual, which provides information about installing and using NDB Operator 8.4 for ...
https://dev.mysql.com/doc/relnotes/ndb-operator/8.4/en/news-8-4-1-1-4-1.html
This is MySQL NDB Operator 8.4.1-1.4.1, an LTS release of NDB Operator, a Kubernetes Operator for MySQL NDB Cluster. For additional downloads and the source of MySQL NDB Operator visit https://dev.mysql.com/downloads/ndb-operator/ and ...It was ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-explanations-ml-explain-row.html
mysql> CALL sys.ML_TRAIN('census_data.census_train', 'revenue', JSON_OBJECT('task', 'classification'), @census_model); The following example loads the trained model. mysql> CALL sys.ML_MODEL_LOAD(@census_model, NULL); For more information about ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-explanations-ml-explain-table.html
mysql> CALL sys.ML_TRAIN('census_data.census_train', 'revenue', JSON_OBJECT('task', 'classification'), @census_model); The following example loads the trained model. mysql> CALL sys.ML_MODEL_LOAD(@census_model, NULL); For more information about ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-scoring-an-anomaly-detection-model.html
mysql> CALL sys.ML_MODEL_LOAD(@model, NULL); The following example uses the model handle. mysql> CALL sys.ML_MODEL_LOAD('anomaly_detection_semi_supervised_use_case', NULL); Score the model with the ML_SCORE routine and use the accuracy metric.