Search Results
https://dev.mysql.com/doc/refman/8.4/en/innodb-information-schema-system-tables.html
The first index is GEN_CLUST_INDEX, which is a clustered index created by InnoDB if the table does not have a user-defined clustered index. There are six columns, three of which are hidden columns created by InnoDB (DB_ROW_ID, DB_TRX_ID, and ... You ...
https://dev.mysql.com/doc/refman/8.4/en/innodb-row-format.html
Records in the clustered index contain fields for all user-defined columns. Records in the clustered index contain fields for all user-defined columns. When a table is created with ROW_FORMAT=DYNAMIC, InnoDB can store long variable-length column ...
https://dev.mysql.com/doc/mysql-enterprise-backup/8.4/en/backup-partial-options.html
The option can also be used with the backup-dir-to-image and image-to-backup-dir commands to select tables when creating or unpacking a backup image. The option can also be used with the backup-dir-to-image and image-to-backup-dir commands to select ... To select specific data to be backed up or restored, use the partial backup and restore options described in this ...
https://dev.mysql.com/doc/mysql-enterprise-backup/8.4/en/meb-files-backed-up-summary.html
The backup_history and backup_progress tables created by mysqlbackup use the CSV format, so the backup always includes some files with this extension. The backup_history and backup_progress tables created by mysqlbackup use the CSV format, so the ...
https://dev.mysql.com/doc/refman/8.4/en/alter-table-examples.html
row *************************** Table: t1 Create Table: CREATE TABLE `t2` ( `c1` int(11) DEFAULT NULL ) /*!50100 TABLESPACE ts_1 STORAGE DISK */ ENGINE=ndbcluster DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci 1 row in set (0.01 sec) To change ...For NDB tables, it is also possible to change the storage type used for a table or ...
https://dev.mysql.com/doc/connectors/en/connector-net-tutorials-ssl.html
Create a test user account to use in this tutorial and set the account to require SSL. Using the MySQL Command-Line Client, connect as root and create the user sslclient (with test as the account password). Then, grant all privileges to the new user ... In this tutorial you will learn how you can use MySQL Connector/NET to connect to a MySQL server configured to use ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-configuration-dsn-macos.html
To configure a DSN on macOS, you can either use the command-line utility (myodbc-installer), edit the odbc.ini file within the Library/ODBC directory of the user, or use the ODBC Administrator GUI. Note The ODBC Administrator is included in OS X ...
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-ssl.html
Create a test user account to use in this tutorial and set the account to require SSL. Using the MySQL Command-Line Client, connect as root and create the user sslclient (with test as the account password). Then, grant all privileges to the new user ... In this tutorial you will learn how you can use MySQL Connector/NET to connect to a MySQL server configured to use ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-configuration-dsn-macos.html
To configure a DSN on macOS, you can either use the command-line utility (myodbc-installer), edit the odbc.ini file within the Library/ODBC directory of the user, or use the ODBC Administrator GUI. Note The ODBC Administrator is included in OS X ...
https://dev.mysql.com/doc/internals/en/guided-tour-skeleton.html
This part would look different if the user had defined a primary key during the CREATE TABLE statement. Walking Through The Server Code: /sql/mysqld.cc int main(int argc, char **argv) { _cust_check_startup(); (void) thr_setconcurrency(concurrency); ... And now we're going to walk through something harder, namely the ...