Search Results
https://dev.mysql.com/doc/refman/8.4/en/connection-options.html
This section describes options supported by most MySQL client programs that control how client programs establish connections to the server, whether connections are encrypted, and whether connections are compressed. Command Options for Connection ...These options can be given on the command line or in an option ...
https://dev.mysql.com/doc/refman/8.4/en/mysql-cluster-limitations-exclusive-to-cluster.html
NDB Cluster has the following limitations or restrictions with regard to binary logging: NDB Cluster cannot produce a binary log for tables having BLOB columns but no primary key. The following are limitations specific to the NDB storage engine: ...
https://dev.mysql.com/doc/refman/8.4/en/network-namespace-support.html
Each namespace has its own IP addresses, network interfaces, routing tables, and so forth. Group Replication, only when using the MySQL communication stack to establish group communication connections. (For example, Linux.) Any network namespace to ... A network namespace is a logical copy of the network stack from the host ...
https://dev.mysql.com/doc/refman/8.4/en/thread-pool-operation.html
As connections are established, the thread pool assigns them to thread groups in round-robin fashion. For example, if parallel transactions affect index creation or an online buffer pool resizing operation, you can configure a transaction delay to ... The thread pool consists of a number of thread groups, each of which manages a set of client ...
https://dev.mysql.com/doc/relnotes/mysql-shell/9.5/en/news-9-5-0.html
(Bug #38442101) When dumping with ocimds: true, schemas and tables with ENCRYPTION disabled were updated and reported as modified, creating logging noise, even though MySQL HeatWave Service disallows enabling the statement and does not generate ...
https://dev.mysql.com/doc/refman/8.4/en/group-replication-user-credentials.html
You must therefore set up a replication user with the correct permissions so that Group Replication can establish direct member-to-member replication channels. The process of creating the replication user for distributed recovery can be captured in ... Group Replication uses a distributed recovery process to synchronize group members when joining them to the ...
https://dev.mysql.com/doc/mysql-enterprise-backup/8.4/en/meb-group-replication.html
When working with a Group Replication setup, mysqlbackup makes the backup information available to all members of the server group by making sure that the backup_history, backup_sbt_history (when using the SBT API), and backup_progress tables are ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-usagenotes-functionality-catalog-schema.html
Generally, catalogs are collections of schemas, so the fully qualified name would look like catalog.schema.table.column. In ODBC both schemas and catalogs can be used when referring to database objects such as tables. As a result the client software ... Many relational databases reference CATALOG and SCHEMA in ways that do not directly correspond to what MySQL refers to as a ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-usagenotes-functionality-catalog-schema.html
Generally, catalogs are collections of schemas, so the fully qualified name would look like catalog.schema.table.column. In ODBC both schemas and catalogs can be used when referring to database objects such as tables. As a result the client software ... Many relational databases reference CATALOG and SCHEMA in ways that do not directly correspond to what MySQL refers to as a ...
https://dev.mysql.com/doc/internals/en/close.html
In sql_select.cc it is only used to close up temporary tables or during the process where a temporary table is converted over to being a MyISAM table. Synopsis virtual int close ( void); void ; Description This is the close method. A good time to ...