Search Results
                    
                    
            https://dev.mysql.com/doc/refman/8.4/en/information-schema-innodb-ft-index-table-table.html
                                 The INNODB_FT_INDEX_TABLE table provides information about the inverted index used to process text searches against the FULLTEXT index of an InnoDB table. Before querying it, set the value of the innodb_ft_aux_table system variable to the name ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/information-schema-optimization.html
                                Some INFORMATION_SCHEMA tables contain columns that provide table statistics: STATISTICS.CARDINALITY TABLES.AUTO_INCREMENT TABLES.AVG_ROW_LENGTH TABLES.CHECKSUM TABLES.CHECK_TIME TABLES.CREATE_TIME TABLES.DATA_FREE TABLES.DATA_LENGTH ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/innodb-compression-tuning.html
                                 Most often, the internal optimizations described in InnoDB Data Storage and Compression ensure that the system runs well with compressed data. However, because the efficiency of compression depends on the nature of your data, you can make decisions ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/innodb-file-per-table-tablespaces.html
                                 A file-per-table tablespace contains data and indexes for a single InnoDB table, and is stored on the file system in a single data file. File-per-table tablespace characteristics are described under the following topics in this section: ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/innodb-information-schema-fulltext_index-tables.html
                                INNODB_FT_BEING_DELETED: Provides a snapshot of the INNODB_FT_DELETED table; it is used only during an OPTIMIZE TABLE maintenance operation. When OPTIMIZE TABLE is run, the INNODB_FT_BEING_DELETED table is emptied, and DOC_ID values are removed from ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/innodb-online-ddl-operations.html
                                Dropping a column default value ALTER TABLE tbl ALTER COLUMN col DROP DEFAULT, ALGORITHM=INSTANT; Changing the auto-increment value ALTER TABLE table AUTO_INCREMENT=next_value, ALGORITHM=INPLACE, LOCK=NONE; Modifies a value stored in memory, not the ... Online support details, syntax examples, and usage notes for DDL operations are provided under the following topics in this ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/innodb-parameters.html
                                For the characteristics of each lock mode, see InnoDB AUTO_INCREMENT Lock Modes.  InnoDB Startup Options InnoDB System Variables System variables that are true or false can be enabled at server startup by naming them, or disabled by using a --skip- ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/innodb-persistent-stats.html
                                 The persistent optimizer statistics feature improves plan stability by storing statistics to disk and making them persistent across server restarts so that the optimizer is more likely to make consistent choices each time for a given query. 
                                            
                https://dev.mysql.com/doc/refman/8.4/en/innodb-row-format.html
                                 The row format of a table determines how its rows are physically stored, which in turn can affect the performance of queries and DML operations. As more rows fit into a single disk page, queries and index lookups can work faster, less cache memory ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/innodb-troubleshooting-datadict.html
                                 Information about table definitions is stored in the InnoDB data dictionary. If you move data files around, dictionary data can become inconsistent. If a data dictionary corruption or consistency issue prevents you from starting InnoDB, see Section ...