Search Results
https://dev.mysql.com/doc/refman/8.4/en/server-shutdown.html
Depending on how shutdown was initiated, the server might create a thread to handle the shutdown process. If shutdown was requested by a client, a shutdown thread is created. If shutdown is the result of receiving a SIGTERM signal, the signal thread ... The server shutdown process takes place as follows: The shutdown process is ...
https://dev.mysql.com/doc/mysql-ai/9.4/en/mys-ai-aml-training-an-anomaly-detection-model.html
mysql> SELECT model_id, model_handle, train_table_name FROM ML_SCHEMA_user1.MODEL_CATALOG WHERE model_handle = 'anomaly_detection_semi_supervised_use_case'; ...Requirements for Anomaly Detection Training Consider the following based on the type of ... After preparing the data for an anomaly detection model, you can train the ...
https://dev.mysql.com/doc/ndbapi/en/ndb-examples-synchronous-transactions.html
It first creates a database ndb_examples and a table api_simple (if these objects do not already exist) using the MySQL C API with an SQL node, then performs a series of basic data operations (insert, update, read, and select) on this table using ...
https://dev.mysql.com/doc/mysql-em-plugin/en/myoem-config-metric-environment-category.html
Keep Files On Create Enabled If a MyISAM table is created with a DATA DIRECTORY or INDEX DIRECTORY option and an existing .MYD or .MYI file is found, MyISAM always returns an error. Show Old Temporals Enabled Whether SHOW CREATE TABLE output ...
https://dev.mysql.com/doc/heatwave/en/mys-hw-lakehouse-export-query-results-csv-non-json.html
Auto Parallel Load automatically gets the schema of the CSV files and creates the necessary table in the specified database and loads all the data from the CSV files into the new aggregate table. You can create the following types of URIs: OCIFS ...
https://dev.mysql.com/doc/refman/8.4/en/example-auto-increment.html
To start with an AUTO_INCREMENT value other than 1, set that value with CREATE TABLE or ALTER TABLE, like this: mysql> ALTER TABLE tbl AUTO_INCREMENT = 100; InnoDB Notes For information about AUTO_INCREMENT usage specific to InnoDB, see Section ...
https://dev.mysql.com/doc/refman/8.4/en/mysql-cluster-log-events.html
Table 25.33 Events relating to NDB Cluster schema operations Event Priority Severity Level Description CreateSchemaObject 8 INFO Schema objected created AlterSchemaObject 8 INFO Schema object updated DropSchemaObject 8 INFO Schema object dropped ...
https://dev.mysql.com/doc/mysql-enterprise-backup/8.4/en/meb-backup-process.html
It blocks DDL operations (except for those on user-created temporary tables), but not DML operations (except for those not captured by the binary log, like administrative changes to the database) on InnoDB tables. This step is skipped if no ... The ...In general, this is what happens when you run a backup operation with mysqlbackup: The InnoDB data files, redo log, binary log, and relay log files (except for the log files currently in use) are being copied into the backup, while the database server operates as ...
https://dev.mysql.com/doc/heatwave/en/mys-hwaml-using-a-recommendation-model-items-to-users.html
The following example runs ML_PREDICT_TABLE on the testing dataset previously created and sets the topk parameter to 2, so only two users are recommended. Set remove_seen to false to repeat existing interactions from the training table. Before You ... This topic describes how to generate recommended users for ...
https://dev.mysql.com/doc/heatwave/en/mys-hwaml-using-a-recommendation-model-users-to-items.html
The following example runs ML_PREDICT_TABLE on the testing dataset previously created and sets the topk parameter to 2, so only two items are recommended. Set remove_seen to false to repeat existing interactions from the training table. Before You ... This topic describes how to generate recommended items for ...