Search Results
                    
                    
            https://dev.mysql.com/doc/refman/8.4/en/show-index.html
                                These two statements are equivalent: SHOW INDEX FROM mytable FROM mydb; SHOW INDEX FROM mydb.mytable; The optional EXTENDED keyword causes the output to include information about hidden indexes that MySQL uses internally and are not accessible by ...
                                            
                https://dev.mysql.com/doc/internals/en/frm-file-format.html
                                 Regardless of the storage engine you choose, every MySQL table you create is represented on disk by a .frm file that describes the table's format (that is, the table definition). The .frm format is the same on all platforms, but in the description ...The file bears the same name as the table, with an .frm ...
                                            
                https://dev.mysql.com/doc/ndbapi/en/ndb-error-codes-schema-error.html
                                 The following list enumerates all NDB errors of type SE (Schema error). 
                                            
                https://dev.mysql.com/doc/ndbapi/en/ndb-ndbtransaction.html
                                NdbTransaction::getNdbIndexOperation() Description This method is used to create an NdbIndexOperation associated with a given table. NdbTransaction::getNdbIndexScanOperation() Description This method is used to create an NdbIndexScanOperation ...A ...
                                            
                https://dev.mysql.com/doc/heatwave/en/mys-hwaml-prepare-a-forecasting-model.html
                                To ensure reliable predictions, you should create an additional validation dataset. You can reserve 20% of the records in the training dataset to create the validation dataset. mysql> CREATE DATABASE forecasting_data; mysql> USE forecasting_data; ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/partitioning-info.html
                                Methods of obtaining such information include the following: Using the SHOW CREATE TABLE statement to view the partitioning clauses used in creating a partitioned table. A new row event is created for a modification that takes place in a different ... This section discusses obtaining information about existing partitions, which can be done in a number of ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/replication-features-invoked.html
                                The following statements are replicated using statement-based replication: CREATE EVENT ALTER EVENT DROP EVENT CREATE PROCEDURE DROP PROCEDURE CREATE FUNCTION DROP FUNCTION CREATE TRIGGER DROP TRIGGER However, the effects of features created, ...
                                            
                https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-prepare-a-forecasting-model.html
                                To ensure reliable predictions, you should create an additional validation dataset. You can reserve 20% of the records in the training dataset to create the validation dataset. mysql> CREATE DATABASE forecasting_data; mysql> USE forecasting_data; ...
                                            
                https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-install-agent-windows-service.html
                                The installation is performed using the command prompt (cmd.exe); as with installing or removing any Windows service, it must also be done as a user having sufficient permissions, such the system Administrator account. Follow these steps: If the ...
                                            
                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. Scaffolding a Database Using .NET Core CLI Initialize a valid .NET Core project and console application using the .NET Core command-line interface (CLI) and then ... Scaffolding a database produces an Entity Framework model from an existing ...