https://dev.mysql.com/windows-start-service.html
Finally, before trying to start the MySQL service, make sure the user variables %TEMP% and %TMP% (and also %TMPDIR%, if it has ever been set) for the operating system user who is to run the service are pointing to a folder to which the user has ...
https://dev.mysql.com/with.html
A common table expression (CTE) is a named temporary result set that exists within the scope of a single statement and that can be referred to later within that statement, possibly multiple times. The following discussion describes how to write ...
https://dev.mysql.com/writing-authentication-plugins.html
The auth_simple_handler member of the general descriptor points to the type-specific descriptor. The generate_authentication_string member of the plugin descriptor takes the password and generates a password hash (digest) from it: The first two ...
https://dev.mysql.com/writing-daemon-plugins.html
The second member of the plugin descriptor, daemon_example_plugin, points to the type-specific daemon plugin descriptor. A daemon plugin is a simple type of plugin used for code that should be run by the server but that does not communicate with it. This section describes how to write a daemon server plugin, using the example plugin found in the plugin/daemon_example directory of MySQL source ...
https://dev.mysql.com/writing-keyring-plugins.html
The keyring_descriptor value in the general descriptor points to the type-specific descriptor. MySQL Server supports a keyring service that enables internal server components and plugins to securely store sensitive information for later retrieval.
https://dev.mysql.com/writing-password-validation-plugins.html
The validate_password_descriptor value in the general descriptor points to the type-specific descriptor. This section describes how to write a server-side password-validation plugin. The instructions are based on the source code in the ...
https://dev.mysql.com/writing-semisynchronous-replication-plugins.html
This section describes how to write server-side semisynchronous replication plugins, using the example plugins found in the plugin/semisync directory of MySQL source distributions. That directory contains the source files for master and slave ...
https://dev.mysql.com/xa-states.html
An XA RECOVER statement at this point will include the transaction's xid value in its output, because XA RECOVER lists all XA transactions that are in the PREPARED state. An XA transaction progresses through the following states: Use XA START to ...
https://dev.mysql.com/xa.html
To carry out a global transaction, it is necessary to know which components are involved, and bring each component to a point when it can be committed or rolled back. Support for XA transactions is available for the InnoDB storage engine. The MySQL ...