Search Results
https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-using-mcmd.html
ssl_ca Type File name Default Value NULL The path name of the Certificate Authority (CA) certificate file in PEM format. ssl_cert Type File name Default Value NULL The path name of the SSL public key certificate file in PEM format. ssl_cipher Type ...Invoking this executable starts the MySQL Cluster Manager Agent, to which you can connect using the mcm client (see Section 4.3, “Starting the MySQL Cluster Manager Client” and Chapter 5, MySQL Cluster Manager Client Commands for more ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-library-init.html
#include <mysql.h> #include <stdlib.h> int main(void) { if (mysql_library_init(0, NULL, NULL)) { fprintf(stderr, "could not initialize MySQL client library\n"); exit(1); } /* Use any MySQL API functions here */ mysql_library_end(); return ... int ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/adding-native-function.html
This function should also set maybe_null = 0 if the main function cannot return a NULL value. The function can check whether any of the function arguments can return NULL by checking the arguments' maybe_null variable. If you want to return NULL ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/writing-authentication-plugins-proxy-users.html
row *************************** USER(): plugin_user1@localhost CURRENT_USER(): plugin_user1@localhost @@proxy_user: NULL @@external_user: NULL Then connect as plugin_user2: $> mysql --user=plugin_user2 --password Enter password: x In this case, ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-anomaly-detection-logs.html
This column labels identified anomalous logs with a value of 1, non-anomalous logs with 0, and unlabeled logs with NULL. You can set either embedding_model or keyword_model to NULL, but you cannot set both to NULL. Anomaly detection for logs allows ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-data-drift-detection.html
mysql> CALL sys.ML_MODEL_LOAD(@census_model, NULL); Run ML_PREDICT_TABLE to generate a table of predictions. mysql> CALL sys.ML_MODEL_LOAD(@census_model, NULL); Run ML_PREDICT_ROW to generate predictions for a defined number of rows. MySQL AI ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-load-model.html
The following example loads an AutoML model from the model catalog by using the session variable mysql> CALL sys.ML_MODEL_LOAD(@census_model, NULL); Where: @census_model is the session variable that contains the model handle. NULL is specified in ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-mysqlai-ml-model-export.html
ML_MODEL_EXPORT Overview After you run ML_MODEL_EXPORT, the output table has these columns and formats: chunk_id: INT AUTO_INCREMENT PRIMARY KEY model_object: LONGTEXT DEFAULT NULL model_metadata: JSON See Model Metadata. ML_MODEL_EXPORT should work ... Use the ML_MODEL_EXPORT routine to export a model from the model catalog to a user defined ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-mysqlai-ml-model-load.html
Syntax Examples An example that specifies the model handle and sets the user parameter to NULL. mysql> CALL sys.ML_MODEL_LOAD('ml_data.iris_train_user1_1636729526', NULL); An example that specifies a session variable containing the model handle.
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-mysqlai-ml-predict-row.html
mysql> SET @row_input = JSON_OBJECT( "age", 25, "workclass", "Private", "fnlwgt", 226802, "education", "11th", "education-num", 7, "marital-status", "Never-married", "occupation", "Machine-op-inspct", "relationship", "Own-child", "race", "Black", ...