Search Results
https://dev.mysql.com/doc/c-api/9.7/en/mysql-insert-id.html
Use this function after you have performed an INSERT statement into a table that contains an AUTO_INCREMENT field, or have used INSERT or UPDATE to set a column value with LAST_INSERT_ID(expr). If LAST_INSERT_ID(expr) occurred in the statement, ...
https://dev.mysql.com/doc/c-api/9.7/en/mysql-list-fields.html
MYSQL_RES * mysql_list_fields(MYSQL *mysql, const char *table, const char *wild) Description Note mysql_list_fields() is deprecated and is subject to removal in a future version of MySQL. Returns an empty result set for which the metadata provides ...Instead, use mysql_real_query() or mysql_query() to execute a SHOW COLUMNS ...
https://dev.mysql.com/doc/mysql-ai/9.7/en/mys-ai-aml-monitoring.html
You can monitor the status of AutoML by querying the rapid_ml_status variable or by querying the ML_STATUS column of the performance_schema.rpd_nodes table. mysql> SHOW GLOBAL STATUS LIKE 'rapid_ml_status'; +-----------------+-------+ | ...Query ...
https://dev.mysql.com/doc/mysql-ai/9.7/en/mys-ai-aml-prepare-data-split.html
Overview The TRAIN_TEST_SPLIT routine takes your datasets and prepares new tables for training and testing machine learning models. Two new tables in the same database are created with the following names: [original_table_name]_train ... You can ...
https://dev.mysql.com/doc/mysql-ai/9.7/en/mys-ai-aml-training.html
The training dataset used with ML_TRAIN must reside in a table on the MySQL server. AutoML supports tables up to 10 GB in size with a maximum of 100 million rows and or 1017 columns. mysql> CALL sys.ML_TRAIN('table_name', 'target_column_name', ...
https://dev.mysql.com/doc/mysql-ai/9.7/en/mys-hw-genai-troubleshoot.html
If you find unsupported format files, then try one of the following: Delete the files with unsupported formats from the folder, and run the VECTOR_STORE_LOAD command again to load the vector embeddings into the vector store table again. Move the ...
https://dev.mysql.com/doc/mysql-ai/9.7/en/mys-mysqlai-ml-explain-row.html
A table can include extra columns, and still use the AutoML model. This allows side by side comparisons of target column labels, ground truth, and explanations in the same table. The column names must match the feature column names in the table used ... The ML_EXPLAIN_ROW routine generates explanations for one or more rows of unlabeled ...
https://dev.mysql.com/doc/workbench/en/wb-routines.html
Move the roles you wish to associate with this table to the Roles list on the left. Privileges irrelevant to a specific table, such as the FILE privilege, are not shown. If a role has already been granted privileges on a specific table, those ...
https://dev.mysql.com/doc/internals/en/client-directory.html
The client library includes mysql.cc (the source of the mysql executable) and other utilities. Most of the utilities are mentioned in the MySQL Reference Manual. Generally these are standalone C programs which one runs in "client mode", that is, ...
https://dev.mysql.com/doc/internals/en/defining-filename-extensions.html
Storage engines are required to provide the MySQL server with a list of extensions used by the storage engine with regard to a given table, its data and indexes. Extensions are expected in the form of a null-terminated string array.