Search Results
https://dev.mysql.com/doc/heatwave/en/mys-hwaml-ml-score.html
ML_SCORE scores a model by generating predictions using the feature columns in a labeled dataset as input and comparing the predictions to ground truth values in the target column of the labeled dataset. The dataset used with ML_SCORE should have ...
https://dev.mysql.com/doc/heatwave/en/mys-hwaml-prepare-data-split.html
As of MySQL 9.4.1, you can automatically create training and testing datasets with the TRAIN_TEST_SPLIT routine. Overview The TRAIN_TEST_SPLIT routine takes your datasets and prepares new tables for training and testing machine learning models. Two ...
https://dev.mysql.com/doc/heatwave/en/mys-hwgenai-ml-rag.html
The ML_RAG routine performs retrieval-augmented generation (RAG) by: Taking a natural-language query. This routine aims to provide detailed, accurate, and contextually relevant answers by augmenting a generative model with information retrieved ...
https://dev.mysql.com/doc/connector-j/en/connector-j-connp-props-statements.html
This results in better performance when dealing with time zone conversions in Date and Time data types, however it won't be aware of time zone changes if they happen at runtime. Default Value true Since Version 8.0.20 continueBatchOnError Should the ...
https://dev.mysql.com/doc/connector-j/en/connector-j-connp-props-tunes-for-integration-with-other-products.html
overrideSupportsIntegrityEnhancementFacility Should the driver return "true" for 'DatabaseMetaData.supportsIntegrityEnhancementFacility()' even if the database doesn't support it to workaround applications that require this method to return "true" ...
https://dev.mysql.com/doc/connector-j/en/connector-j-connp-props-x-protocol-and-x-devapi.html
If the property is not set, the mechanism is chosen depending on the connection type: "PLAIN" is used for TLS connections and "SHA256_MEMORY" or "MYSQL41" is used for unencrypted connections. Default Value PLAIN Since Version 8.0.8 ...
https://dev.mysql.com/doc/connector-j/en/connector-j-reference-dns-srv.html
Connector/J supports the use of DNS SRV records for connections. For information about DNS SRV support in MySQL, see Connecting to the Server Using DNS SRV Records. When multiple MySQL instances provide the same service for your applications, DNS ...
https://dev.mysql.com/doc/refman/8.4/en/connecting-using-uri-or-key-value-pairs.html
This section describes use of URI-like connection strings or key-value pairs to specify how to establish connections to the MySQL server, for clients such as MySQL Shell. For information on establishing connections using command-line options, for ...
https://dev.mysql.com/doc/refman/8.4/en/correlated-subqueries.html
A correlated subquery is a subquery that contains a reference to a table that also appears in the outer query. For example: SELECT * FROM t1 WHERE column1 = ANY (SELECT column1 FROM t2 WHERE t2.column2 = t1.column2); Notice that the subquery ...
https://dev.mysql.com/doc/refman/8.4/en/docker-mysql-more-topics.html
A MySQL Docker installation is different from a common, non-Docker installation in the following aspects: Only a limited number of binaries are included. Warning Any software updates or installations users perform to the Docker container (including ...