Search Results
https://dev.mysql.com/doc/heatwave/en/mys-hw-about-auto-parallel-load.html
To use Auto Parallel Load, ask the admin user to grant you the following privileges. mysql> GRANT PROCESS ON database_name.* TO 'user_name'@'%'; The EXECUTE privilege on the sys schema. mysql> GRANT SELECT ON performance_schema.* TO 'user_name'@'%'; ...Replace user_name and database_name in the commands with the appropriate user name and database ... Auto Parallel Load is a feature of MySQL HeatWave that automates many of the steps for ...
https://dev.mysql.com/doc/mysql-em-plugin/en/myoem-cluster-metric-mysqlserver-ddlstatementactivity-category.html
Create Udf (Delta) The total number of CREATE FUNCTION statements executed for user defined functions. Create User (Delta) The total number of CREATE USER statements executed. Drop User (Delta) The total number of DROP USER statements executed.
https://dev.mysql.com/doc/mysql-em-plugin/en/myoem-metric-mysqlserver-ddlstatementactivity-category.html
Create Udf (Delta) The total number of CREATE FUNCTION statements executed for user defined functions. Create User (Delta) The total number of CREATE USER statements executed. Drop User (Delta) The total number of DROP USER statements executed.
https://dev.mysql.com/doc/mysql-em-plugin/en/prereqs-myoem-reference.html
The user installing the Management Agent must, at least, belong to the MySQL user group of the monitored database. The Management Agent requires a user on the monitored MySQL instance. As such, the user must not be defined with REQUIRE SSL. Ensure ... This section describes the prerequisites for a successful Oracle Enterprise Manager for MySQL Database ...
https://dev.mysql.com/doc/heatwave/en/mys-hwaml-load-model.html
A model can only be loaded by the MySQL user that created the model unless you grant access to other users. For more information, see Grant Other Users Access to a Model. NULL is specified in place of the user name of the model owner. mysql> CALL ...
https://dev.mysql.com/doc/refman/8.4/en/role-names.html
As stored in the grant tables, they have the same properties as account names, which are described in Grant Table Scope Column Properties. Role names differ from account names in these respects: The user part of role names cannot be blank. Thus, ...
https://dev.mysql.com/doc/refman/8.4/en/starting-server.html
Such problems can occur if you neglected to create the grant tables by initializing the data directory before proceeding to this step, or if you ran the command that initializes the data directory without the --user option. Start the MySQL server ...
https://dev.mysql.com/doc/mysql-ai/9.4/en/mys-ai-aml-load-model.html
A model can only be loaded by the MySQL user that created the model unless you grant access to other users. For more information, see Grant Other Users Access to a Model. NULL is specified in place of the user name of the model owner. mysql> CALL ...
https://dev.mysql.com/doc/connectors/en/connector-j-connp-props-authentication.html
If none is specified, it is authentication plugin dependent what user name is used. Since Version all versions password The password to use when authenticating the user. It is a synonym of the connection property 'password' and can also be set with ...Since Version all versions password1 The password to use in the first phase of a Multi-Factor Authentication ...
https://dev.mysql.com/doc/connectors/en/connector-j-usagenotes-connect-drivermanager.html
try { conn = DriverManager.getConnection("jdbc:mysql://localhost/test?" + "user=minty&password=greatsqldb"); // Do something with the Connection ... When the user for the connection is unspecified, Connector/J's implementations of the authentication ... When you are using JDBC outside of an application server, the DriverManager class manages the establishment of ...