Search Results
https://dev.mysql.com/doc/mysql-em-plugin/en/myoem-metric-sysschema-globalmemoryusage-category.html
Table 6.31 Sys Schema Global Memory Usage Metrics NameDescriptionCurrent Alloc The current number of allocated bytes that have not been freed yet for the allocation type. Lists the Sys Schema Global Memory Usage metrics and provides a brief ...
Oracle Enterprise Manager for MySQL Database User's Guide :: 6.43 Sys Schema User Statistics Metrics
https://dev.mysql.com/doc/mysql-em-plugin/en/myoem-metric-sysschema-userstatistics-category.html
Unique Hosts The number of distinct hosts from which connections for the user have originated. Lists the Sys Schema User Statistics metrics and provides a brief description of each. Table 6.43 Sys Schema User Statistics Metrics ...
https://dev.mysql.com/doc/mysql-em-plugin/en/myoem-performance-page-per-user-stats.html
Unique Hosts The number of distinct hosts from which connections for the user have originated. Table 5.11 Per User Statistics Dashboard NameDescription User The client user name. Rows for which the USER column in the underlying Performance Schema ...
https://dev.mysql.com/doc/x-devapi-userguide/en/building-expressions.html
The first is to use strings to formulate the expressions which should be familiar if you have developed code with SQL before. This section explains how to build expressions using X DevAPI. When working with MySQL expressions used in CRUD, ...
https://dev.mysql.com/doc/x-devapi-userguide/en/collection-remove.html
It assumes some documents have been added to the collection as illustrated by the code example in Section 4.3.1, “Collection.add()”: MySQL Shell JavaScript Code // Use the collection 'my_collection' var myColl = ... The Collection.remove() ...
https://dev.mysql.com/doc/x-devapi-userguide/en/collection-validation.html
This enables you to require that documents have a certain structure before they can be inserted or updated in a collection. Collections can be configured to verify documents against a JSON schema. Schema validation is performed by the server, which ...
https://dev.mysql.com/doc/x-devapi-userguide/en/connecting-dns-srv.html
MySQL Connectors also have connector-specific options to request DNS SRV record lookup both for X Protocol connections and for classic MySQL protocol connections. X DevAPI supports the use of DNS SRV records for connecting to MySQL servers. A ...
https://dev.mysql.com/doc/x-devapi-userguide/en/connecting-to-a-single-mysqld-node-setup.html
In this example a connection to a local MySQL Server instance running X Plugin on the default TCP/IP port 33060 is established using the MySQL user account user with its password. You are prompted to enter the user name and password in this case.
https://dev.mysql.com/doc/x-devapi-userguide/en/crud-ebnf-collection-crud-functions.html
CollectionFindFunction The syntax for this function in EBNF is: CollectionFindFunction ::= '.find(' SearchConditionStr? ')' ( '.fields(' ProjectedDocumentExprStr ')' )? ( '.groupBy(' SearchExprStrList ')' )? ( '.having(' SearchConditionStr ')' )? ( ...
https://dev.mysql.com/doc/x-devapi-userguide/en/crud-ebnf-table-crud-functions.html
TableSelectFunction Table.select() and collection.find() use different methods for sorting results. Table.select() follows the SQL language naming and calls the sort method orderBy(). Use the method sort() to sort the results returned by ...