Search Results
https://dev.mysql.com/doc/relnotes/heatwave/en/news-9-3-0.html
This default value change impacts the following processes: New vector store tables are created using multilingual-e5-small by default. Retrieval augmented generation (RAG) searches tables created using the default embedding model, ... Note These ...
https://dev.mysql.com/doc/heatwave-aws/en/heatwave-aws-heatwave-cluster-unload-advisor.html
Unload Advisor 9.1.1 Unload Advisor Unloading tables from the MySQL HeatWave Cluster that have not been queried recently can free up memory for other tables and allow for a better use of available resources. To help identify unused tables in the ...
https://dev.mysql.com/doc/heatwave-aws/en/heatwave-aws-hwaml-evaluate-model.html
The lower pane shows details for the model including Training table, Target column, Description, Selected algorithm, Machine learning task, and Training score. Select table: The prompt has a reminder of the name of the training table. Select a test ... Evaluate a MySQL HeatWave AutoML model 13.3 Evaluate a MySQL HeatWave AutoML model Evaluate a MySQL HeatWave AutoML model includes scores for the model, predictions and ...
https://dev.mysql.com/doc/heatwave-aws/en/heatwave-aws-mysql-configuration-details.html
Click the name of the configuration to open the Table 19-1 for the selected DB System. The following tables describe the information provided on the MySQL Configuration Details page. Table 19-1 Tabs on MySQL Configuration Details Page Name ... MySQL ...
https://dev.mysql.com/doc/refman/8.4/en/alter-tablespace.html
It can be used to add a new data file to, or to drop a data file from an NDB tablespace. It can also be used to rename an NDB Cluster Disk Data tablespace, rename an InnoDB general tablespace, encrypt an InnoDB general tablespace, or mark an InnoDB ...You may optionally follow size with a one-letter abbreviation for an order of magnitude, similar to those used in ...
https://dev.mysql.com/doc/refman/8.4/en/any-in-some-subqueries.html
The expression is TRUE if table t2 contains (21,14,7) because there is a value 7 in t2 that is less than 10. The expression is FALSE if table t2 contains (20,10), or if table t2 is empty. The expression is unknown (that is, NULL) if table t2 ...When ...
https://dev.mysql.com/doc/refman/8.4/en/audit-log-filtering.html
Note For audit log filtering to work as described here, the audit log plugin and the accompanying audit tables and functions must be installed. If the plugin is installed without the accompanying audit tables and functions needed for rule-based ...
https://dev.mysql.com/doc/refman/8.4/en/charset-examples.html
Example 1: Table and Column Definition CREATE TABLE t1 ( c1 CHAR(10) CHARACTER SET latin1 COLLATE latin1_german1_ci ) DEFAULT CHARACTER SET latin2 COLLATE latin2_bin; Here we have a column with a latin1 character set and a latin1_german1_ci ... The ...
https://dev.mysql.com/doc/refman/8.4/en/creating-spatial-indexes.html
For InnoDB and MyISAM tables, MySQL can create spatial indexes using syntax similar to that for creating regular indexes, but using the SPATIAL keyword. To drop spatial indexes, use ALTER TABLE or DROP INDEX: With ALTER TABLE: ALTER TABLE geom DROP ...For storage engines that support nonspatial indexing of spatial columns, the engine creates a B-tree ...
https://dev.mysql.com/doc/refman/8.4/en/faqs-stored-procs.html
You can obtain information about existing stored procedures using the ROUTINES table in the INFORMATION_SCHEMA database (see Section 28.3.30, “The INFORMATION_SCHEMA ROUTINES Table”). For a database named dbname, use this query on the ...Where ...