Search Results
https://dev.mysql.com/doc/connectors/en/connector-cpp-authentication.html
LDAP authentication requires use of a server from a MySQL Enterprise Edition distribution. Note In Connector/C++ 8.0.23, a dependency on the mysql-client-plugins package was removed. This package now is required only on hosts where Connector/C++ ...
https://dev.mysql.com/doc/ndbapi/en/ndb-nodejs-examples-requirements.html
The software requirements for running the examples found in the next few sections are as follows: A working Node.js installation Working installations of the ndb and mysql-js adapters The mysql-js adapter also requires a working installation of the ...Section 5.2, “Installing the JavaScript Connector”, describes the installation process for all three of these ...
https://dev.mysql.com/doc/heatwave/en/mys-hw-create-table-select.html
When the query is offloaded to MySQL HeatWave, it is processed faster, improving the overall performance of the operation. Verify if the query is offloaded to MySQL HeatWave for processing. SELECT statement is executed, the SELECT query is offloaded ... This topic describes how to create a new table and insert data using a SELECT ...
https://dev.mysql.com/doc/heatwave/en/mys-hw-lakehouse-export-query-results-csv-non-json.html
You can use one of the following URL types: URI: Supported as of MySQL 9.3.1. Syntax: https://objectstorage.region_name.oraclecloud.com/n/namespace_name/b/bucket_name/o/prefixes Example: ... This topic shows the different ways to export query ...
https://dev.mysql.com/doc/refman/8.4/en/backup-strategy-example.html
Assume also that the MySQL server is under load at the time of the crash. You should include such options as necessary to enable client programs to connect to the MySQL server. For cases of operating system crashes or power failures, we can assume ...Assume that data is stored in the InnoDB storage engine, which has support for transactions and automatic crash ...
https://dev.mysql.com/doc/refman/8.4/en/constraint-foreign-key.html
MATCH options do not have any other effect in MySQL, which in effect enforces MATCH SIMPLE semantics full-time. MySQL supports ON UPDATE and ON DELETE foreign key references in CREATE TABLE and ALTER TABLE statements. SET DEFAULT is also supported ... Foreign keys let you cross-reference related data across tables, and foreign key constraints help keep this spread-out data ...
https://dev.mysql.com/doc/refman/8.4/en/create-table-check-constraints.html
If omitted, MySQL generates a name from the table name, a literal _chk_, and an ordinal number (1, 2, 3, ...). As mentioned, MySQL generates a name for any CHECK constraint specified without one. To see the names generated for the preceding table ...
https://dev.mysql.com/doc/refman/8.4/en/problems-with-null.html
For example, the following statements are completely different: mysql> INSERT INTO my_table (phone) VALUES (NULL); mysql> INSERT INTO my_table (phone) VALUES (''); Both statements insert a value into the phone column, but the first inserts a NULL ...
https://dev.mysql.com/doc/refman/8.4/en/replication-semisync-installation.html
To use semisynchronous replication, the following requirements must be satisfied: The capability of installing plugins requires a MySQL server that supports dynamic loading. For example: mysql> SELECT PLUGIN_NAME, PLUGIN_STATUS FROM ...
https://dev.mysql.com/doc/refman/8.4/en/replication-solutions-backups-mysqldump.html
Using mysqldump to create a copy of a database enables you to capture all of the data in the database in a format that enables the information to be imported into another instance of MySQL Server (see Section 6.5.4, “mysqldump — A Database ...