Search Results
https://dev.mysql.com/doc/workbench/en/wb-what-is-new-8.html
This section summarizes how the MySQL Workbench 8.0 release series progressed with each minor release. New requirements for the CHANGE MASTER TO replication statement (row format, primary key check). Failed login attempts and password lock time in ...
https://dev.mysql.com/doc/mysql-ai/9.4/en/mys-ai-genai-vector-store-load.html
This section describes how to generate vector embeddings for files or folders stored in , and load the embeddings into a vector store table. The following sections in this topic describe how to ingest files into a vector store: Before You Begin ...
https://dev.mysql.com/doc/workbench/en/wb-migration-database-mssql-typemapping.html
The following table shows the mapping between Microsoft SQL Server (source) data types and MySQL data types. Table 10.2 Type mapping Source Type MySQL Type Comment INT INT TINYINT TINYINT UNSIGNED flag set in MySQL. SMALLINT SMALLINT BIGINT BIGINT ...
https://dev.mysql.com/doc/internals/en/optimizer-determining-join-type.html
When evaluating a conditional expression, MySQL decides what join type the expression has. (Again: despite the word “join”, this applies for all conditional expressions, not just join expressions. index: a sequential scan on an index ALL: a ...
https://dev.mysql.com/doc/ndbapi/en/mccj-using-clusterj-operations.html
To insert a new row into the table, first create a new instance of Employee. This can be accomplished by calling the Session method newInstance(), as shown here: Employee newEmployee = session.newInstance(Employee.class); Set the Employee instance ...
https://dev.mysql.com/doc/ndbapi/en/ndb-examples-secondary-indexes.html
This program illustrates how to use secondary indexes in the NDB API. The source code for this example may be found in the NDB Cluster source tree, in storage/ndb/ndbapi-examples/ndbapi_simple_index/main.cpp.
https://dev.mysql.com/doc/ndbapi/en/ndb-ndb.html
This section provides information about the Ndb class, which models the NDB kernel; it is the primary class of the NDB API. By using several Ndb objects, it is possible to implement a multithreaded application. You should remember that one Ndb ...
https://dev.mysql.com/doc/ndbapi/en/ndb-ndbrecord.html
Decription NdbRecord is an interface which provides a mapping to a full or a partial record stored in NDB. In the latter case, it can be used in conjunction with a bitmap to assist in access. An NdbRecord can be created in NDB API programs by ...
https://dev.mysql.com/doc/ndbapi/en/ndb-nodejs-api-tablemetadata.html
The indexes array of TableMetadata contains one IndexMetadata object per table index. NDB implements a primary key as both an ordered index and a unique index, and might be viewed through the NDB API adapter as two indexes, but through a MySQL ...
https://dev.mysql.com/doc/mysql-em-plugin/en/myoem-compliance-replication-standard-rules.html
By default, the server logs the length of the event as well as the event itself and uses this information to verify that the event was written correctly. You can also cause the server to write checksums for the events using CRC32 checksums by ...