Search Results
https://dev.mysql.com/doc/heatwave/en/mys-hwaml-nl2ml.html
response: The name of the JSON object session variable that contains the response to the question. The nl2ml_options Session Variable The @nl2ml_options session variable allows you to do the following: Set the skip_generate option to true or false.
https://dev.mysql.com/doc/heatwave/en/mys-hwaml-training-a-recommendation-model.html
The TwoTower model is a deep learning recommender system pipeline that provides enhanced quality and faster speed than other recommender training models. Optionally, set the value of the session variable, which sets the model handle to this same ...
https://dev.mysql.com/doc/mysql-ai/9.7/en/mys-ai-aml-training-a-recommendation-model.html
The TwoTower model is a deep learning recommender system pipeline that provides enhanced quality and faster speed than other recommender training models. Optionally, set the value of the session variable, which sets the model handle to this same ...
https://dev.mysql.com/doc/heatwave/en/mys-hw-genai-generate-embeddings.html
Note In versions older than MySQL 9.2.1, to alter an existing table or create a new table, MySQL requires you to set the sql-require-primary-key system variable to 0. Generate a Vector Embedding for Specified Text To generate a vector embedding ...
https://dev.mysql.com/doc/refman/9.7/en/create-view.html
Within a stored program, the SELECT statement cannot refer to program parameters or local variables. CREATE [OR REPLACE] [ALGORITHM = {UNDEFINED | MERGE | TEMPTABLE}] [MATERIALIZED] ... If the view does not exist, CREATE OR REPLACE VIEW is the same ...
https://dev.mysql.com/doc/refman/9.7/en/innodb-performance-read_ahead.html
You can set the value of this parameter in the MySQL configuration file, or change it dynamically with the SET GLOBAL statement, which requires privileges sufficient to set global system variables. To enable this feature, set the configuration ... A ...
https://dev.mysql.com/doc/workbench/en/wb-extending.html
MySQL Workbench provides an extension and scripting system that enables the developer to extend MySQL Workbench capabilities. The extension system enables the following capabilities: Automate common tasks Extend the Workbench user-interface Create ...While the core of MySQL Workbench is developed using C++, it is possible to harness this core functionality using the Python scripting ...
https://dev.mysql.com/doc/workbench/en/wb-performance-explain.html
The visual explain feature generates and displays a visual representation of the MySQL EXPLAIN statement by using extended information available in the extended JSON format. MySQL Workbench provides all of the EXPLAIN formats for executed queries ...
https://dev.mysql.com/doc/connectors/en/connector-j-usagenotes-last-insert-id.html
getGeneratedKeys() is the preferred method to use if you need to retrieve AUTO_INCREMENT keys and through JDBC; this is illustrated in the first example below. The second example shows how you can retrieve the same value using a standard SELECT ...
https://dev.mysql.com/doc/connectors/en/connector-j-usagenotes-statements.html
Statement objects allow you to execute basic SQL queries and retrieve the results through the ResultSet class, which is described later. To create a Statement instance, you call the createStatement() method on the Connection object you have ...