Search

Download this Manual
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


Displaying 291 to 299 of 299 total results
https://dev.mysql.com/doc/refman/8.0/en/sys-statement-analysis.html
lock_latency The total time waiting for locks by timed occurrences of the statement. The statement_analysis and x$statement_analysis views have these columns: query The normalized statement string. db The default database for the statement, or NULL ...
https://dev.mysql.com/doc/refman/8.0/en/sys-user-summary-by-statement-latency.html
lock_latency The total time waiting for locks by timed statements for the user. The user_summary_by_statement_latency and x$user_summary_by_statement_latency views have these columns: user The client user name. Rows for which the USER column in the ...
https://dev.mysql.com/doc/refman/8.0/en/sys-user-summary-by-statement-type.html
lock_latency The total time waiting for locks by timed occurrences of the statement event for the user. These views summarize information about statements executed, grouped by user and statement type. By default, rows are sorted by user and ...
https://dev.mysql.com/doc/refman/8.0/en/truncate-table.html
Truncation operations cannot be performed if the session holds an active table lock. Logically, TRUNCATE TABLE is similar to a DELETE statement that deletes all rows, or a sequence of DROP TABLE and CREATE TABLE statements. To achieve high ...
https://dev.mysql.com/doc/refman/8.0/en/update-optimization.html
Performing multiple updates together is much quicker than doing one at a time if you lock the table. An update statement is optimized like a SELECT query with the additional overhead of a write. The speed of the write depends on the amount of data ...
https://dev.mysql.com/doc/refman/8.0/en/update.html
This affects only storage engines that use only table-level locking (such as MyISAM, MEMORY, and MERGE). UPDATE is a DML statement that modifies rows in a table. An UPDATE statement can start with a WITH clause to define common table expressions ...
https://dev.mysql.com/doc/refman/8.0/en/upgrading-what-is-upgraded.html
Each table is locked and therefore unavailable to other sessions while it is being processed. Installing a new version of MySQL may require upgrading these parts of the existing installation: The mysql system schema, which contains tables that ...
https://dev.mysql.com/doc/refman/8.0/en/windows-troubleshooting.html
Fatal error: Can't open and lock privilege tables: Table 'mysql.user' doesn't exist These messages often occur when the MySQL base or data directories are installed in different locations than the default locations (C:\Program Files\MySQL\MySQL ...
https://dev.mysql.com/doc/refman/8.0/en/xa-restrictions.html
If two XA transactions committed in parallel on the source are being prepared on the replica in the inverse order, locking dependencies can occur that cannot be safely resolved, and it is possible for replication to fail with deadlock on the replica. XA transaction support is limited to the InnoDB storage ...