Search Results
https://dev.mysql.com/doc/mysql-enterprise-backup/8.4/en/platforms.compatibility.html
MySQL Enterprise Backup is by nature cross-platform compatible when running on the Linux and Windows operating systems: backups on a Linux machine can, in principle, be restored on a Windows machine, and vice versa. However, because Identifier Case ...
https://dev.mysql.com/doc/refman/8.4/en/assigning-passwords.html
If the read_only system variable is enabled, use of account-modification statements such as CREATE USER or ALTER USER additionally requires the CONNECTION_ADMIN privilege (or the deprecated SUPER privilege). Required credentials for clients that ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-examples-programming-net.html
This section contains simple examples that demonstrate the use of Connector/ODBC drivers with ODBC.NET. 5.6.7.2.1 Using Connector/ODBC with ODBC.NET and C# (C sharp) The following sample creates a table my_odbc_net and demonstrates its use in C#.
https://dev.mysql.com/doc/heatwave-aws/en/heatwave-aws-cloudwatch-monitoring.html
CloudWatch Monitoring 17.1 CloudWatch Monitoring MySQL HeatWave on AWS supports AWS CloudWatch for detailed monitoring of your DB Systems and MySQL HeatWave Clusters. Follow these steps to set up or reconfigure CloudWatch monitoring for your DB ...
https://dev.mysql.com/doc/heatwave-aws/en/heatwave-aws-update-monitoring-configuration.html
Update Monitoring Configuration 3.4.8 Update Monitoring Configuration Update the CloudWatch Monitoring configuration for a DB System. During the update, the DB System will be in the UPDATING state until the update is finished. To update the ...
https://dev.mysql.com/doc/refman/8.4/en/innodb-buffer-pool-resize.html
You can configure InnoDB buffer pool size offline or while the server is running. Configuring InnoDB Buffer Pool Size Online The innodb_buffer_pool_size configuration option can be set dynamically using a SET statement, allowing you to resize the ...For additional information about configuring buffer pool size online, see Configuring InnoDB Buffer Pool Size ...
https://dev.mysql.com/doc/refman/8.4/en/invoking-programs.html
$> mysql --user=root test $> mysqladmin extended-status variables $> mysqlshow --help $> mysqldump -u root personnel Arguments that begin with a single or double dash (-, --) specify program options. Options typically indicate the type of connection ... To invoke a MySQL program from the command line (that is, from your shell or command prompt), enter the program name followed by any options or other arguments needed to instruct the program what you want it to ...
https://dev.mysql.com/doc/mysql-secure-deployment-guide/8.0/en/secure-deployment-password-validation.html
The component exposes a set of system variables that enable you to define a password policy. To provide control over this capability, validate_password exposes a validate_password.check_user_name system variable, which is enabled by default. INSTALL ...$> cd /path/to/mysql/lib/plugin/ $> ls component_v* component_validate_password.so Ensure that the plugin_dir is set to the server the MySQL plugin ...
https://dev.mysql.com/doc/connectors/en/connector-python-asyncio.html
import asyncio import os import time from mysql.connector.aio import connect # Global variable which will help to format the job sequence output. # DISCLAIMER: this is an example for showcasing/demo purposes, # you should avoid global variables ...
https://dev.mysql.com/doc/connector-python/en/connector-python-asyncio.html
import asyncio import os import time from mysql.connector.aio import connect # Global variable which will help to format the job sequence output. # DISCLAIMER: this is an example for showcasing/demo purposes, # you should avoid global variables ...