Search Results
https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-show-status.html
stopped The cluster is not running, because it has been stopped by the user. created The cluster has been created successfully using the create cluster command, but has never been started. import The process is part of a cluster that was created for ... show status show status --cluster|-c cluster_name show status --operation|-o cluster_name show status --backup|-b cluster_name show status --process|-r cluster_name show status --progress cluster_name show status --progressbar cluster_name This command is used to check the status of clusters, cluster processes, backups, and commands issued in the MySQL Cluster Manager ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-asynchronous-interface-usage.html
CREATE DATABASE db; USE db; CREATE TABLE test_table (id INT NOT NULL); INSERT INTO test_table VALUES (10), (20), (30); CREATE USER 'testuser'@'localhost' IDENTIFIED BY 'testpass'; GRANT ALL ON db.* TO 'testuser'@'localhost'; Create a file named ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/adding-functions.html
There are three ways to add a new function to MySQL: Create a stored function (a type of stored object). A loadable function is compiled as a library file and then loaded and unloaded from the server dynamically using the CREATE FUNCTION and DROP ...A stored function is written using SQL statements rather than by compiling object ...
https://dev.mysql.com/doc/relnotes/connector-j/en/news-8-0-27.html
(Bug #28725534) Connector/J now supports authentication of MySQL users created using the authentication_oci plugin. (Bug #31117686) Synchronization in the MultiHostConnectionProxy#invoke() method forced connection pools to wait for statements to ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-automl-privileges.html
mysql> GRANT CREATE, DROP, INSERT, SELECT, ALTER, DELETE, UPDATE ON database_name.* TO 'user_name'@'%'; Tracking and Monitoring Privileges You need the following privileges to track/monitor the status of AutoML and AutoML routines.. mysql> GRANT ...
https://dev.mysql.com/doc/workbench/en/wb-sql-editor-navigator.html
To access the Navigator area, open an existing connection (or create a new connection) from the home screen. A new table with the imported fields is created in the selected schema, unless you select the append or update (overwrite) option. Copy to ... The Navigator area of the sidebar contains options to manage the active MySQL ...
https://dev.mysql.com/doc/connectors/en/connector-j-support-bug-report.html
If at all possible, create a repeatable, standalone testcase that doesn't involve any third-party classes. To create a testcase for Connector/J using this class, create your own class that inherits from com.mysql.cj.jdbc.util.BaseBugReport and ...
https://dev.mysql.com/doc/heatwave-aws/en/heatwave-aws-troubleshooting-egress-privatelink.html
Table 6-2 Egress PrivateLink: Common Issues and Resolutions Deployment Step Error Summary Steps to Resolve Create Egress PrivateLink Could not Create PrivateLink. Create Replication Channel, when using Egress PrivateLink for Inbound Replication ...
https://dev.mysql.com/doc/connector-j/en/connector-j-support-bug-report.html
If at all possible, create a repeatable, standalone testcase that doesn't involve any third-party classes. To create a testcase for Connector/J using this class, create your own class that inherits from com.mysql.cj.jdbc.util.BaseBugReport and ...
https://dev.mysql.com/doc/refman/8.4/en/partitioning-range.html
A table that is partitioned by range is partitioned in such a way that each partition contains rows for which the partitioning expression value lies within a given range. Ranges should be contiguous but not overlapping, and are defined using the ...