Search Results
https://dev.mysql.com/doc/heatwave/en/mys-hw-supported-cloud-platforms.html
This means that all the layers and components of MySQL HeatWave are deployed and fully managed on selected cloud platforms. MySQL HeatWave also supports hybrid deployments; it is fully compatible with MySQL on-premise. This provides you with the ...
https://dev.mysql.com/doc/heatwave/en/mys-hwaml-onnx-import-overview.html
You cannot directly load models in ONNX format (.onnx) into a MySQL table. MySQL HeatWave AutoML supports the following ONNX model types: An ONNX model that has only one input, and it is the entire MySQL table. An ONNX model that has more than one ...The models require string serialization and conversion to Base64 encoding before you use the ML_MODEL_IMPORT ...
https://dev.mysql.com/doc/heatwave/en/mys-hwaml-unload-model.html
The ML_MODEL_UNLOAD routine unloads a model from MySQL HeatWave AutoML. Before You Begin Review the following Train a Model Load a Model Unload a Model If you are on MySQL 9.0.0 or higher, you can verify what models are currently loaded with the ...
https://dev.mysql.com/doc/heatwave-aws/en/heatwave-aws-create-repl-user.html
Do the following to add a replication user to the source server: Open MySQL Shell and connect to the MySQL source server. Creating a Replication User On a Source Server 8.4 Creating a Replication User On a Source Server The replication user for ...
https://dev.mysql.com/doc/refman/8.4/en/alter-table-examples.html
However, column c2 uses in-memory storage, as can be seen here in the output of SHOW CREATE TABLE: mysql> SHOW CREATE TABLE t3\G *************************** 1. For NDB tables, it is also possible to change the storage type used for a table or column. row *************************** Table: t1 Create Table: CREATE TABLE `t2` ( `c1` int(11) DEFAULT NULL ) /*!50100 TABLESPACE ts_1 STORAGE DISK */ ENGINE=ndbcluster DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci 1 row in set (0.01 sec) To change the storage type of an individual column, you can use ALTER TABLE ...
https://dev.mysql.com/doc/refman/8.4/en/charset-collation-coercibility.html
More generally, MySQL uses the concept of character set repertoire, which can sometimes be used to determine subset relationships among character sets and enable conversion of operands in operations that would otherwise produce an error. In the ...
https://dev.mysql.com/doc/refman/8.4/en/declare-handler.html
statement handler_action: { CONTINUE | EXIT | UNDO } condition_value: { mysql_error_code | SQLSTATE [VALUE] sqlstate_value | condition_name | SQLWARNING | NOT FOUND | SQLEXCEPTION } The DECLARE ... It can take the following forms: mysql_error_code: ...HANDLER statement specifies a handler that deals with one or more ...
https://dev.mysql.com/doc/refman/8.4/en/derived-tables.html
This is also true of the following nested SELECT: mysql> EXPLAIN SELECT NOW() AS a1, (SELECT f1(5)) AS a2\G *************************** 1. For information about lateral derived tables preceded by the LATERAL keyword, see Section 15.2.15.9, ...
https://dev.mysql.com/doc/refman/8.4/en/event-scheduler.html
The MySQL Event Scheduler manages the scheduling and execution of events, that is, tasks that run according to a schedule. The following discussion covers the Event Scheduler and is divided into the following sections: Section 27.4.1, “Event ...
https://dev.mysql.com/doc/refman/8.4/en/fulltext-stopwords.html
In a MySQL source distribution, you can find this list in the storage/myisam/ft_static.c file. The stopword list is loaded and searched for full-text queries using the server character set and collation (the values of the character_set_server and ...