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/mysqlshow.html
                                 The mysqlshow client can be used to quickly see which databases exist, their tables, or a table's columns or indexes. The same information can be obtained by using those statements directly. For example, you can issue them from the mysql client ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/mysqlslap.html
                                 mysqlslap is a diagnostic program designed to emulate client load for a MySQL server and to report the timing of each stage. Invoke mysqlslap like this: mysqlslap [options] Some options such as --create or --query enable you to specify a string ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/nonpersistible-system-variables.html
                                 SET PERSIST and SET PERSIST_ONLY enable global system variables to be persisted to the mysqld-auto.cnf option file in the data directory (see Section 15.7.6.1, “SET Syntax for Variable Assignment”). However, not all system variables can be ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/null-values.html
                                 The NULL value means “no data.” NULL can be written in any lettercase. Be aware that the NULL value is different from values such as 0 for numeric types or the empty string for string types. For text file import or export operations performed ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/numeric-type-syntax.html
                                 For integer data types, M indicates the minimum display width. Display width is unrelated to the range of values a type can store, as described in Section 13.1.6, “Numeric Type Attributes”. For floating-point and fixed-point data types, M is ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/optimize-blob.html
                                 When storing a large blob containing textual data, consider compressing it first. Do not use this technique when the entire table is compressed by InnoDB or MyISAM. For a table with several columns, to reduce memory requirements for queries that do ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/optimize-table.html
                                OPTIMIZE TABLE reorganizes the physical storage of table data and associated index data, to reduce storage space and improve I/O efficiency when accessing the table. The exact changes made to each table depend on the storage engine used by that ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/optimizing-innodb-bulk-data-loading.html
                                 These performance tips supplement the general guidelines for fast inserts in Section 10.2.5.1, “Optimizing INSERT Statements”. When importing data into InnoDB, turn off autocommit mode, because it performs a log flush to disk for every insert. 
                                            
                https://dev.mysql.com/doc/refman/8.0/en/optimizing-innodb-storage-layout.html
                                 Once your data reaches a stable size, or a growing table has increased by tens or some hundreds of megabytes, consider using the OPTIMIZE TABLE statement to reorganize the table and compact any wasted space. The reorganized tables require less disk ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/optimizing-queries-myisam.html
                                 Some general tips for speeding up queries on MyISAM tables: To help MySQL better optimize queries, use ANALYZE TABLE or run myisamchk --analyze on a table after it has been loaded with data. This updates a value for each index part that indicates ...