Search Results
https://dev.mysql.com/doc/refman/8.4/en/replication-problems.html
If you decide that the replica can skip the next statement from the source, issue the following statements: mysql> SET GLOBAL sql_replica_skip_counter = N; mysql> START REPLICA; The value of N should be 1 if the next statement from the source does ... If you have followed the instructions but your replication setup is not working, the first thing to do is check the error log for ...
https://dev.mysql.com/doc/refman/8.4/en/replication-sbr-rbr.html
For InnoDB: An INSERT statement that uses AUTO_INCREMENT blocks other nonconflicting INSERT statements. SELECT INSERT statements with AUTO_INCREMENT UPDATE or DELETE statements with WHERE clauses that do not use keys or do not change most of the ...
https://dev.mysql.com/doc/refman/8.4/en/show-table-status.html
SHOW TABLE STATUS [{FROM | IN} db_name] [LIKE 'pattern' | WHERE expr] SHOW TABLE STATUS works like SHOW TABLES, but provides a lot of information about each non-TEMPORARY table. You can also get this list using the mysqlshow --status db_name ...
https://dev.mysql.com/doc/refman/8.4/en/sql-mode.html
This mode can be useful if 0 has been stored in a table's AUTO_INCREMENT column. The MySQL server can operate in different SQL modes, and can apply these modes differently for different clients, depending on the value of the sql_mode system ...
https://dev.mysql.com/doc/refman/8.4/en/view-updatability.html
Some views are updatable and references to them can be used to specify tables to be updated in data change statements. That is, you can use them in statements such as UPDATE, DELETE, or INSERT to update the contents of the underlying table. Derived ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-data-structures.html
This does not apply to NULL columns (because such columns have a default of NULL), or to AUTO_INCREMENT columns (which have an implied default value). This section describes C API data structures other than those used for prepared statements, the ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-function-reference.html
The following table summarizes all functions available for the MySQL C API.
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-how-to-import-onnx.html
The table that you load the model into must have the following columns: chunk_id: The recommended parameters are INT AUTO_INCREMENT PRIMARY KEY. For example: mysql> CREATE TABLE model_table (chunk_id INT AUTO_INCREMENT PRIMARY KEY, model_object ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-model-sharing.html
This topic describes how to grant other users access to a model you create. Before You Begin Share Your Models Export the Model to Share Set Up Other User with Required Privileges Importing Shared Model Run AutoML Routines on Imported Model What's ...
https://dev.mysql.com/doc/workbench/en/wb-getting-started-tutorial-creating-a-model.html
Change moviesid to movie_id and keep the Datatype as INT, and also select the PK (PRIMARY KEY), NN (NOT NULL), and AI (AUTO_INCREMENT) check boxes. This tutorial describes how to create a new database model and how to forward-engineer a model to a ...