Search Results
                    
                    
            https://dev.mysql.com/doc/connector-j/en/connector-j-reference-configuration-properties.html
                                 Configuration properties define how Connector/J will make a connection to a MySQL server. Unless otherwise noted, properties can be set for a DataSource object or for a Connection object. If you specify a configuration property in the URL without ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/binary-varbinary.html
                                 The BINARY and VARBINARY types are similar to CHAR and VARCHAR, except that they store binary strings rather than nonbinary strings. This means they have the binary character set and collation, and comparison and sorting are based on the numeric ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/case-sensitivity.html
                                 For nonbinary strings (CHAR, VARCHAR, TEXT), string searches use the collation of the comparison operands. For binary strings (BINARY, VARBINARY, BLOB), comparisons use the numeric values of the bytes in the operands; this means that for alphabetic ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/check-table.html
                                option: { FOR UPGRADE | QUICK | FAST | MEDIUM | EXTENDED | CHANGED } CHECK TABLE checks a table or tables for errors. CHECK TABLE can also check views for problems, such as tables that are referenced in the view definition that no longer exist. To ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/crashing.html
                                 Each MySQL version is tested on many platforms before it is released. This does not mean that there are no bugs in MySQL, but if there are bugs, they should be very few and can be hard to find. If you have a problem, it always helps if you try to ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/create-table-secondary-indexes.html
                                A secondary index defined on a virtual column is sometimes referred to as a “virtual index”. A secondary index may be created on one or more virtual columns or on a combination of virtual columns and regular columns or stored generated columns. 
                                            
                https://dev.mysql.com/doc/refman/8.4/en/create-tablespace.html
                                The precise syntax and semantics depend on the storage engine used. MySQL NDB Cluster also supports tablespaces using the NDB storage engine. Considerations for InnoDB Considerations for NDB Cluster Options Notes InnoDB Examples NDB Example ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/data-size.html
                                 Design your tables to minimize their space on the disk. This can result in huge improvements by reducing the amount of data written to and read from disk. Smaller tables normally require less main memory while their contents are being actively ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/dynamic-format.html
                                 Dynamic storage format is used if a MyISAM table contains any variable-length columns (VARCHAR, VARBINARY, BLOB, or TEXT), or if the table was created with the ROW_FORMAT=DYNAMIC table option. Dynamic format is a little more complex than static ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/engine-condition-pushdown-optimization.html
                                 This optimization improves the efficiency of direct comparisons between a nonindexed column and a constant. In such cases, the condition is “pushed down” to the storage engine for evaluation. This optimization can be used only by the NDB ...