Search Results
https://dev.mysql.com/doc/heatwave/en/mys-hw-genai-run-chat.html
document_id: name of the optional integer column containing the document IDs. When you run MySQL HeatWave Chat, it automatically loads the default LLM. By default, MySQL HeatWave Chat searches for an answer to a query across all ingested documents ...
https://dev.mysql.com/doc/heatwave/en/mys-hw-lakehouse-error-handling.html
ERROR HY000: Column 1 of {object: "mtrtest/datalake_integer.test_3.tbl" in namespace: "OCI_OBJECT_STORE_SOURCE_NAMESPACE", bucket: "OCI_OBJECT_STORE_SOURCE_BUCKET"} at byte offset 17 : Invalid integer value. Warning 6057 Row 13, char 1, column 1 of ... See MySQL 9.4 Error Message Reference for Lakehouse error ...
https://dev.mysql.com/doc/heatwave/en/mys-hw-option-tracker.html
As of MySQL 9.2.1, the boolean flag used has been replaced with an integer flag usedCounter in the option_tracker_usage_get() and option_tracker_usage_set() functions. The option_tracker_usage_get() function returns a value similar to the following: ... The Option Tracker component provides usage information about different features and components of MySQL ...
https://dev.mysql.com/doc/heatwave/en/mys-hwaml-ml-predict-table.html
Set a positive integer between 1 and the number of rows in the table. Set a positive integer between 1 and the number of rows in the table. ML_PREDICT_TABLE generates predictions for an entire table of unlabeled data. ML_PREDICT_TABLE Overview ...
https://dev.mysql.com/doc/heatwave/en/mys-hwaml-ml-score.html
Set a positive integer between 1 and the number of rows in the table. Set a positive integer between 1 and the number of rows in the table. ML_SCORE scores a model by generating predictions using the feature columns in a labeled dataset as input ...
https://dev.mysql.com/doc/heatwave/en/mys-hwaml-ml-train.html
The default value is 5 and the value must be an integer greater than 0. The default value is 20 and the value must be an integer greater than 0. Run the ML_TRAIN routine on a training dataset to produce a trained machine learning model. MySQL 9.0.0 ...
https://dev.mysql.com/doc/heatwave/en/mys-hwaml-training-an-anomaly-detection-model.html
The default value is 5 and the value must be an integer greater than 0. The default value is 20 and the value must be an integer greater than 0. After preparing the data for an anomaly detection model, you can train the model. Requirements for ...
https://dev.mysql.com/doc/connector-j/en/connector-j-reference-implementation-notes.html
To enable this functionality, create a Statement instance in the following manner: stmt = conn.createStatement(java.sql.ResultSet.TYPE_FORWARD_ONLY, java.sql.ResultSet.CONCUR_READ_ONLY); stmt.setFetchSize(Integer.MIN_VALUE); The combination of a ...
https://dev.mysql.com/doc/connector-j/en/connector-j-reference-jdbc-url-format.html
port is a standard port number, i.e., an integer between 1 and 65535. This section explains the syntax of the URLs for connecting to MySQL. This is the generic format of the connection URL: protocol//[hosts][/database][?properties] The URL consists ...
https://dev.mysql.com/doc/refman/8.4/en/choosing-types.html
For example, if an integer column is used for values in the range from 1 to 99999, MEDIUMINT UNSIGNED is the best type. This enables you to do all calculations with 64-bit integers and then convert results back to floating-point values as necessary.