Search Results
https://dev.mysql.com/doc/workbench/en/wb-data-modeling.html
Modeling simplifies database design and maintenance by enabling you, the data architect, to visualize requirements and resolve design issues. Model-driven database design is an efficient methodology for creating valid and well-performing databases, ...
https://dev.mysql.com/doc/mysql-em-plugin/en/ui-myoem-homepage-viewing.html
The MySQL Database target page enables you to gather monitoring and metrics information specific to MySQL targets. To open the Oracle Enterprise Manager for MySQL Database target page, do the following: Select All Targets from the Targets menu.
https://dev.mysql.com/doc/refman/8.4/en/backup-methods.html
Making a Hot Backup with MySQL Enterprise Backup Customers of MySQL Enterprise Edition can use the MySQL Enterprise Backup product to do physical backups of entire instances or selected databases, tables, or both. Backing up the physical database ...
https://dev.mysql.com/doc/refman/8.4/en/pluggable-storage-common-layer.html
A MySQL pluggable storage engine is the component in the MySQL database server that is responsible for performing the actual data I/O operations for a database as well as enabling and enforcing certain feature sets that target a specific ...From a ...
https://dev.mysql.com/doc/heatwave/en/mys-hw-genai-byo-embedding-tables.html
In the ML_RAG_TABLE routine, specify the table columns containing the input queries and for storing the generated outputs: mysql> CALL sys.ML_RAG_TABLE("InputDBName.InputTableName.InputColumn", "OutputDBName.OutputTableName.OutputColumn", @options); ...For possible values, to view the list of available embedding models, see MySQL HeatWave In-Database Embedding Models and OCI Generative AI Service Embedding ...
https://dev.mysql.com/doc/heatwave/en/mys-hw-genai-rag.html
In the ML_RAG_TABLE routine, specify the table columns containing the input queries and for storing the generated outputs: mysql> CALL sys.ML_RAG_TABLE("InputDBName.InputTableName.InputColumn", "OutputDBName.OutputTableName.OutputColumn", @options); ...To define your natural-language query, set the @query variable: mysql> SET @query="AddYourQuery"; Replace AddYourQuery with your natural-language ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-genai-rag.html
To specify the table for retrieving the vector embeddings to use as context, set the @options variable: mysql> SET @options = JSON_OBJECT( "vector_store", JSON_ARRAY("DBName.VectorStoreTableName"), "model_options", JSON_OBJECT("language", ...To ...
https://dev.mysql.com/doc/workbench/en/wb-migration-database-mssql-connection-linux.html
Select Microsoft SQL Server as the source database system and fill out the remaining options as described in this section. Figure 10.43 SQL Server Connection Parameters Example on Linux Source RDBMS connection parameters include: Database System: ...For additional information about how to install a FreeTDS driver on Linux that will work with the MySQL Workbench migration wizard, see Section 10.5.2.2, ...
https://dev.mysql.com/doc/workbench/en/wb-migration-database-mssql-connection-windows.html
Select Microsoft SQL Server as the database system and fill out the remaining options as described in this section. Figure 10.42 SQL Server Connection Parameters Example on Windows Database System: Microsoft SQL Server Connection Method: choose ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-examples-walkthrough.html
A typical situation where you would install Connector/ODBC is to access a database on a Linux or Unix host from a Windows machine. Use GRANT to set up an account with a user name of myuser that can connect from system BETA using a password of ...As ...