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/condition-handling.html
Handlers can be defined for general conditions such as warnings or exceptions, or for specific conditions such as a particular error code. Conditions may arise during stored program execution that require special handling, such as exiting the ...
https://dev.mysql.com/doc/refman/8.0/en/data-masking-component-usage.html
Both functions support an input string that is encoded in any character set: mask_inner() masks the interior of its string argument, leaving the ends unmasked. Thus, even though ssn is defined as VARCHAR(11), if the ssn column has a multibyte ...
https://dev.mysql.com/doc/refman/8.0/en/data-masking-plugin-usage.html
Thus, even though ssn is defined as VARCHAR(11), if the ssn column has a multibyte character set, it may appear to be longer than 11 bytes when passed to a loadable function, and an error occurs. Before using MySQL Enterprise Data Masking and ...
https://dev.mysql.com/doc/refman/8.0/en/derived-tables.html
Before 8.0.14, it produces an error: Unknown column 't1.b' in 'where clause' The optimizer determines information about derived tables in such a way that EXPLAIN does not need to materialize them. For information about lateral derived tables ...
https://dev.mysql.com/doc/refman/8.0/en/example-storage-engine.html
Its purpose is to serve as an example in the MySQL source code that illustrates how to begin writing new storage engines. mysql> CREATE TABLE test (i INT) ENGINE = EXAMPLE; Query OK, 0 rows affected (0.78 sec) mysql> INSERT INTO test ... The EXAMPLE ...
https://dev.mysql.com/doc/refman/8.0/en/fips-mode.html
Important In general, STRICT imposes more restrictions than ON, but MySQL itself has no FIPS-specific code other than to specify the FIPS mode value to OpenSSL. An error occurs for attempts to set the FIPS mode to a different value. MySQL supports ...
https://dev.mysql.com/doc/refman/8.0/en/keyring-okv-plugin.html
C interface: In C-language code, call the keyring service functions described in Section 7.6.9.2, “The Keyring Service”. Note The keyring_okv plugin is an extension included in MySQL Enterprise Edition, a commercial product. The Key Management ...
https://dev.mysql.com/doc/refman/8.0/en/myisamchk-repair-options.html
--recover, -r Command-Line Format --recover Do a repair that can fix almost any problem except unique keys that are not unique (which is an extremely unlikely error with MyISAM tables). --correct-checksum Command-Line Format --correct-checksum ...
https://dev.mysql.com/doc/refman/8.0/en/mysql-cluster-backup-troubleshooting.html
If an error code is returned when issuing a backup request, the most likely cause is insufficient memory or disk space. You should check that there is enough memory allocated for the backup. Important If you have set BackupDataBufferSize and ...
https://dev.mysql.com/doc/refman/8.0/en/mysqlbinlog-row-events.html
These correspond to events with the WRITE_ROWS_EVENT, UPDATE_ROWS_EVENT, and DELETE_ROWS_EVENT type codes. The --base64-output=DECODE-ROWS and --verbose options may be used to affect row event output. This is similar to --base64-output=NEVER but ...