PDF (US Ltr)
        - 43.3Mb
                                PDF (A4)
        - 43.4Mb
                                Man Pages (TGZ)
        - 297.1Kb
                                Man Pages (Zip)
        - 402.4Kb
                                Info (Gzip)
        - 4.3Mb
                                Info (Zip)
        - 4.3Mb
                    
            Search Results
                        
                    
                    
            https://dev.mysql.com/doc/refman/8.0/en/load-index.html
                                | ALL } The LOAD INDEX INTO CACHE statement preloads a table index into the key cache to which it has been assigned by an explicit CACHE INDEX statement, or into the default key cache otherwise. LOAD INDEX INTO CACHE applies only to MyISAM tables, ...tbl_index_list: tbl_name [PARTITION (partition_list)] [{INDEX|KEY} (index_name[, index_name] ...)] [IGNORE LEAVES] partition_list: { partition_name[, partition_name] ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/multiple-key-caches.html
                                This feature enables you to assign different table indexes to different key caches. Where there are multiple key caches, the server must know which cache to use when processing queries for a given MyISAM table. By default, all MyISAM table indexes ... Note As of MySQL 8.0, the compound-part structured-variable syntax discussed here for referring to multiple MyISAM key caches is ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/optimize-overview.html
                                 Database performance depends on several factors at the database level, such as tables, queries, and configuration settings. In practice, the advanced InnoDB performance features mean that InnoDB tables often outperform the simpler MyISAM tables, ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/performance-schema-obtaining-parent-events.html
                                Rows of this table have a THREAD_ID column indicating the thread ID of the session that owns the lock, and an EVENT_ID column indicating the Performance Schema event that caused the lock. To find lock information, data_locks is the table containing ...The relation is based on a nested set data model, so the join has several ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/replication-gtids-restrictions.html
                                When using GTIDs, updates to tables using nontransactional storage engines such as MyISAM cannot be made in the same statement or transaction as updates to tables using transactional storage engines such as InnoDB. This restriction is due to the ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/replication-options-reference.html
                                gtid_executed_compression_period: Compress gtid_executed table each time this many transactions have occurred. master_info_repository: Whether to write connection metadata repository, containing source information and replication I/O thread location ... The following two sections provide basic information about the MySQL command-line options and system variables applicable to replication and the binary ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/charset-unicode-sets.html
                                Beginning with MySQL 8.0.28, utf8mb3 is also displayed in place of utf8 in columns of Information Schema tables, and in the output of SQL SHOW statements. To determine the pad attribute for a collation, use the INFORMATION_SCHEMA COLLATIONS table, ... This section describes the collations available for Unicode character sets and their differentiating ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/create-user.html
                                It enables authentication, role, SSL/TLS, resource-limit, password-management, comment, and attribute properties to be established for new accounts. Plugin names are stored in the plugin column of the mysql.user system table. Credentials that are ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/forcing-innodb-recovery.html
                                If you encounter a runaway rollback caused by a failing mass import or ALTER TABLE, you can kill the mysqld process and set innodb_force_recovery to 3 to bring the database up without the rollback, and then DROP the table that is causing the runaway ... To investigate database page corruption, you might dump your tables from the database with SELECT ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/innodb-consistent-read.html
                                Consistent read does not work over ALTER TABLE operations that make a temporary copy of the original table and delete the original table when the temporary copy is built. This exception causes the following anomaly: If you update some rows in a ...