Search Results
https://dev.mysql.com/doc/refman/8.4/en/mysql-cluster-install-linux-binary.html
Some OS distributions create these as part of the operating system installation process. $> cd /var/tmp $> tar -C /usr/local -xzvf mysql-cluster-gpl-8.4.6-linux-glibc2.12-x86_64.tar.gz $> ln -s ... This section covers the steps necessary to install ...
https://dev.mysql.com/doc/refman/8.4/en/mysql-cluster-event-reports.html
By default, the cluster log is saved to a file named ndb_node_id_cluster.log, (where node_id is the node ID of the management server) in the management server's DataDir. See Section 25.4.3.5, “Defining an NDB Cluster Management Server”, for more ... In this section, we discuss the types of event logs provided by NDB Cluster, and the types of events that are ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-prepared-statement-data-structures.html
For input, buffer_type indicates the type of the variable containing the value to be sent to the server. For output, it indicates the type of the variable into which a value received from the server should be stored. MYSQL_BIND structures are also ... Prepared statements use several data structures: To obtain a statement handler, pass a MYSQL connection handler to mysql_stmt_init(), which returns a pointer to a MYSQL_STMT data ...
https://dev.mysql.com/doc/refman/8.4/en/internal-temporary-tables.html
Note Configuring a session setting for internal_tmp_mem_storage_engine requires the SESSION_VARIABLES_ADMIN or SYSTEM_VARIABLES_ADMIN privilege. In some cases, the server creates internal temporary tables while processing statements. The server ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/writing-plugins.html
The server plugin interface also enables plugins to expose status and system variables. Every server plugin must have a general descriptor that provides information to the plugin API, and a type-specific descriptor that provides information about ...
https://dev.mysql.com/doc/refman/8.4/en/creating-accounts.html
Account-management statements cause the server to make appropriate modifications to the underlying grant tables, which are discussed in Section 8.2.3, “Grant Tables”. The server is free to ignore rows that become malformed as a result of such ...
https://dev.mysql.com/doc/mysql-enterprise-backup/8.4/en/meb-redo-log-archiving.html
mysqlbackup may sometimes fail to keep pace with redo log generation on the backed up server while a backup operation is in progress, resulting in lost redo log records due to those records being overwritten. This issue most often occurs when there ...The redo log archiving feature addresses this issue by sequentially writing redo log records to an archive file in addition to the redo log ...
https://dev.mysql.com/doc/workbench/en/wb-getting-started-tutorial-create-connection.html
An instance of MySQL server must be installed, started, and accessible to MySQL Workbench before you begin. Next, optionally click Configure Server Management..., which opens up the Configure Local Management wizard: Read the Configure Local ...
https://dev.mysql.com/doc/x-devapi-userguide/en/devapi-users-working-with-relational-tables.html
The X DevAPI SQL CRUD functions allow you to work with relational tables in manners similar to using traditional SQL statements. The following code sample shows how to use the add() and select() methods of the X DevAPI SQL CRUD functions, which are ...
https://dev.mysql.com/doc/x-devapi-userguide/en/using-sql.html
In addition to the simplified X DevAPI syntax of the Session object, the Session object has a sql() function that takes any SQL statement as a string. The following example uses a Session to call an SQL Stored Procedure on the specific node.