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/constraint-invalid-data.html
                                MySQL permits you to store certain incorrect date values into DATE and DATETIME columns (such as '2000-02-31' or '2000-02-00'). If you try to store NULL into a column that does not take NULL values, an error occurs for single-row INSERT statements. 
                                            
                https://dev.mysql.com/doc/refman/5.7/en/mysql-cluster-tcp-definition.html
                                (NDB 7.5.0) If this parameter and Checksum are both enabled, perform pre-send checksum checks, and check all TCP signals between nodes for errors. The minimum possible value is 16KB; the theoretical maximum is 4GB. When this buffer reaches 64KB its ... TCP/IP is the default transport mechanism for all connections between nodes in an NDB ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/gtid-functions.html
                                WAIT_UNTIL_SQL_THREAD_AFTER_GTIDS(gtid_set[, timeout][,channel]) WAIT_UNTIL_SQL_THREAD_AFTER_GTIDS() is similar to WAIT_FOR_EXECUTED_GTID_SET() in that it waits until all of the transactions whose global transaction identifiers are contained in ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/partitioning-limitations-storage-engines.html
                                It is not possible under normal circumstances in NDB Cluster to create an NDB Cluster table using any partitioning type other than [LINEAR] KEY, and attempting to do so fails with an error. The maximum number of partitions that can be defined for an ... The following limitations apply to the use of storage engines with user-defined partitioning of ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/postinstallation.html
                                Optionally, populate time zone tables to enable recognition of named time zones.  This section discusses tasks that you should perform after installing MySQL: If necessary, initialize the data directory and create the MySQL grant tables. For some ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/sys-ps-setup-show-disabled-instruments.html
                                 Displays all currently disabled Performance Schema instruments. This might be a long list. Parameters None. Example mysql> CALL sys.ps_setup_show_disabled_instruments()\G *************************** 1. row *************************** ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/sys-ps-setup-show-enabled-instruments.html
                                 Displays all currently enabled Performance Schema instruments. This might be a long list. Parameters None. Example mysql> CALL sys.ps_setup_show_enabled_instruments()\G *************************** 1. row *************************** ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/partitioning-selection.html
                                As you can see from the result when the SELECT is run a second time, there remains a row in the table matching the WHERE condition, but residing in a different partition (p2).  MySQL 5.7 supports explicit selection of partitions and subpartitions ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/fulltext-stopwords.html
                                Maximum and minimum word length values are configurable using the innodb_ft_max_token_size and innodb_ft_min_token_size variables.  The stopword list is loaded and searched for full-text queries using the server character set and collation (the ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/string-comparison-functions.html
                                However, this is not the case: The second query returns 0. mysql> SELECT STRCMP(@s1, @s3); ERROR 1267 (HY000): Illegal mix of collations (latin1_general_ci,IMPLICIT) and (latin1_general_cs,IMPLICIT) for operation 'strcmp' mysql> SELECT STRCMP(@s1, ... Table 12.13 String Comparison Functions and Operators Name Description LIKE Simple pattern matching NOT LIKE Negation of simple pattern matching STRCMP() Compare two strings If a string function is given a binary string as an argument, the resulting string is also a binary ...