Search Results
https://dev.mysql.com/doc/workbench/en/wb-getting-started-tutorial-create-connection.html
To create a new connection, follow these steps: Launch MySQL Workbench to open the home screen. This step creates a local MySQL connection, so you can skip the Management and OS and SSH Configuration options, which are used for configuring a remote ... This tutorial adds a new connection that can be either an initial connection or an additional ...
https://dev.mysql.com/doc/heatwave-aws/en/creating-iam-policy-genai.html
Creating an IAM Policy to Access Amazon Bedrock LLMs 21.5.3 Creating an IAM Policy to Access Amazon Bedrock LLMs Use the AWS Management Console to create an IAM policy for MySQL HeatWave GenAI to access Amazon Bedrock LLMs. Do the following to ...
https://dev.mysql.com/doc/refman/8.4/en/create-function.html
The CREATE FUNCTION statement is used to create stored functions and loadable functions: For information about creating stored functions, see Section 15.1.17, “CREATE PROCEDURE and CREATE FUNCTION Statements”. For information about creating ...
https://dev.mysql.com/doc/mysql-monitor/8.0/en/mem-example-creating-advisor.html
To create an Advisor, select the Create Advisor button from the Advisors page. This example creates an Advisor that checks if connections have been killed using the KILL statement and generates an event. Create your custom advisor by following these ...From the Advisor Category drop down list box, choose an Advisor category for your ...
https://dev.mysql.com/doc/refman/8.4/en/creating-spatial-columns.html
MySQL provides a standard way of creating spatial columns for geometry types, for example, with CREATE TABLE or ALTER TABLE. See also the notes about spatial indexes under Section 13.4.10, “Creating Spatial Indexes”. Use the CREATE TABLE ...
https://dev.mysql.com/doc/refman/8.4/en/mysql-shell-tutorial-javascript-indexes-create.html
If a collection is large and queries on a specific field are common, then consider creating an index on a specific field inside a document. For example, the following query performs better with an index on the Population field: mysql-js> ... Indexes ...
https://dev.mysql.com/doc/refman/8.4/en/replication-features-create-select.html
ROW format: The statement is logged as a CREATE TABLE statement followed by a series of insert-row events. SELECT statement to make any changes in tables other than the table that is created by the statement. SELECT always performs an implicit ...
https://dev.mysql.com/doc/mysql-shell/9.4/en/admin-api-routing-guidelines-creating-activating.html
Create Routing Guidelines using the following command: object.create_routing_guideline(name[, json[, options]]) object: the Cluster, ClusterSet, or Replicaset to which the routing guideline is associated. If a JSON document is not provided, a ...
https://dev.mysql.com/doc/internals/en/logging-transactions-rules-for-create-table-select.html
(R-log-create-select-statement-format) If logging in statement format (that is, one of the following holds: (1) @@SESSION.binlog_format=STATEMENT; (2) @@SESSION.binlog_format=MIXED and statement is safe): If there is an error, do not write anything.
https://dev.mysql.com/doc/x-devapi-userguide-shell-js/en/creating-documents.html
Once a collection has been created, it can store JSON documents. The most convenient way to create them is by calling the Collection.newDoc(). For strictly-typed languages it is possible to create class files based on the document structure ...You ...