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/information-schema-role-column-grants-table.html
                                 The ROLE_COLUMN_GRANTS table (available as of MySQL 8.0.19) provides information about the column privileges for roles that are available to or granted by the currently enabled roles. The ROLE_COLUMN_GRANTS table has these columns: GRANTOR The user ...GRANTOR_HOST The host name part of the account that granted the ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/information-schema-tablespaces-extensions-table.html
                                 The TABLESPACES_EXTENSIONS table (available as of MySQL 8.0.21) provides information about tablespace attributes defined for primary storage engines. The TABLESPACES_EXTENSIONS table has these columns: TABLESPACE_NAME The name of the tablespace. 
                                            
                https://dev.mysql.com/doc/refman/8.0/en/information-schema-view-routine-usage-table.html
                                 The VIEW_ROUTINE_USAGE table (available as of MySQL 8.0.13) provides access to information about stored functions used in view definitions. The table does not list information about built-in (native) functions or loadable functions used in the ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/optimize-multi-tables.html
                                 Some techniques for keeping individual queries fast involve splitting data across many tables. When the number of tables runs into the thousands or even millions, the overhead of dealing with all these tables becomes a new performance consideration. 
                                            
                https://dev.mysql.com/doc/refman/8.0/en/performance-schema-innodb-redo-log-files-table.html
                                 The innodb_redo_log_files table contains a row for each active InnoDB redo log file. The innodb_redo_log_files table has the following columns: FILE_ID The ID of the redo log file. FILE_NAME The path and file name of the redo log file. START_LSN ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/performance-schema-instance-tables.html
                                They provide event names and explanatory notes or status information: cond_instances: Condition synchronization object instances file_instances: File instances mutex_instances: Mutex synchronization object instances rwlock_instances: Lock ...There ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/performance-schema-lock-tables.html
                                 The Performance Schema exposes lock information through these tables: data_locks: Data locks held and requested data_lock_waits: Relationships between data lock owners and data lock requestors blocked by those owners metadata_locks: Metadata locks ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/federated-create-server.html
                                 If you are creating a number of FEDERATED tables on the same server, or if you want to simplify the process of creating FEDERATED tables, you can use the CREATE SERVER statement to define the server connection parameters, just as you would with the ...For more information on CREATE SERVER, see Section 15.1.18, “CREATE SERVER ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/mysql-cluster-programs-ndbinfo-select-all.html
                                 ndbinfo_select_all is a client program that selects all rows and columns from one or more tables in the ndbinfo database Not all ndbinfo tables available in the mysql client can be read by this program (see later in this section). In addition, ...
                                            
                https://dev.mysql.com/doc/refman/8.0/en/innodb-online-ddl-single-multi.html
                                 Before the introduction of online DDL, it was common practice to combine many DDL operations into a single ALTER TABLE statement. Because each ALTER TABLE statement involved copying and rebuilding the table, it was more efficient to make several ...