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/ipv6-system-support.html
                                As a simple test to determine whether that is true, try this command: $> ping6 ::1 16 bytes from ::1, icmp_seq=0 hlim=64 time=0.171 ms 16 bytes from ::1, icmp_seq=1 hlim=64 time=0.077 ms ...  Before MySQL Server can accept IPv6 connections, the ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/thread-commands.html
                                Fetch The thread is fetching the results from executing a prepared statement. Long Data The thread is retrieving long data in the result of executing a prepared statement. Set option The thread is setting or resetting a client statement execution ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/information-schema-files-table.html
                                MAXIMUM_SIZE For InnoDB: The maximum number of bytes permitted in the file. SELECT FILE_ID, FILE_NAME, FILE_TYPE, TABLESPACE_NAME, FREE_EXTENTS, TOTAL_EXTENTS, EXTENT_SIZE, INITIAL_SIZE, MAXIMUM_SIZE, AUTOEXTEND_SIZE, DATA_FREE, STATUS FROM ... The ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/out-of-memory.html
                                Is it reasonable that it should return so many rows? If not, correct the query and try again. This causes it to use the mysql_use_result() C API function to retrieve the result set, which places less of a load on the client (but more on the server). 
                                            
                https://dev.mysql.com/doc/refman/5.7/en/join.html
                                A trivial example follows: SELECT * FROM (SELECT 1, 2, 3) AS t1; The maximum number of tables that can be referenced in a single join is 61. INNER JOIN and , (comma) are semantically equivalent in the absence of a join condition: both produce a ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/performance-schema-events-stages-history-table.html
                                When the table contains the maximum number of rows for a given thread, the oldest thread row is discarded when a new row for that thread is added.  The events_stages_history table contains the N most recent stage events that have ended per thread. 
                                            
                https://dev.mysql.com/doc/refman/5.7/en/performance-schema-events-statements-history-table.html
                                When the table contains the maximum number of rows for a given thread, the oldest thread row is discarded when a new row for that thread is added.  The events_statements_history table contains the N most recent statement events that have ended per ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/performance-schema-events-transactions-history-table.html
                                When the table contains the maximum number of rows for a given thread, the oldest thread row is discarded when a new row for that thread is added.  The events_transactions_history table contains the N most recent transaction events that have ended ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/performance-schema-events-waits-history-table.html
                                When the table contains the maximum number of rows for a given thread, the oldest thread row is discarded when a new row for that thread is added.  The events_waits_history table contains the N most recent wait events that have ended per thread. 
                                            
                https://dev.mysql.com/doc/refman/5.7/en/alter-function.html
                                 ALTER FUNCTION func_name [characteristic ...] characteristic: { COMMENT 'string' | LANGUAGE SQL | { CONTAINS SQL | NO SQL | READS SQL DATA | MODIFIES SQL DATA } | SQL SECURITY { DEFINER | INVOKER } } This statement can be used to change the ...