Search Results
https://dev.mysql.com/doc/extending-mysql/9.7/en/plugin-api-components.html
The WITH PARSER clause for full-text index creation associates a full-text parser plugin with a given FULLTEXT index. SQL statements: INSTALL PLUGIN registers a plugin in the mysql.plugin table and loads the plugin code. UNINSTALL PLUGIN unregisters ...
https://dev.mysql.com/doc/extending-mysql/9.7/en/plugin-data-structures.html
For example, a full-text parser plugin has initialization and deinitialization functions, and a main parsing function. The server invokes these functions when it uses the plugin to parse text. A plugin library file includes descriptor information ...
https://dev.mysql.com/doc/extending-mysql/9.7/en/writing-audit-plugins.html
release_thd: A function that the server calls to inform the plugin that it is being dissociated from its thread context. They are called within the context of a specific thread, and a thread might perform an activity that produces several event ...
https://dev.mysql.com/doc/mysql-ai/9.7/en/mys-ai-aml-learn-with-genai.html
Use GROUP_CONCAT() to build a compact context string from the citations provided by NL2ML. Use ML_GENERATE to specify the in-database LLM and generate the response to the question, which includes the citations, context, and retrieved table schema.
https://dev.mysql.com/doc/mysql-ai/9.7/en/mys-ai-aml-prepare-an-anomaly-detection-model.html
mysql> CREATE TABLE training_data ( log_id INT AUTO_INCREMENT PRIMARY KEY, log_message TEXT, timestamp DATETIME, target TINYINT ); Insert the sample data to be trained into the table. mysql> CREATE TABLE testing_data ( log_id INT AUTO_INCREMENT ...
https://dev.mysql.com/doc/mysql-ai/9.7/en/mys-ai-aml-topic-modeling-train.html
document_column: Define the column that contains the text that the model uses to generate topics and tags as output. The output is an array of word groups that best characterize the text. After preparing the data for topic modeling, you can train ...
https://dev.mysql.com/doc/mysql-ai/9.7/en/mys-ai-aml-using-an-anomaly-detection-model.html
Options for Anomaly Detection on Log Data When you run anomaly detection on log data, you have the option to leverage the GenAI feature of MySQL AI for textual summaries of the results. JSON_OBJECT('logad_options', JSON_OBJECT('summarize_logs', ...
https://dev.mysql.com/doc/mysql-ai/9.7/en/mys-mysqlai-vector-store-load.html
language: specifies the text content language used in the files to be ingested into the vector store. embed_model_id: specifies the embedding model to use for encoding the text. The VECTOR_STORE_LOAD routine generates vector embedding for the ...
https://dev.mysql.com/doc/relnotes/mysql/9.7/en/news-9-3-0.html
(WL #16737) JSON Notes It was possible to create a table including a JSON column with DEFAULT '' under the default sql_mode, but the output from SHOW CREATE TABLE for this table, when run on another mysqld, resulted in the error BLOB, TEXT, GEOMETRY ...(Bug #37570206) Audit Log Notes <COMMAND_CLASS> was not populated for ...
https://dev.mysql.com/doc/workbench/en/dbdoc-templates-markers.html
These markers can be used in any template, including custom templates. Using the table The table shows which variables are defined in which sections. The variable should be used in its correct section or its value will not be displayed. If a ...