PDF (US Ltr)
- 43.2Mb
PDF (A4)
- 43.3Mb
Man Pages (TGZ)
- 295.2Kb
Man Pages (Zip)
- 400.4Kb
Info (Gzip)
- 4.3Mb
Info (Zip)
- 4.3Mb
Search Results
https://dev.mysql.com/doc/refman/8.0/en/show-procedure-status.html
It returns characteristics of a stored procedure, such as the database, name, type, creator, creation and modification dates, and character set information. Stored routine information is also available from the INFORMATION_SCHEMA PARAMETERS and ...
https://dev.mysql.com/doc/refman/8.0/en/version-tokens.html
MySQL includes Version Tokens, a feature that enables creation of and synchronization around server tokens that applications can use to prevent accessing incorrect or out-of-date data. An application can use token locks to indicate to other ...The ...
https://dev.mysql.com/doc/refman/8.0/en/apis-perl.html
These sections contain information about using Perl with MySQL and writing MySQL applications in Perl: For installation instructions for Perl DBI support, see Section 2.10, “Perl Installation Notes”. For printed information, the official DBI ...
https://dev.mysql.com/doc/refman/8.0/en/begin-end.html
END syntax is used for writing compound statements, which can appear within stored programs (stored procedures and functions, triggers, and events). A compound statement can contain multiple statements, enclosed by the BEGIN and END keywords. In the ...statement_list represents a list of one or more statements, each terminated by a semicolon (;) statement ...
https://dev.mysql.com/doc/refman/8.0/en/binary-log-mysql-database.html
This pertains to statements such as INSERT, UPDATE, DELETE, REPLACE, DO, LOAD DATA, SELECT, and TRUNCATE TABLE. The CREATE TABLE part is logged using statement format and the SELECT part is logged according to the value of binlog_format. The ...
https://dev.mysql.com/doc/refman/8.0/en/charset-asian-sets.html
The Asian character sets that we support include Chinese, Japanese, Korean, and Thai. For example, the Chinese sets must allow for thousands of different characters. See Section 12.10.7.1, “The cp932 Character Set”, for additional information ...
https://dev.mysql.com/doc/refman/8.0/en/charset-configuration.html
The MySQL server has a compiled-in default character set and collation. To change these defaults, use the --character-set-server and --collation-server options when you start the server. However, when character_set_system differs from ...The ...
https://dev.mysql.com/doc/refman/8.0/en/charset-unicode-utf8mb4.html
The utf8mb4 character set has these characteristics: Supports BMP and supplementary characters. utf8mb4 contrasts with the utf8mb3 character set, which supports only BMP characters and uses a maximum of three bytes per character: For a BMP ...For a ...
https://dev.mysql.com/doc/refman/8.0/en/constraints.html
We must handle the case when you have inserted or updated a lot of rows in a nontransactional table for which changes cannot be rolled back when an error occurs. MySQL enables you to work both with transactional tables that permit rollback and with ...We do this in most cases, but not yet for ...
https://dev.mysql.com/doc/refman/8.0/en/create-role.html
A role when created is locked, has no password, and is assigned the default authentication plugin. (These role attributes can be changed later with the ALTER USER statement, by users who have the global CREATE USER privilege.) CREATE ROLE either ...