Search Results
https://dev.mysql.com/doc/refman/8.4/en/keywords.html
Certain keywords, such as SELECT, DELETE, or BIGINT, are reserved and require special treatment for use as identifiers such as table and column names. This may also be true for the names of built-in functions. Some keywords which are otherwise ...
https://dev.mysql.com/doc/refman/8.4/en/mysql-cluster-options-variables.html
Frequent changes in ndb_data_node_neighbour are not advisable, since this changes the state of the cluster connection and thus may disrupt the selection algorithm for new transactions from each thread until it stablilizes. This section provides ...
https://dev.mysql.com/doc/refman/8.4/en/mysql-cluster-replication-schema.html
This works for these algorithms since they both map a WRITE_ROW event to an insert or update depending on whether the row already exists, and the required metadata (the “after” image for the timestamp column) is present in the “WRITE_ROW” ...
https://dev.mysql.com/doc/refman/8.4/en/replication-options-replica.html
If it does, the relative part of the path is replaced with the absolute path set using the relay_log system variable. If replica_compressed_protocol is enabled, it takes precedence over any SOURCE_COMPRESSION_ALGORITHMS option specified for the ...
https://dev.mysql.com/doc/workbench/en/wb-data-modeling-menus.html
You can rename or remove (and replace) the initial mydb schema. The Find panel with Find & Replace enabled is shown in the following figure. Figure 9.4 The Find Panel with Find & Replace Find Options The Find dialog options are described in the ...
https://dev.mysql.com/doc/internals/en/transformation-scalar-in.html
The scalar IN subquery will be replaced with an Item_in_optimizer item. If the subquery does not contain HAVING, SUM() function, or GROUP BY (example 2), then: item list will be replaced with 1. To rewrite a scalar IN subquery, the ...
https://dev.mysql.com/doc/mysql-monitor/8.0/en/mem-event-handlers-email-group-controls-reference.html
You can add some, or all, of the following variables to the subject line: {0}: replaced by the alarm level of the event. {1}: replaced by the name of the advisor which generated the alert. {2}: replaced by the name of the server which triggered the ... This section describes the controls on the Email Notification Group ...
https://dev.mysql.com/doc/mysql-monitor/8.0/en/mem-ssh-tunnel.html
Stop the agent and change the hostname value as shown in the following: agent-mgmt-hostname = https://agent_name:password@localhost:18443/ Replace the agent_name and password with suitable values. Likewise replace port 18443 if you are not running ... If you run an SSH server on the machine that hosts the MySQL Enterprise Service Manager and an SSH client on the machine that hosts the agent, you can create an SSH tunnel so that the agent can bypass your ...
https://dev.mysql.com/doc/heatwave/en/mys-hw-auto-unload.html
Overview for Unloading Data Automatically Unloading a table from MySQL HeatWave may be necessary to replace an existing table, to reload a table, to free up memory, or simply to remove a table that is no longer used. mysql> CALL sys.heatwave_unload ... You can use MySQL HeatWave Auto Unload to unload data ...
https://dev.mysql.com/doc/heatwave/en/mys-hw-genai-generate-embeddings.html
Generate a Vector Embedding for Specified Text To generate a vector embedding using MySQL HeatWave GenAI, perform the following steps: To define the text that you want to encode, set the @text variable: mysql>SET @text="TextToEncode"; Replace ...