Search Results
https://dev.mysql.com/doc/workbench/en/wb-what-is-new-60.html
Context Help for the SQL Editor Select a keyword or function in your query and after a delay it will show formatted help information from the MySQL Server (equivalent to using the help command from the command-line MySQL Client). Figure 1.43 Visual ... This section summarizes many of the new features added to MySQL Workbench 6.0, in relation to the MySQL Workbench 5.2 ...
https://dev.mysql.com/doc/internals/en/getting-source-tree.html
The following command clones the MySQL Git repository to a directory named mysql-server. Run the git branch -r command to view the “remote-tracking” branches: ~/mysql-server$ git branch -r origin/5.5 origin/5.6 origin/5.7 origin/HEAD -> ... This ...
https://dev.mysql.com/doc/mysql-installer/en/mysql-installer-setup.html
Choosing one of the following setup types determines the initial installation only and does not limit your ability to install or update MySQL products for Windows later: Server only: Only install the MySQL server. This setup type installs the ...
https://dev.mysql.com/doc/ndbapi/en/mgm-functions-tls.html
Signature void ndb_mgm_cert_table_free ( struct ndb_mgm_cert_table **list ) Parameters list A linked list of ndb_mgm_cert_table certificate descriptions Return value none ndb_mgm_connect_tls() Description Connects to a management server. Signature ... The functions described in this section were added in NDB 8.3 to support Transport Layer Security for communications between ...
https://dev.mysql.com/doc/refman/8.4/en/mysqldump-sql-format.html
This has several implications: When you reload the dump file, you must specify a default database name so that the server knows which database to reload. If you only replay one partial dump file on the target server, the extra GTIDs do not cause any ... This section describes how to use mysqldump to create SQL-format dump ...
https://dev.mysql.com/doc/refman/8.4/en/native-pluggable-authentication.html
The following table shows the plugin names on the server and client sides. Installing Native Pluggable Authentication The mysql_native_password plugin exists in server and client forms: The server-side plugin is built into the server, but is ...
https://dev.mysql.com/doc/refman/8.4/en/point-in-time-recovery-positions.html
You can perform a point-in-time recovery to restore the server up to its state right before the table deletion. When finished, note the binary log position up to which you have restored the server for later use, and restart the server. Beyond the ...
https://dev.mysql.com/doc/refman/8.4/en/xa.html
The XA interface to a MySQL server consists of SQL statements that begin with the XA keyword. The MySQL implementation of XA enables a MySQL server to act as a Resource Manager that handles XA transactions within a global transaction. A client ...
https://dev.mysql.com/doc/mysql-enterprise-backup/8.4/en/mysqlbackup-os-user.html
To ensure no file permission issues prevent a server to be backed up, restored, and restarted successfully, it is highly recommended that you run mysqlbackup with the same OS user who runs the MySQL server (typically mysql). Note For Linux and other ... For Linux and other Unix-like platforms: mysqlbackup does not record file ownership or permissions of the files that are backed ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-basic-interface-usage.html
Initialize a connection handler by calling mysql_init() and connect to the server by calling a connection-establishment function such as mysql_real_connect(). (The following discussion provides more information about how to do this.) Close the ...