PDF (US Ltr)
- 35.1Mb
PDF (A4)
- 35.2Mb
Man Pages (TGZ)
- 256.4Kb
Man Pages (Zip)
- 361.2Kb
Info (Gzip)
- 3.4Mb
Info (Zip)
- 3.4Mb
Search Results
https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html
JSON_INSERT(json_doc, path, val[, path, val] ...) Inserts data into a JSON document and returns the result. The functions in this section modify JSON values and return the result. JSON_APPEND(json_doc, path, val[, path, val] ...) Appends values to ...
https://dev.mysql.com/doc/refman/5.7/en/json-utility-functions.html
This section documents utility functions that act on JSON values, or strings that can be parsed as JSON values. JSON_PRETTY() prints out a JSON value in a format that is easy to read. JSON_STORAGE_SIZE() shows the amount of storage space used by a ...
https://dev.mysql.com/doc/refman/5.7/en/keyring-functions-general-purpose.html
INTO @var_name and test the variable value: mysql> SELECT keyring_key_generate('', '', -1) INTO @x; ERROR 3188 (HY000): Function 'keyring_key_generate' failed because underlying keyring service returned an error. mysql> SELECT @x; +------+ | @x | ...
https://dev.mysql.com/doc/refman/5.7/en/keyring-okv-plugin.html
Use this openssl command to decrypt the private key and create a file named key.pem: openssl pkcs8 -in private_key_pkcs8.pem -out key.pem Copy the key.pem file into the ssl directory. Note The keyring_okv plugin is an extension included in MySQL ...
https://dev.mysql.com/doc/refman/5.7/en/keyring-service.html
The function stores into it a pointer to a null-terminated string that provides additional information about the key (stored when the key was added). The function stores into it a pointer to the buffer containing the fetched key data. key_len: The ... MySQL Server supports a keyring service that enables internal server components and plugins to securely store sensitive information for later ...
https://dev.mysql.com/doc/refman/5.7/en/keyring-system-variables.html
See the description of that variable for details, as well as for considerations to take into account if you create the directory manually. If the file does exist, keyring_aws reads any encrypted keys contained in the file into its in-memory cache.
https://dev.mysql.com/doc/refman/5.7/en/ldap-pluggable-authentication.html
The client-side mysql_clear_password plugin is built into the libmysqlclient client library. The client-side SASL LDAP plugin is included in all distributions, including community distributions, and, as mentioned previously, the client-side ... Note ...
https://dev.mysql.com/doc/refman/5.7/en/linux-installation-native.html
For Red Hat and similar distributions, the MySQL distribution is divided into a number of separate packages, mysql for the client tools, mysql-server for the server and associated tools, and mysql-libs for the libraries. An init script, to start and ... Many Linux distributions include a version of the MySQL server, client tools, and development components in their native software repositories and can be installed with the platforms' standard package management ...
https://dev.mysql.com/doc/refman/5.7/en/manual-info.html
For example, while working with replication the commands might be prefixed with source and replica: source> type a mysql statement on the replication source here replica> type a mysql statement on the replica here Database, table, and column names ... This is the Reference Manual for the MySQL Database System, version 5.7, through release ...
https://dev.mysql.com/doc/refman/5.7/en/memory-storage-engine.html
Deleted rows are put in a linked list and are reused when you insert new data into the table. For example, you can put statements such as INSERT INTO ... SELECT or LOAD DATA into a file to load the table from a persistent data source, and use ...