Search Results
https://dev.mysql.com/doc/refman/8.4/en/fulltext-stopwords.html
The following example demonstrates creating and configuring a new global stopword table for InnoDB. 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 ...
https://dev.mysql.com/doc/refman/8.4/en/partitioning-key.html
PARTITION BY KEY are similar to those for creating a table that is partitioned by hash. In both of these cases, the partitioning key is the id column, even though it is not shown in the output of SHOW CREATE TABLE or in the PARTITION_EXPRESSION ...
https://dev.mysql.com/doc/refman/8.4/en/pluggable-authentication.html
For example, plugins can be created to use external authentication methods such as PAM, Windows login IDs, LDAP, or Kerberos. The Default Authentication Plugin The CREATE USER and ALTER USER statements have syntax for specifying how an account ...
https://dev.mysql.com/doc/refman/8.4/en/resource-groups.html
MySQL supports creation and management of resource groups, and permits assigning threads running within the server to particular groups so that threads execute according to the resources available to the group. For example, to manage execution of ...Group attributes enable control over its resources, to enable or restrict resource consumption by threads in the ...
https://dev.mysql.com/doc/refman/8.4/en/stored-objects.html
Stored objects include these object types: Stored procedure: An object created with CREATE PROCEDURE and invoked using the CALL statement. Stored function: An object created with CREATE FUNCTION and used much like a built-in function. Trigger: An ...
https://dev.mysql.com/doc/refman/8.4/en/sys-statement-performance-analyzer.html
Creates a report of the statements running on the server. Parameters in_action ENUM('snapshot', 'overall', 'delta', 'create_tmp', 'create_table', 'save', 'cleanup'): The action to take. If in_table is NULL and no snapshot exists, a new snapshot is ...The views are calculated based on the overall and/or delta ...
https://dev.mysql.com/doc/mysql-shell/9.4/en/mysql-connections-in-javascript-and-python.html
You can use functions available in JavaScript and Python mode to create multiple session objects of your chosen types and assign them to variables. Functions to create session objects are available in the mysqlx and mysql JavaScript and Python ...
https://dev.mysql.com/doc/mysql-ai/9.4/en/mys-ai-genai-generate-embeddings.html
Using this method, you can create vector embedding tables that you can use to perform similarity searches using the DISTANCE() function, without setting up a vector store. To learn how to create vector embeddings for unstructured data, see Section ... This section describes how to generate vector embeddings using the ML_EMBED_ROW ...
https://dev.mysql.com/doc/refman/8.4/en/innodb-standard-monitor.html
The contents include the current log sequence number, how far the log has been flushed to disk, and the position at which InnoDB last took a checkpoint. The Lock Monitor is the same as the Standard Monitor except that it includes additional lock ...
https://dev.mysql.com/doc/refman/8.4/en/installing-source-distribution.html
Create the directory and go there: $> mkdir bld $> cd bld Configure the build directory. To do this, starting with mysql-src as your current working directory, create the directory build and then go there: $> mkdir build $> cd build Configure the ...