PDF (US Ltr)
        - 35.1Mb
                                PDF (A4)
        - 35.2Mb
                                Man Pages (TGZ)
        - 256.4Kb
                                Man Pages (Zip)
        - 361.2Kb
                                Info (Gzip)
        - 3.4Mb
                                Info (Zip)
        - 3.4Mb
                    
            Search Results
                        
                    
                    
            https://dev.mysql.com/doc/refman/5.7/en/mysqldump-upgrade-testing.html
                                (This is also useful for testing downgrades.) On the production server: $> mysqldump --all-databases --no-data --routines --events > dump-defs.sql On the upgraded server: $> mysql < dump-defs.sql Because the dump file does not contain table data, it ...Then you can dump the database and database object definitions from the production server and load them into the new server to verify that they are handled ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/information-schema-innodb-sys-foreign-table.html
                                The INNODB_SYS_FOREIGN table has these columns: ID The name (not a numeric value) of the foreign key index, preceded by the schema (database) name (for example, test/products_fk).  The INNODB_SYS_FOREIGN table provides metadata about InnoDB foreign ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/begin-end.html
                                END syntax is used for writing compound statements, which can appear within stored programs (stored procedures and functions, triggers, and events). Changing the ; end-of-statement delimiter (for example, to //) permit ; to be used in a program body. This means that no transactional savepoint is set at the start of the instruction block and the BEGIN clause used in this context has no effect on the current ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/cursors.html
                                Cursors have these properties: Asensitive: The server may or may not make a copy of its result table Read only: Not updatable Nonscrollable: Can be traversed only in one direction and cannot skip rows Cursor declarations must appear before handler ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/error-lost-connection.html
                                Sometimes the “during query” form happens when millions of rows are being sent as part of one or more queries. If you know that this is happening, you should try increasing net_read_timeout from its default of 30 seconds to 60 seconds or longer, ...Usually it indicates network connectivity trouble and you should check the condition of your network if this error occurs ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/ipv6-server-config.html
                                 The MySQL server listens on a single network socket for TCP/IP connections. This socket is bound to a single address, but it is possible for an address to map onto multiple network interfaces. To specify an address, set bind_address=addr at server ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/key-cache-block-size.html
                                But setting the size of key nodes equal to the size of the I/O buffer does not always ensure the best overall performance.  It is possible to specify the size of the block buffers for an individual key cache using the key_cache_block_size variable. 
                                            
                https://dev.mysql.com/doc/refman/5.7/en/key-cache-restructuring.html
                                For example: mysql> SET GLOBAL cold_cache.key_buffer_size=4*1024*1024; If you assign to either the key_buffer_size or key_cache_block_size key cache component a value that differs from the component's current value, the server destroys the cache's ...If the cache contains any dirty blocks, the server saves them to disk before destroying and re-creating the ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/local-variable-scope.html
                                 The scope of a local variable is the BEGIN ... The variable can be referred to in blocks nested within the declaring block, except those blocks that declare a variable with the same name. Because local variables are in scope only during stored ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/optimization-indexes.html
                                 The best way to improve the performance of SELECT operations is to create indexes on one or more of the columns that are tested in the query. The index entries act like pointers to the table rows, allowing the query to quickly determine which rows ...Indexes also add to the cost of inserts, updates, and deletes because each index must be ...