Search Results
https://dev.mysql.com/doc/refman/8.4/en/reproducible-test-case.html
For information about steps to take when encountering InnoDB table corruption, see Section 1.6, “How to Report Bugs or Problems”. If you encounter corrupted MyISAM tables or if mysqld always fails after some update statements, you can test ...
https://dev.mysql.com/doc/refman/8.4/en/source-installation-doxygen.html
It is also possible to generate this content locally from a MySQL source distribution using the following procedure: Install doxygen 1.9.2 or later. The MySQL source code contains internal documentation written using Doxygen. After installing ...
https://dev.mysql.com/doc/refman/8.4/en/source-ssl-library-configuration.html
To compile using OpenSSL, use this procedure: Ensure that OpenSSL 1.0.1 or newer is installed on your system. An SSL library is required for support of encrypted connections, entropy for random number generation, and other encryption-related ...
https://dev.mysql.com/doc/refman/8.4/en/statement-labels.html
[begin_label:] BEGIN [statement_list] END [end_label] [begin_label:] LOOP statement_list END LOOP [end_label] [begin_label:] REPEAT statement_list UNTIL search_condition END REPEAT [end_label] [begin_label:] WHILE search_condition DO statement_list ...
https://dev.mysql.com/doc/refman/8.4/en/symbolic-links-to-databases.html
On Unix, symlink a database using this procedure: Create the database using CREATE DATABASE: mysql> CREATE DATABASE mydb1; Using CREATE DATABASE creates the database in the MySQL data directory and permits the server to update the data dictionary ...Stop the server to ensure that no activity occurs in the new database while it is being ...
https://dev.mysql.com/doc/refman/8.4/en/sys-schema-object-overview.html
object_type The object type: BASE TABLE, INDEX (index_type), EVENT, FUNCTION, PROCEDURE, TRIGGER, VIEW. This view summarizes the types of objects within each schema. Note For MySQL instances with a large number of objects, this view might take a ...
https://dev.mysql.com/doc/refman/8.4/en/table-cache.html
When the table cache fills up, the server uses the following procedure to locate a cache entry to use: Tables not currently in use are released, beginning with the table least recently used. When you execute a mysqladmin status command, you should ...
https://dev.mysql.com/doc/refman/8.4/en/upgrade-best-practices.html
MySQL supports upgrading between minor versions (within an LTS series) and to the next major version (across an LTS series). LTS releases have 8+ years of support and are meant for production use. Performing a minor version upgrade is ...
https://dev.mysql.com/doc/refman/8.4/en/using-stack-trace.html
On some operating systems, the error log contains a stack trace if mysqld dies unexpectedly. You can use this to find out where (and maybe why) mysqld died. To get a stack trace, you must not compile mysqld with the -fomit-frame-pointer option to ...
https://dev.mysql.com/doc/refman/8.4/en/using-systemd.html
If you install MySQL from a source distribution on a platform that uses systemd, obtain systemd support for MySQL by configuring the distribution using the -DWITH_SYSTEMD=1 CMake option. The following discussion covers these topics: Overview of ...