Search



Search Results
Displaying 1211 to 1220 of 4201 total results
https://dev.mysql.com/doc/refman/8.4/en/binary-log.html
The binary log contains “events” that describe database changes such as table creation operations or changes to table data. This is done to ensure that you can re-create an exact copy of your tables by applying the log during a backup operation. The number increases each time the server creates a new log file, thus creating an ordered series of ...It also contains events for statements that ...
https://dev.mysql.com/doc/refman/8.4/en/charset-column.html
CREATE TABLE t1 ( col1 CHAR(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci ) CHARACTER SET latin1 COLLATE latin1_bin; The character set and collation are specified for the column, so they are used. CREATE TABLE t1 ( col1 CHAR(10) CHARACTER SET ...To see the default collation for each character set, use the SHOW CHARACTER SET statement or query the INFORMATION_SCHEMA CHARACTER_SETS ... Every ...
https://dev.mysql.com/doc/refman/8.4/en/fulltext-search-ngram.html
Creating a FULLTEXT Index that Uses the ngram Parser To create a FULLTEXT index that uses the ngram parser, specify WITH PARSER ngram with CREATE TABLE, ALTER TABLE, or CREATE INDEX. The following example demonstrates creating a table with an ngram ...For a stopword list applicable to Chinese, Japanese, or Korean, you must create your ... The built-in MySQL full-text parser uses the white space between words as a delimiter to determine where words begin and end, ...
https://dev.mysql.com/doc/internals/en/sql-directory.html
Programs for handling SQL commands. The "core" of MySQL. These are the .c and .cc files in the sql directory: derror.cc --- read language-dependent message file des_key_file.cc --- load DES keys from plaintext file discover.cc --- Functions for ...
https://dev.mysql.com/doc/mysql-em-plugin/en/myoem-config-metric-innodbfulltext-category.html
Server Stopword Table Name of the table containing a list of words to ignore when creating an InnoDB FULLTEXT index, in the format db_name/table_name. User Stopword Table Name of the table containing a list of words to ignore when creating an InnoDB ...Table 7.15 InnoDB Fulltext Configuration Metrics NameDescriptionAux Table Specifies the qualified name of an InnoDB table containing a FULLTEXT ...
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/refman/8.4/en/handler-scope.html
However, SQLSTATE handlers take precedence over SQLEXCEPTION handlers, so if the table t is nonexistent, the DROP TABLE statement raises a condition that activates the SQLSTATE handler: mysql> CALL p1(); +--------------------------------+ | msg | ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/adding-loadable-function.html
To remove functions, use DROP FUNCTION: DROP FUNCTION metaphon; DROP FUNCTION myfunc_double; DROP FUNCTION myfunc_int; DROP FUNCTION sequence; DROP FUNCTION lookup; DROP FUNCTION reverse_lookup; DROP FUNCTION avgcost; The CREATE FUNCTION and DROP ...
https://dev.mysql.com/doc/connectors/en/connector-net-entityframework-core-scaffold-example.html
The resulting entities are created and mapped to the tables in the specified database. Scaffold-DbContext "connection-string" MySql.EntityFrameworkCore -OutputDir sakila -f Visual Studio creates a new sakila folder inside the project, which contains ...For an overview of the requirements to use EF Core with MySQL, see Table 4.3, “Connector/NET Versions and Entity Framework Core ...
https://dev.mysql.com/doc/connector-net/en/connector-net-entityframework-core-scaffold-example.html
The resulting entities are created and mapped to the tables in the specified database. Scaffold-DbContext "connection-string" MySql.EntityFrameworkCore -OutputDir sakila -f Visual Studio creates a new sakila folder inside the project, which contains ...For an overview of the requirements to use EF Core with MySQL, see Table 7.1, “Connector/NET Versions and Entity Framework Core ...
Displaying 1211 to 1220 of 4201 total results