Search Results
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-function-reference.html
The following table summarizes all functions available for the MySQL C API.
https://dev.mysql.com/doc/relnotes/mysql-cluster/8.4/en/news-8-4-1.html
It was removed due to a critical issue that could stop the server from restarting following the creation of a very large number of tables (8001 or more). ndbinfo Information Database: Added a type column to the transporter_details table in the ...
https://dev.mysql.com/doc/mysql-router/9.4/en/mysqlrouter.html
Table 4.6 Conditions that affect default --bootstrap values Condition Description --conf-base-port Modifies generated bind_port values for each connection type. The supplied hostname is written to the host_name field of the ... mysqlrouter Option ...
https://dev.mysql.com/doc/mysql-router/9.4/en/router-read-write-splitting-statements.html
The following describes read-only statements: Statements are read-only if they start with: SELECT DO VALUES TABLE WITH that is not followed by UPDATE or DELETE. The following DML: CALL, INSERT, UPDATE, DELETE, REPLACE, IMPORT TABLE, LOAD DATA, LOAD ...EXPLAIN, DESCRIBE, or DESC which are not followed by UPDATE or ...
https://dev.mysql.com/doc/mysql-shell/9.4/en/mysql-shell-utilities-json.html
MySQL Shell's JSON import utility util.importJSON() enables you to import JSON documents from a file (or FIFO special file) or standard input to a MySQL Server collection or relational table. You can import the JSON documents to an existing table ...The utility checks that the supplied JSON documents are well-formed and inserts them into the target database, removing the need to use multiple INSERT statements or write scripts to achieve this ...
https://dev.mysql.com/doc/mysql-ai/9.4/en/mys-ai-aml-model-catalog.html
The MODEL_CATALOG table is created in a schema named ML_SCHEMA_user_name, where the user_name is the name of the owning user. The fully qualified name of the model catalog table is ML_SCHEMA_user_name.MODEL_CATALOG. When a user creates a model, the ...AutoML creates a model catalog for any user that creates a machine learning ...
https://dev.mysql.com/doc/mysql-ai/9.4/en/mys-ai-aml-models-delete.html
Users that create models or have the required privileges to a model on the MODEL_CATALOG table can delete them. Delete a Model To delete a model from the model catalog table: Query the model catalog table for the model_id, model_owner, and ...
https://dev.mysql.com/doc/mysql-ai/9.4/en/mys-ai-aml-prepare-a-forecasting-model.html
mysql> CREATE DATABASE forecasting_data; mysql> USE forecasting_data; Create the table that is the sample dataset. mysql> CREATE TABLE electricity_demand ( date DATE PRIMARY KEY, demand FLOAT NOT NULL, temperature FLOAT NOT NULL ); Insert the sample ... This topic describes how to prepare the data to use for a forecasting machine learning ...
https://dev.mysql.com/doc/mysql-ai/9.4/en/mys-ai-aml-training-a-recommendation-model.html
It is a JSON object that can have the table_name option as a key, which specifies the table that has item descriptions. This table must only have two columns: one corresponding to the item_id, and the other with a TEXT data type (TINYTEXT, TEXT, ...