Search Results
https://dev.mysql.com/doc/mysql-monitor/8.0/en/mem-acl-creating-user-roles-tasks.html
Creating a Role Note It is not possible to save a new user without an assigned role. To create a role, do the following: Select Roles from the Settings menu (gear icon). On the Details tab, enter a name in the Role Name field and add a description ...
https://dev.mysql.com/doc/mysql-monitor/8.0/en/mem-mysql-instance-dashboard-layout.html
This section describes the controls on the Manage Instances view. Alert Buttons The alert buttons list the number of problematic instances, connections, and agents in your implementation. If a problem exists, they are displayed on the top-right ...
https://dev.mysql.com/doc/mysql-monitor/8.0/en/mem-remove-windows.html
Removing MySQL Enterprise Service Manager On Microsoft Windows 7 and 8, remove MySQL Enterprise Service Manager by opening the Control Panel and choosing Uninstall a Program. Locate the entry for MySQL Enterprise Monitor and select Uninstall from ...
https://dev.mysql.com/doc/mysql-monitor/8.0/en/mem-sm-gui-installer.html
This section describes how to install MySQL Enterprise Service Manager using the Installation Wizard. Note On UNIX and Linux platforms, ensure the installer is executable before you begin. Important It is recommended to install MySQL Enterprise ...
https://dev.mysql.com/doc/mysql-monitor/8.0/en/mysql-process-discovery-advisor-ref.html
The MySQL Process Discovery Advisor enables you to find and, optionally, establish a connection with unmonitored MySQL instances. If you choose not to attempt a connection with the discovered instances, they are listed in the Unmonitored MySQL ...
https://dev.mysql.com/doc/mysql-monitor/8.0/en/performance-advisors-ref.html
For optimal performance, transactions that move through the binary log should be contained within the binary log cache. For more information on the binary log and binary log cache, see The Binary Log. Default frequency 00:05:00 Default auto-close ...
https://dev.mysql.com/doc/x-devapi-userguide-shell-js/en/sql-crud-functions.html
The following SQL CRUD functions are available in X DevAPI. Table.insert() The Table.insert() method works like an INSERT statement in SQL. It is used to store data in a relational table in the database. The example assumes that the test schema ...
https://dev.mysql.com/doc/x-devapi-userguide-shell-js/en/working-with-sql-result-sets.html
When you execute an SQL operation on a Session using the sql() method, an SqlResult is returned. Iterating over an SqlResult is identical to working with results from CRUD operations. var res = mySession.sql('SELECT name, age FROM ...
https://dev.mysql.com/doc/x-devapi-userguide-shell-python/en/sql-crud-functions.html
The following SQL CRUD functions are available in X DevAPI. Table.insert() The Table.insert() method works like an INSERT statement in SQL. It is used to store data in a relational table in the database. The example assumes that the test schema ...
https://dev.mysql.com/doc/x-devapi-userguide-shell-python/en/working-with-sql-result-sets.html
When you execute an SQL operation on a Session using the sql() method, an SqlResult is returned. Iterating over an SqlResult is identical to working with results from CRUD operations. res = mySession.sql('SELECT name, age FROM users').execute() row ...