PDF (US Ltr)
- 41.8Mb
PDF (A4)
- 41.9Mb
Man Pages (TGZ)
- 272.4Kb
Man Pages (Zip)
- 378.4Kb
Info (Gzip)
- 4.2Mb
Info (Zip)
- 4.2Mb
Search Results
https://dev.mysql.com/doc/refman/9.7/en/server-system-variables.html
Boolean variables can be set at startup to the values ON, TRUE, OFF, and FALSE (not case-sensitive), as well as 1 and 0. At startup, the server automatically generates RSA private/public key-pair files in the data directory if all of these ... The ...
https://dev.mysql.com/doc/refman/9.7/en/mysql-cluster-programs-ndb-config.html
Note While the hostname localhost usually resolves to the IP address 127.0.0.1, this may not necessarily be true for all operating platforms and configurations. This is shown by the presence of an initial="true" attribute in the corresponding ...
https://dev.mysql.com/doc/refman/9.7/en/range-optimization.html
The correct way to remove them is to replace them with TRUE, so that we do not miss any matching rows when doing the range scan. OR col_name = valN Each expression is true if col_name is equal to any of several values. For JSON output, ... The range ...
https://dev.mysql.com/doc/refman/9.7/en/keyring-aws-component.html
To enable AWS native authentication, aws_authentication.mode must be set to native in the component_keyring_aws.cnf file, as shown here: { "cmk_id": "arn:aws:kms:us-east-1:79566666666:key/d0111111-1111-1111-1111-999999999abd", "data_file": ... Note ...
https://dev.mysql.com/doc/refman/9.7/en/option-tracker-component-functions.html
Example: mysql> SELECT option_tracker_usage_get('Berry Picker'); +----------------------------------------------------+ | option_tracker_usage_get('Berry Picker') | +----------------------------------------------------+ | {"used": true, "usedDate": ... The Option Tracker provides the functions shown in the next ...
https://dev.mysql.com/doc/refman/9.7/en/mysql-cluster-programs-ndb-restore.html
--backup-password-from-stdin[=TRUE|FALSE] Command-Line Format --backup-password-from-stdin When used in place of --backup-password, this option enables input of the backup password from the system shell (stdin), similar to how this is done when ...
https://dev.mysql.com/doc/refman/9.7/en/mysql-cluster-programs-ndb-top.html
This option or --text must be true; both options may be true. This option or --os-load must be true; both options may be true. This option or --measured-load must be true; both options may be true. This option or --graph must be true; both options ... ndb_top displays running information in the terminal about CPU usage by NDB threads on an NDB Cluster data ...
https://dev.mysql.com/doc/refman/9.7/en/mysql-cluster-tcp-definition.html
Connection parameters which can be set in [tcp] and [tcp default] sections of the config.ini file are listed here: AllowUnresolvedHostNames Version (or later) NDB 9.7.0 Type or units boolean Default false Range true, false Restart Type Node Restart: ... TCP/IP is the default transport mechanism for all connections between nodes in an NDB ...
https://dev.mysql.com/doc/refman/9.7/en/comparison-operators.html
Some of the functions in this section return values other than 1 (TRUE), 0 (FALSE), or NULL. expr IN (value,...) Returns 1 (true) if expr is equal to any of the values in the IN() list, else returns 0 (false). mysql> SELECT INTERVAL(23, 1, 15, 17, ... Table 14.4 Comparison Operators Name Description > Greater than operator >= Greater than or equal operator < Less than operator <>, != Not equal operator <= Less than or equal operator <=> NULL-safe equal to operator = Equal operator BETWEEN ...
https://dev.mysql.com/doc/refman/9.7/en/flow-control-functions.html
The second syntax returns the result for the first condition that is true. If no comparison or condition is true, the result after ELSE is returned, or NULL if there is no ELSE part. NULLIF(expr1,expr2) Returns NULL if expr1 = expr2 is true, ...Note ...