PDF (US Ltr)
- 35.0Mb
PDF (A4)
- 35.1Mb
Man Pages (TGZ)
- 254.9Kb
Man Pages (Zip)
- 359.9Kb
Info (Gzip)
- 3.4Mb
Info (Zip)
- 3.4Mb
Search Results
https://dev.mysql.com/doc/refman/5.7/en/mysql-installer-workflow.html
The group must be established on Windows before you can select it from the list. Windows requires a newly added member to first log out and then log in again to join a local group. In the Windows Security Tokens area, enter a token for each Windows ... MySQL Installer provides a wizard-like tool to install and configure new MySQL products for ...
https://dev.mysql.com/doc/refman/5.7/en/change-replication-filter.html
Note Replication filters cannot be set on a MySQL server instance that is configured for Group Replication, because filtering transactions on some servers would make the group unable to reach agreement on a consistent state. Filters set using this ...
https://dev.mysql.com/doc/refman/5.7/en/thread-pool-tuning.html
If a long-running statement was permitted to block a thread group, all other connections assigned to the group would be blocked and unable to start execution until the long-running statement completed. Assuming that the TP_THREAD_GROUP_STATS table ... This section provides guidelines on setting thread pool system variables for best performance, measured using a metric such as transactions per ...
https://dev.mysql.com/doc/refman/5.7/en/glossary.html
It consists of several actions that are transactional in themselves, but that all must either complete successfully as a group, or all be rolled back as a group. group commit An InnoDB optimization that performs some low-level I/O operations (log ...
https://dev.mysql.com/doc/refman/5.7/en/mysql-cluster-programs-ndb-desc.html
--defaults-group-suffix Command-Line Format --defaults-group-suffix=string Type String Default Value [none] Also read groups with concat(group, suffix). ndb_desc provides a detailed description of one or more NDB tables. Usage ndb_desc -c ...
https://dev.mysql.com/doc/refman/5.7/en/mysql-cluster-programs-ndb-restore.html
--defaults-group-suffix Command-Line Format --defaults-group-suffix=string Type String Default Value [none] Also read groups with concat(group, suffix). --ndb-nodegroup-map=map, -z Command-Line Format --ndb-nodegroup-map=map Intended for restoring a ... The NDB Cluster restoration program is implemented as a separate command-line utility ndb_restore, which can normally be found in the MySQL bin ...
https://dev.mysql.com/doc/refman/5.7/en/mysql-secure-installation.html
For example, to connect to the local server over IPv6 using port 3307, use this command: mysql_secure_installation --host=::1 --port=3307 mysql_secure_installation supports the following options, which can be specified on the command line or in the ... This program enables you to improve the security of your MySQL installation in the following ways: You can set a password for root ...
https://dev.mysql.com/doc/refman/5.7/en/order-by-optimization.html
(This is the first table in the EXPLAIN output that does not have a const join type.) The query has different ORDER BY and GROUP BY expressions. (The resulting sort order may be completely different from the order for ABS(a), of course.) SELECT ...
https://dev.mysql.com/doc/refman/5.7/en/case-sensitivity.html
Simple comparison operations (>=, >, =, <, <=, sorting, and grouping) are based on each character's “sort value.” Characters with the same sort value are treated as the same character. For nonbinary strings (CHAR, VARCHAR, TEXT), string ...
https://dev.mysql.com/doc/refman/5.7/en/create-function-loadable.html
The AGGREGATE keyword, if given, signifies that the function is an aggregate (group) function. CREATE [AGGREGATE] FUNCTION function_name RETURNS {STRING|INTEGER|REAL|DECIMAL} SONAME shared_library_name This statement loads the loadable function ...