Search Results
https://dev.mysql.com/doc/refman/9.7/en/introduction.html
MySQL Server is intended for mission-critical, heavy-load production systems as well as for embedding into mass-deployed software. The MySQL software delivers a very fast, multithreaded, multi-user, and robust SQL (Structured Query Language) ...
https://dev.mysql.com/doc/refman/9.7/en/mysqldump-delimited-text.html
The following command dumps the contents of the db1 database to files in the /tmp database: $> mysqldump --tab=/tmp db1 The .txt files containing table data are written by the server, so they are owned by the system account used for running the ...
https://dev.mysql.com/doc/mysql-shell/9.7/en/mysql-shell-pluggable-password-store.html
To make working with MySQL Shell more fluent and secure you can persist the password for a server connection using a secret store, such as a keychain. You enter the password for a connection interactively and it is stored with the server URL as ...
https://dev.mysql.com/doc/refman/9.7/en/function-loading.html
It registers the function in the mysql.func system table to make it persistent across server restarts. Loadable functions, as the name implies, must be loaded into the server before they can be used. MySQL supports automatic function loading during ...While a loadable function is loaded, information about it is available as described in Section 7.7.2, “Obtaining Information About Loadable ...
https://dev.mysql.com/doc/refman/9.7/en/mysql-cluster-replication-failover.html
Of course, it is not possible for one mysqld instance to access user variables set on another server instance directly. This means that the ndb_apply_status table contains information for the replica on this host as well as for any other host which ... In the event that the primary Cluster replication process fails, it is possible to switch over to the secondary replication ...
https://dev.mysql.com/doc/refman/9.7/en/audit-log.html
To use a different database, set the audit_log_database system variable at server startup. To change the name of the file, set the audit_log_file system variable at server startup. To select the file format, set the audit_log_format system variable ...MySQL Enterprise Edition includes MySQL Enterprise Audit, implemented using a server plugin named ...
https://dev.mysql.com/doc/refman/9.7/en/group-replication-configuring-ssl-for-recovery.html
The default for this system variable depends on the TLS protocol versions supported in the MySQL Server release. If this system variable is set to NULL when TLSv1.3 is used (which is the default if you do not set the system variable), the ...These ... Important When using the MySQL communication stack (group_replication_communication_stack=MYSQL) AND secure connections between members (group_replication_ssl_mode is not set to DISABLED), the security settings discussed in this section are applied not just to distributed recovery connections, but to group communications between members in ...
https://dev.mysql.com/doc/workbench/en/heatwave-migration-assistant.html
The MySQL HeatWave Migration Assistant allows you to migrate on-premises databases to MySQL HeatWave DB Systems in Oracle Cloud Infrastructure (OCI). Overview The MySQL HeatWave Migration Assistant performs the following tasks during the migration ...This is a separate feature that is unrelated to Chapter 10, Database Migration ...
https://dev.mysql.com/doc/relnotes/connector-j/en/news-8-0-16.html
Note The aggregate size of connection attribute data sent by a client is limited by the value of the performance_schema_session_connect_attrs_size server variable. The total size of the data package should be less than the value of the server ...It ... Version 8.0.16 is the latest General Availability release of the 8.0 series of MySQL ...
https://dev.mysql.com/doc/c-api/9.7/en/c-api-introduction.html
The C API provides low-level access to the MySQL client/server protocol and enables C programs to access database contents. Most other client APIs use the libmysqlclient library to communicate with the MySQL server. (Exceptions are Connector/J and ...The C API code is distributed with MySQL and implemented in the libmysqlclient ...