PDF (US Ltr)
- 43.3Mb
PDF (A4)
- 43.4Mb
Man Pages (TGZ)
- 297.2Kb
Man Pages (Zip)
- 402.4Kb
Info (Gzip)
- 4.3Mb
Info (Zip)
- 4.3Mb
Search Results
https://dev.mysql.com/doc/refman/8.0/en/keyring-aws-plugin.html
Each keyring operation is transactional: keyring_aws either successfully changes both the in-memory key cache and the keyring storage file, or the operation fails and the keyring state remains unchanged. Note The keyring_aws plugin is an extension ...
https://dev.mysql.com/doc/refman/8.0/en/keyring-component-installation.html
Although global and local manifest files are located in different directories, the file name is mysqld.my in both locations. Keyring service consumers require that a keyring component or plugin be installed: To use a keyring component, begin with ...
https://dev.mysql.com/doc/refman/8.0/en/keyring-hashicorp-plugin.html
This file is used both by HashiCorp Vault server and the keyring_hashicorp plugin. Note The keyring_hashicorp plugin is an extension included in MySQL Enterprise Edition, a commercial product. The keyring_hashicorp keyring plugin communicates with ...
https://dev.mysql.com/doc/refman/8.0/en/keyring-oci-component.html
Although global and local configuration files are located in different directories, the file name is component_keyring_oci.cnf in both locations. Note The Oracle Cloud Infrastructure Vault keyring component is included in MySQL Enterprise Edition, ...
https://dev.mysql.com/doc/refman/8.0/en/keyring-okv-plugin.html
Both the okvclient.ora file and ssl directory with the certificate and key files are required for keyring_okv to work properly. Note The keyring_okv plugin is an extension included in MySQL Enterprise Edition, a commercial product. The Key ...
https://dev.mysql.com/doc/refman/8.0/en/keyring.html
Keyring components and plugins both manage keyring data but are configured differently and may have operational differences (see Section 8.4.4.1, “Keyring Components Versus Keyring Plugins”). MySQL Server supports a keyring that enables ...
https://dev.mysql.com/doc/refman/8.0/en/known-issues.html
Numeric calculations are done with BIGINT or DOUBLE (both are normally 64 bits long). This section lists known issues in recent versions of MySQL. For information about platform-specific issues, see the installation and debugging instructions in ...
https://dev.mysql.com/doc/refman/8.0/en/load-data-local-security.html
The LOAD DATA statement loads a data file into a table. The statement can load a file located on the server host, or, if the LOCAL keyword is specified, on the client host. In theory, a patched server could tell the client program to transfer a ...
https://dev.mysql.com/doc/refman/8.0/en/load-xml.html
The tagname in the optional ROWS IDENTIFIED BY clause must also be given as a literal string, and must be surrounded by angle brackets (< and >). LOAD XML acts as the complement of running the mysql client in XML output mode (that is, starting the ...
https://dev.mysql.com/doc/refman/8.0/en/locking-functions.html
For example, suppose that you execute these statements: SELECT GET_LOCK('lock1',10); SELECT GET_LOCK('lock2',10); SELECT RELEASE_LOCK('lock2'); SELECT RELEASE_LOCK('lock1'); The second GET_LOCK() acquires a second lock and both RELEASE_LOCK() calls ...While held by one session, other sessions cannot obtain a lock of the same ...