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/charset-unicode.html
The Unicode Standard includes characters from the Basic Multilingual Plane (BMP) and supplementary characters that lie outside the BMP. For information about the Unicode Standard itself, visit the Unicode Consortium website. BMP characters have ...
https://dev.mysql.com/doc/refman/8.0/en/general-thread-states.html
This state is used even if the table could not be created due to some error. Repair by sorting The repair code is using a sort to create indexes. Repair with keycache The repair code is using creating keys one by one through the key cache. The ...
https://dev.mysql.com/doc/refman/8.0/en/keyring-hashicorp-plugin.html
C interface: In C-language code, call the keyring service functions described in Section 7.6.9.2, “The Keyring Service”. Note If you do not set the mandatory system variables at server startup, or if some other plugin initialization error ...
https://dev.mysql.com/doc/refman/8.0/en/mysql-shell-tutorial-javascript-collections-add.html
mysql-js> db.countryinfo.add( { GNP: .6, IndepYear: 1967, Name: "Sealand", Code: "SEA", demographics: { LifeExpectancy: 79, Population: 27 }, geography: { Continent: "Europe", Region: "British Islands", SurfaceArea: 193 }, government: { ... To work ...
https://dev.mysql.com/doc/refman/8.0/en/mysql-shell-tutorial-python-documents-add.html
mysql-py> db.countryinfo.add( { "GNP": .6, "IndepYear": 1967, "Name": "Sealand", "Code:": "SEA", "demographics": { "LifeExpectancy": 79, "Population": 27 }, "geography": { "Continent": "Europe", "Region": "British Islands", "SurfaceArea": 193 }, ...
https://dev.mysql.com/doc/refman/8.0/en/restart.html
If no monitoring process is present, RESTART fails with an error. When mysqld performs a shutdown due to use of the RESTART statement, it returns exit code 16. When the monitoring process detects an exit code of 16, it starts mysqld again. One use ...
https://dev.mysql.com/doc/refman/8.0/en/show.html
SHOW has many forms that provide information about databases, tables, columns, or status information about the server. The pattern is useful for restricting statement output to matching values. Several SHOW statements also accept a WHERE clause ...
https://dev.mysql.com/doc/refman/8.0/en/string-type-syntax.html
In this case, comparison and sorting are based on numeric character code values. Supported in older MySQL releases, UNICODE is deprecated in MySQL 8.0.28 and later; use CHARACTER SET instead. For the CHAR, VARCHAR, TEXT, ENUM, and SET data types, ...
https://dev.mysql.com/doc/refman/8.0/en/charset-collation-implementations.html
MySQL implements several types of collations: Simple collations for 8-bit character sets This kind of collation is implemented using an array of 256 weights that defines a one-to-one mapping from character codes to weights. Collations for ...It is ...
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 ...