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/innodb-information-schema-understanding-innodb-locking.html
                                 Note This section describes locking information as exposed by the Performance Schema data_locks and data_lock_waits tables, which supersede the INFORMATION_SCHEMA INNODB_LOCKS and INNODB_LOCK_WAITS tables in MySQL 8.0. For similar discussion ...At ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/innodb-limits.html
                                 This section describes limits for InnoDB tables, indexes, tablespaces, and other aspects of the InnoDB storage engine. The index key prefix length limit is 3072 bytes for InnoDB tables that use DYNAMIC or COMPRESSED row format. The index key prefix ...For example, you might hit this limit with a column prefix index of more than 191 characters on a TEXT or VARCHAR column, assuming a utf8mb4 character set and the maximum of 4 bytes for each ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/innodb-undo-logs.html
                                Rollback segments reside in undo tablespaces and in the global temporary tablespace. Undo logs that reside in the global temporary tablespace are used for transactions that modify data in user-defined temporary tables. Each undo tablespace and the ... An undo log is a collection of undo log records associated with a single read-write ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/mysqlbinlog-row-events.html
                                # at 218 #080828 15:03:08 server id 1 end_log_pos 258 Write_rows: table id 17 flags: STMT_END_F BINLOG ' fAS3SBMBAAAALAAAANoAAAAAABEAAAAAAAAABHRlc3QAAXQAAwMPCgIUAAQ= fAS3SBcBAAAAKAAAAAIBAAAQABEAAAAAAAEAA//8AQAAAAVhcHBsZQ== '/*!*/; ... # at 302 ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/order-by-optimization.html
                                Whether the optimizer actually does so depends on whether reading the index is more efficient than a table scan if columns not in the index must also be read. In that case, scanning an entire index and looking up table rows to find columns not in ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/partitioning-hash.html
                                To partition a table using HASH partitioning, it is necessary to append to the CREATE TABLE statement a PARTITION BY HASH (expr) clause, where expr is an expression that returns an integer. In addition, you most likely want to follow this with ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/partitioning-subpartitions.html
                                 Subpartitioning—also known as composite partitioning—is the further division of each partition in a partitioned table. Consider the following CREATE TABLE statement: CREATE TABLE ts (id INT, purchased DATE) PARTITION BY RANGE( YEAR(purchased) ) ...Each of these partitions—p0, p1, and p2—is further divided into 2 ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/performance-schema-restrictions.html
                                If you save event information in another table, you should not assume that the original events remain available later. For example, if you select events from a performance_schema table into a temporary table, intending to join that table with the ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/performance-schema-thread-filtering.html
                                 The threads table contains a row for each server thread. For the Performance Schema to monitor a thread, these things must be true: The thread_instrumentation consumer in the setup_consumers table must be YES. Monitoring occurs only for those ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/privilege-changes.html
                                 If the mysqld server is started without the --skip-grant-tables option, it reads all grant table contents into memory during its startup sequence. The in-memory tables become effective for access control at that point. If you modify the grant ...