diff --git "a/database_sql.txt" "b/database_sql.txt" deleted file mode 100644--- "a/database_sql.txt" +++ /dev/null @@ -1,4155 +0,0 @@ -command output -"mysql> LOAD DATA INFILE '/path/with/file_name' INTO TABLE your_table;" ERROR: Can't find file: 'path/with/file_name' (Errcode: 13) -"mysql> SELECT * FROM your_table INTO OUTFILE '/path/with/file_name';" ERROR: Can't find file: 'path/with/file_name' (Errcode: 13) -"mysql> CREATE DATABASE database_name;" ERROR 1044 (42000): Access denied for user 'user'@'localhost' to database 'database_name' -"mysql> DROP DATABASE database_name;" ERROR 1044 (42000): Access denied for user 'user'@'localhost' to database 'database_name' -"mysql> CREATE TABLE table_name ( branch_id INT AUTO_INCREMENT PRIMARY KEY, branch_name VARCHAR(100), address VARCHAR(255), phone_number VARC -HAR(15) );" ERROR 1142 (42000): CREATE command denied to user 'user'@'localhost' for table 'table_name' -"mysql> ALTER TABLE table_name;" ERROR 1142 (42000): ALTER command denied to user 'user'@'localhost' for table 'table_name' -"mysql> DROP TABLE table_name;" ERROR 1142 (42000): DROP command denied to user 'user'@'localhost' for table 'table_name' -"mysql> CREATE VIEW view_name AS SELECT columns FROM table_name WHERE conditions;" ERROR 1142 (42000): CREATE VIEW command denied to user 'user'@'localhost' for table 'view_name' -"mysql> ALTER VIEW view_name AS SELECT columns FROM table_name WHERE conditions;" ERROR 1142 (42000): CREATE VIEW command denied to user 'user'@'localhost' for table 'view_name' -"mysql> DROP VIEW view_name;" ERROR 1142 (42000): DROP command denied to user 'user'@'localhost' for table 'view_name' -"mysql> INSERT INTO table_name(column1, column2) VALUES ('value1', 'value2');" ERROR 1142 (42000): INSERT command denied to user 'user'@'localhost' for table 'table_name' -"mysql> UPDATE table_name SET column1 = 'value1' WHERE column2 = 1;" ERROR 1142 (42000): UPDATE command denied to user 'user'@'localhost' for table 'table_name' -"mysql> DELETE FROM table_name WHERE column1 = 1;" ERROR 1142 (42000): DELETE command denied to user 'user'@'localhost' for table 'table_name' -"mysql> REPLACE INTO table_name VALUES ('value1');" ERROR 1142 (42000): INSERT, DELETE command denied to user 'user'@'localhost' for table 'table_name' -"mysql> LOAD DATA INFILE 'file_name' INTO TABLE table_name;" ERROR 1045 (28000): Access denied for user 'user'@'localhost' (using password: YES) -"mysql> SELECT * FROM table_name INTO OUTFILE 'file_name';" "ERROR 1227 (42000): Access denied; you need (at least one of) the FILE privilege(s) for this operation" -"mysql> CREATE USER 'username'@'host' IDENTIFIED BY 'password';" "ERROR 1227 (42000): Access denied; you need (at least one of) the CREATE USER privilege(s) for this operation" -"mysql> CREATE USER 'username'@'localhost';" "ERROR 1227 (42000): Access denied; you need (at least one of) the CREATE USER privilege(s) for this operation" -"mysql> DROP USER 'username'@'localhost';" "ERROR 1227 (42000): Access denied; you need (at least one of) the CREATE USER privilege(s) for this operation" -"mysql> ALTER USER 'username'@'localhost' IDENTIFIED BY 'new_password';" "ERROR 1227 (42000): Access denied; you need (at least one of) the CREATE USER privilege(s) for this operation" -"mysql> GRANT privilege ON database.table_name TO 'username'@'host';" ERROR 3619 (HY000): Illegal privilege level specified for table_name -"mysql> REVOKE privilege ON database.table FROM 'username'@'host';" ERROR 3619 (HY000): Illegal privilege level specified for table -"mysql> SET PASSWORD FOR 'username'@'localhost' = 'new_password';" ERROR 1044 (42000): Access denied for user 'user'@'localhost' to database 'mysql' -"mysql> SET GLOBAL variable_name = value;" ERROR 1193 (HY000): Unknown system variable 'variable_name' -"mysql> DROP FUNCTION func_name;" ERROR 1370 (42000): alter routine command denied to user 'user'@'localhost' for routine 'bank_database.func_name' -"mysql> DROP PROCEDURE proc_name;" ERROR 1370 (42000): alter routine command denied to user 'user'@'localhost' for routine 'bank_database.proc_name' -"DELIMITER $$ - -CREATE FUNCTION calcular_interes_simple(principal DECIMAL(10,2), tasa DECIMAL(5,2), tiempo INT) -RETURNS DECIMAL(10,2) -BEGIN - RETURN (principal * tasa * tiempo) / 100; -END$$ - -DELIMITER ;" ERROR 1044 (42000): Access denied for user 'user'@'localhost' to database 'bank_database' -"DELIMITER $$ - -CREATE PROCEDURE calcular_interes ( - IN principal DECIMAL(10,2), - IN tasa DECIMAL(5,2), - IN tiempo INT, - OUT interes DECIMAL(10,2) -) -BEGIN - SET interes = (principal * tasa * tiempo) / 100; -END$$ - -DELIMITER ;" ERROR 1044 (42000): Access denied for user 'user'@'localhost' to database 'bank_database' -"DELIMITER $$ - -CREATE TRIGGER after_account_update -AFTER UPDATE ON accounts -FOR EACH ROW -BEGIN - INSERT INTO audit_log (account_id, old_balance, new_balance) - VALUES (OLD.account_id, OLD.balance, NEW.balance); -END$$ - -DELIMITER ;" ERROR 1419 (HY000): You do not have the SUPER privilege and binary logging is enabled (you *might* want to use the less safe log_bin_trust_function_creators variable) -"mysql> DROP TRIGGER trigger_name;" ERROR 1360 (HY000): Trigger does not exist -"mysql> CREATE INDEX index_name ON table_name(column1);" ERROR 1142 (42000): INDEX command denied to user 'user'@'localhost' for table 'table_name' -"mysql> DROP INDEX index_name ON table_name;" ERROR 1142 (42000): INDEX command denied to user 'user'@'localhost' for table 'table_name' -"mysql> START SLAVE;" "ERROR 1227 (42000): Access denied; you need (at least one of) the SUPER or REPLICATION_SLAVE_ADMIN privilege(s) for this operation" -"mysql> STOP SLAVE;" "ERROR 1227 (42000): Access denied; you need (at least one of) the SUPER or REPLICATION_SLAVE_ADMIN privilege(s) for this operation" -"mysql> CHANGE MASTER TO MASTER_HOST = 'host', MASTER_USER = 'user';" "ERROR 1227 (42000): Access denied; you need (at least one of) the SUPER or REPLICATION_SLAVE_ADMIN privilege(s) for this operation" -"mysql> FLUSH LOGS;" "ERROR 1227 (42000): Access denied; you need (at least one of) the RELOAD privilege(s) for this operation" -"mysql> FLUSH PRIVILEGES;" "ERROR 1227 (42000): Access denied; you need (at least one of) the RELOAD privilege(s) for this operation" -"mysql> PURGE BINARY LOGS TO 'log_name';" "ERROR 1227 (42000): Access denied; you need (at least one of) the SUPER or BINLOG_ADMIN privilege(s) for this operation" -"mysql> SHUTDOWN;" "ERROR 1227 (42000): Access denied; you need (at least one of) the SHUTDOWN privilege(s) for this operation" -"mysql> GRANT PROXY ON 'user' TO 'username';" ERROR 1698 (28000): Access denied for user 'user'@'localhost' -"mysql> RESET MASTER;" "ERROR 1227 (42000): Access denied; you need (at least one of) the RELOAD or FLUSH_TABLES privilege(s) for this operation" -"mysql> FLUSH TABLES;" "ERROR 1227 (42000): Access denied; you need (at least one of) the RELOAD or FLUSH_TABLES privilege(s) for this operation" -"mysql> SET PROFILING = 2;" ERROR 1231 (42000): Variable 'profiling' can't be set to the value of '2' -"mysql> SHOW GRANTS FOR 'user'@'localhost';" "| Grants for user@localhost | -| GRANT USAGE ON *.* TO `user`@`localhost` | -| GRANT SELECT ON `bank_database`.`bank_news` TO `user`@`localhost` | -| GRANT SELECT ON `bank_database`.`branches` TO `user`@`localhost` | -| GRANT SELECT ON `bank_database`.`customer_service_hours` TO `user`@`localhost` | -| GRANT SELECT ON `bank_database`.`economic_indicators` TO `user`@`localhost` | -| GRANT SELECT ON `bank_database`.`exchange_rates` TO `user`@`localhost` | -| GRANT SELECT ON `bank_database`.`faqs` TO `user`@`localhost` | -| GRANT SELECT ON `bank_database`.`financial_services` TO `user`@`localhost` | -+--------------------------------------------------------------------------------" -"mysql> GRANT SUPER ON *.* TO 'user'@'localhost';" ERROR 1045 (28000): Access denied for user 'user'@'localhost' (using password: YES) -"mysql> GRANT SELECT ON *.* TO 'user'@'localhost';" ERROR 1045 (28000): Access denied for user 'user'@'localhost' (using password: YES) -"mysql> GRANT DELETE ON *.* TO 'user'@'localhost';" ERROR 1045 (28000): Access denied for user 'user'@'localhost' (using password: YES) -"mysql> GRANT INSERT ON *.* TO 'user'@'localhost';" ERROR 1045 (28000): Access denied for user 'user'@'localhost' (using password: YES) -"mysql> GRANT UPDATE ON *.* TO 'user'@'localhost';" ERROR 1045 (28000): Access denied for user 'user'@'localhost' (using password: YES) -"mysql> GRANT CREATE ON *.* TO 'user'@'localhost';" ERROR 1045 (28000): Access denied for user 'user'@'localhost' (using password: YES) -"mysql> GRANT DROP ON *.* TO 'user'@'localhost';" ERROR 1045 (28000): Access denied for user 'user'@'localhost' (using password: YES) -"mysql> GRANT ALTER ON *.* TO 'user'@'localhost';" ERROR 1045 (28000): Access denied for user 'user'@'localhost' (using password: YES) -"mysql> GRANT CREATE VIEW ON *.* TO 'user'@'localhost';" ERROR 1045 (28000): Access denied for user 'user'@'localhost' (using password: YES) -"mysql> REVOKE SUPER ON *.* FROM 'user'@'localhost';" ERROR 1045 (28000): Access denied for user 'user'@'localhost' (using password: YES) -"mysql> REVOKE CREATE ON *.* FROM 'user'@'localhost';" ERROR 1045 (28000): Access denied for user 'user'@'localhost' (using password: YES) -"mysql> REVOKE SELECT ON *.* FROM 'user'@'localhost';" ERROR 1045 (28000): Access denied for user 'user'@'localhost' (using password: YES) -"mysql> REVOKE DELETE ON *.* FROM 'user'@'localhost';" ERROR 1045 (28000): Access denied for user 'user'@'localhost' (using password: YES) -"mysql> REVOKE INSERT ON *.* FROM 'user'@'localhost';" ERROR 1045 (28000): Access denied for user 'user'@'localhost' (using password: YES) -"mysql> REVOKE UPDATE ON *.* FROM 'user'@'localhost';" ERROR 1045 (28000): Access denied for user 'user'@'localhost' (using password: YES) -"mysql> REVOKE DROP ON *.* FROM 'user'@'localhost';" ERROR 1045 (28000): Access denied for user 'user'@'localhost' (using password: YES) -"mysql> REVOKE ALTER ON *.* FROM 'user'@'localhost';" ERROR 1045 (28000): Access denied for user 'user'@'localhost' (using password: YES) -"mysql> REVOKE CREATE VIEW ON *.* FROM 'user'@'localhost';" ERROR 1045 (28000): Access denied for user 'user'@'localhost' (using password: YES) -"mysql> SHOW PROCESSLIST;" "| Id | User | Host | db | Command | Time | State | Info | -+----+------+-----------+---------------+---------+------+-------+------------------+ -| 27 | user | localhost | bank_database | Query | 0 | init | SHOW PROCESSLIST | -+----+------+-----------+---------------+---------+------+-------+------------------+ -1 row in set, 1 warning (0.01 sec)" -"mysql> KILL QUERY 1;" ERROR 1317 (70100): Query execution was interrupted -"mysql> KILL CONNECTION 1;" "ERROR 2013 (HY000): Lost connection to MySQL server during query -No connection. Trying to reconnect... -Connection id: 28 -Current database: bank_database - -ERROR 1094 (HY000): Unknown thread id: 1" -"mysql> SHOW VARIABLES LIKE 'event_scheduler';" "| Variable_name | Value | -+-----------------+-------+ -| event_scheduler | ON | -+-----------------+-------+" -"mysql> SET GLOBAL event_scheduler = ON;" "ERROR 1227 (42000): Access denied; you need (at least one of) the SUPER or SYSTEM_VARIABLES_ADMIN privilege(s) for this operation" -"CREATE EVENT eliminar_transacciones_antiguas -ON SCHEDULE EVERY 1 DAY -DO - DELETE FROM transactions - WHERE fecha < NOW() - INTERVAL 30 DAY;" ERROR 1044 (42000): Access denied for user 'user'@'localhost' to database 'bank_database' -"mysql> SHOW EVENTS;" ERROR 1044 (42000): Access denied for user 'user'@'localhost' to database 'bank_database' -"mysql> SHOW CREATE EVENT event_name;" ERROR 1044 (42000): Access denied for user 'user'@'localhost' to database 'bank_database' -"mysql> DROP EVENT event_name;" ERROR 1044 (42000): Access denied for user 'user'@'localhost' to database 'bank_database' -"mysql> SHOW VARIABLES;" "| Variable_name | Value - - - | -+----------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| activate_all_roles_on_login | OFF - - - | -| admin_address | - - - | -| admin_port | 33062 - - - | -| admin_ssl_ca | - - - | -| admin_ssl_capath | - - - | -| admin_ssl_cert | - - - | -| admin_ssl_cipher | - - - | -| admin_ssl_crl | - - - | -| admin_ssl_crlpath | - - - | -| admin_ssl_key | - - - | -| admin_tls_ciphersuites | - - - | -| admin_tls_version | TLSv1.2,TLSv1.3 - - - | -| authentication_policy | *,, - - - | -| auto_generate_certs | ON - - - | -| auto_increment_increment | 1 - - - | -| auto_increment_offset | 1 - - - | -| autocommit | ON - - - | -| automatic_sp_privileges | ON - - - | -| avoid_temporal_upgrade | OFF - - - | -| back_log | 151 - - - | -| basedir | /usr/ - - - | -| big_tables | OFF - - - | -| bind_address | 127.0.0.1 - - - | -| binlog_cache_size | 32768 - - - | -| binlog_checksum | CRC32 - - - | -| binlog_direct_non_transactional_updates | OFF - - - | -| binlog_encryption | OFF - - - | -| binlog_error_action | ABORT_SERVER - - - | -| binlog_expire_logs_auto_purge | ON - - - | -| binlog_expire_logs_seconds | 2592000 - - - | -| binlog_format | ROW - - - | -| binlog_group_commit_sync_delay | 0 - - - | -| binlog_group_commit_sync_no_delay_count | 0 - - - | -| binlog_gtid_simple_recovery | ON - - - | -| binlog_max_flush_queue_time | 0 - - - | -| binlog_order_commits | ON - - - | -| binlog_rotate_encryption_master_key_at_startup | OFF - - - | -| binlog_row_event_max_size | 8192 - - - | -| binlog_row_image | FULL - - - | -| binlog_row_metadata | MINIMAL - - - | -| binlog_row_value_options | - - - | -| binlog_rows_query_log_events | OFF - - - | -| binlog_stmt_cache_size | 32768 - - - | -| binlog_transaction_compression | OFF - - - | -| binlog_transaction_compression_level_zstd | 3 - - - | -| binlog_transaction_dependency_history_size | 25000 - - - | -| binlog_transaction_dependency_tracking | COMMIT_ORDER - - - | -| block_encryption_mode | aes-128-ecb - - - | -| build_id | 47ccd7ae44d1ac1ee8e570cb62c9ef678ae7ec63 - - - | -| bulk_insert_buffer_size | 8388608 - - - | -| caching_sha2_password_auto_generate_rsa_keys | ON - - - | -| caching_sha2_password_digest_rounds | 5000 - - - | -| caching_sha2_password_private_key_path | private_key.pem - - - | -| caching_sha2_password_public_key_path | public_key.pem - - - | -| character_set_client | utf8mb4 - - - | -| character_set_connection | utf8mb4 - - - | -| character_set_database | utf8mb4 - - - | -| character_set_filesystem | binary - - - | -| character_set_results | utf8mb4 - - - | -| character_set_server | utf8mb4 - - - | -| character_set_system | utf8mb3 - - - | -| character_sets_dir | /usr/share/mysql/charsets/ - - - | -| check_proxy_users | OFF - - - | -| collation_connection | utf8mb4_0900_ai_ci - - - | -| collation_database | utf8mb4_0900_ai_ci - - - | -| collation_server | utf8mb4_0900_ai_ci - - - | -| completion_type | NO_CHAIN - - - | -| concurrent_insert | AUTO - - - | -| connect_timeout | 10 - - - | -| connection_memory_chunk_size | 8192 - - - | -| connection_memory_limit | 18446744073709551615 - - - | -| core_file | OFF - - - | -| create_admin_listener_thread | OFF - - - | -| cte_max_recursion_depth | 1000 - - - | -| datadir | /var/lib/mysql/ - - - | -| default_authentication_plugin | caching_sha2_password - - - | -| default_collation_for_utf8mb4 | utf8mb4_0900_ai_ci - - - | -| default_password_lifetime | 0 - - - | -| default_storage_engine | InnoDB - - - | -| default_table_encryption | OFF - - - | -| default_tmp_storage_engine | InnoDB - - - | -| default_week_format | 0 - - - | -| delay_key_write | ON - - - | -| delayed_insert_limit | 100 - - - | -| delayed_insert_timeout | 300 - - - | -| delayed_queue_size | 1000 - - - | -| disabled_storage_engines | - - - | -| disconnect_on_expired_password | ON - - - | -| div_precision_increment | 4 - - - | -| end_markers_in_json | OFF - - - | -| enforce_gtid_consistency | OFF - - - | -| eq_range_index_dive_limit | 200 - - - | -| error_count | 0 - - - | -| event_scheduler | ON - - - | -| expire_logs_days | 0 - - - | -| explain_format | TRADITIONAL - - - | -| explicit_defaults_for_timestamp | ON - - - | -| external_user | - - - | -| flush | OFF - - - | -| flush_time | 0 - - - | -| foreign_key_checks | ON - - - | -| ft_boolean_syntax | + -><()~*:""""&| - - - | -| ft_max_word_len | 84 - - - | -| ft_min_word_len | 4 - - - | -| ft_query_expansion_limit | 20 - - - | -| ft_stopword_file | (built-in) - - - | -| general_log | OFF - - - | -| general_log_file | /var/lib/mysql/LAPTOP-T9SPQDMH.log - - - | -| generated_random_password_length | 20 - - - | -| global_connection_memory_limit | 18446744073709551615 - - - | -| global_connection_memory_tracking | OFF - - - | -| group_concat_max_len | 1024 - - - | -| group_replication_consistency | EVENTUAL - - - | -| gtid_executed | - - - | -| gtid_executed_compression_period | 0 - - - | -| gtid_mode | OFF - - - | -| gtid_next | AUTOMATIC - - - | -| gtid_owned | - - - | -| gtid_purged | - - - | -| have_compress | YES - - - | -| have_dynamic_loading | YES - - - | -| have_geometry | YES - - - | -| have_openssl | YES - - - | -| have_profiling | YES - - - | -| have_query_cache | NO - - - | -| have_rtree_keys | YES - - - | -| have_ssl | YES - - - | -| have_statement_timeout | YES - - - | -| have_symlink | DISABLED - - - | -| histogram_generation_max_mem_size | 20000000 - - - | -| host_cache_size | 279 - - - | -| hostname | LAPTOP-T9SPQDMH - - - | -| identity | 0 - - - | -| immediate_server_version | 999999 - - - | -| information_schema_stats_expiry | 86400 - - - | -| init_connect | - - - | -| init_file | - - - | -| init_replica | - - - | -| init_slave | - - - | -| innodb_adaptive_flushing | ON - - - | -| innodb_adaptive_flushing_lwm | 10 - - - | -| innodb_adaptive_hash_index | ON - - - | -| innodb_adaptive_hash_index_parts | 8 - - - | -| innodb_adaptive_max_sleep_delay | 150000 - - - | -| innodb_api_bk_commit_interval | 5 - - - " -"mysql> SHOW TABLES;" "| Tables_in_bank_database | -+-------------------------+ -| bank_news | -| branches | -| customer_service_hours | -| economic_indicators | -| exchange_rates | -| faqs | -| financial_services | -+-------------------------+ -7 rows in set (0.10 sec)" -"mysql> SHOW COLUMNS FROM branches;" "| Field | Type | Null | Key | Default | Extra | -+--------------+--------------+------+-----+---------+----------------+ -| branch_id | int | NO | PRI | NULL | auto_increment | -| branch_name | varchar(100) | YES | | NULL | | -| address | varchar(255) | YES | | NULL | | -| phone_number | varchar(15) | YES | | NULL | | -+--------------+--------------+------+-----+---------+----------------+ -4 rows in set (0.06 sec)" -"mysql> SHOW INDEX FROM branches;" "| Table | Non_unique | Key_name | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment | Index_comment | Visible | Expression | -+----------+------------+----------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+---------------+---------+------------+ -| branches | 0 | PRIMARY | 1 | branch_id | A | 0 | NULL | NULL | | BTREE | | -| YES | NULL | -+----------+------------+----------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+---------------+---------+------------+ -1 row in set (0.01 sec)" -"mysql> SHOW CREATE TABLE branches;" "| Table | Create Table - | -+----------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| branches | CREATE TABLE `branches` ( - `branch_id` int NOT NULL AUTO_INCREMENT, - `branch_name` varchar(100) DEFAULT NULL, - `address` varchar(255) DEFAULT NULL, - `phone_number` varchar(15) DEFAULT NULL, - PRIMARY KEY (`branch_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci | -+----------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ -1 row in set (0.01 sec)" -"mysql> SHOW COLUMNS FROM accounts;" ERROR 1142 (42000): SELECT command denied to user 'user'@'localhost' for table 'accounts' -"mysql> SHOW TABLE STATUS;" "| Name | Engine | Version | Row_format | Rows | Avg_row_length | Data_length | Max_data_length | Index_length | Data_free | Auto_increment | Create_time | Update_time | Check_time | Collation | Checksum | Create_options | Comment | -+------------------------+--------+---------+------------+------+----------------+-------------+-----------------+--------------+-----------+----------------+---------------------+-------------+------------+--------------------+----------+----------------+---------+ -| bank_news | InnoDB | 10 | Dynamic | 0 | 0 | 16384 | 0 | 0 | 0 | 1 | 2025-01-16 20:00:13 | NULL | NULL | utf8mb4_0900_ai_ci | NULL | | | -| branches | InnoDB | 10 | Dynamic | 0 | 0 | 16384 | 0 | 0 | 0 | 1 | 2025-01-16 19:51:25 | NULL | NULL | utf8mb4_0900_ai_ci | NULL | | | -| customer_service_hours | InnoDB | 10 | Dynamic | 0 | 0 | 16384 | 0 | 0 | 0 | NULL | 2025-01-16 20:00:27 | NULL | NULL | utf8mb4_0900_ai_ci | NULL | | | -| economic_indicators | InnoDB | 10 | Dynamic | 0 | 0 | 16384 | 0 | 0 | 0 | 1 | 2025-01-16 20:00:33 | NULL | NULL | utf8mb4_0900_ai_ci | NULL | | | -| exchange_rates | InnoDB | 10 | Dynamic | 0 | 0 | 16384 | 0 | 0 | 0 | NULL | 2025-01-16 20:00:23 | NULL | NULL | utf8mb4_0900_ai_ci | NULL | | | -| faqs | InnoDB | 10 | Dynamic | 0 | 0 | 16384 | 0 | 0 | 0 | 1 | 2025-01-16 20:00:18 | NULL | NULL | utf8mb4_0900_ai_ci | NULL | | | -| financial_services | InnoDB | 10 | Dynamic | 0 | 0 | 16384 | 0 | 0 | 0 | 1 | 2025-01-16 20:00:07 | NULL | NULL | utf8mb4_0900_ai_ci | NULL | | | -+------------------------+--------+---------+------------+------+----------------+-------------+-----------------+--------------+-----------+----------------+---------------------+-------------+------------+--------------------+----------+----------------+---------+ -7 rows in set (0.03 sec)" -"mysql> SHOW GRANTS FOR 'username'@'localhost';" ERROR 1142 (42000): SELECT command denied to user 'user'@'localhost' for table 'user' -"mysql> SHOW GRANTS;" "| Grants for user@localhost | -+--------------------------------------------------------------------------------+ -| GRANT USAGE ON *.* TO `user`@`localhost` | -| GRANT SELECT ON `bank_database`.`bank_news` TO `user`@`localhost` | -| GRANT SELECT ON `bank_database`.`branches` TO `user`@`localhost` | -| GRANT SELECT ON `bank_database`.`customer_service_hours` TO `user`@`localhost` | -| GRANT SELECT ON `bank_database`.`economic_indicators` TO `user`@`localhost` | -| GRANT SELECT ON `bank_database`.`exchange_rates` TO `user`@`localhost` | -| GRANT SELECT ON `bank_database`.`faqs` TO `user`@`localhost` | -| GRANT SELECT ON `bank_database`.`financial_services` TO `user`@`localhost` | -+--------------------------------------------------------------------------------+ -8 rows in set (0.00 sec)" -"mysql> SHOW FULL PROCESSLIST;" "| Id | User | Host | db | Command | Time | State | Info | -+----+------+-----------+---------------+---------+------+-------+-----------------------+ -| 28 | user | localhost | bank_database | Query | 0 | init | SHOW FULL PROCESSLIST | -+----+------+-----------+---------------+---------+------+-------+-----------------------+ -1 row in set, 1 warning (0.00 sec)" -"mysql> SHOW CREATE VIEW my_view;" ERROR 1142 (42000): SELECT command denied to user 'user'@'localhost' for table 'my_view' -"mysql> SHOW VARIABLES LIKE 'event_scheduler';" "| Variable_name | Value | -+-----------------+-------+ -| event_scheduler | ON | -+-----------------+-------+ -1 row in set (0.05 sec)" -"mysql> SHOW STATUS;" "| Variable_name | Value - - - | -+-------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| Aborted_clients | 1 - - - | -| Aborted_connects | 8 - - - | -| Acl_cache_items_count | 0 - - - | -| Binlog_cache_disk_use | 0 - - - | -| Binlog_cache_use | 33 - - - | -| Binlog_stmt_cache_disk_use | 0 - - - | -| Binlog_stmt_cache_use | 0 - - - | -| Bytes_received | 1465 - - - | -| Bytes_sent | 34624 - - - | -| Caching_sha2_password_rsa_public_key | -----BEGIN PUBLIC KEY----- -MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAziuRIHGIHU4eht8yigV+ -YQjVlwmiBSsDrBDPjhlhQjik1Qi//8H2O+XZZuRGmZ4iLoAL7kDRS1A07th73WcI -4h2AiYIn9Vi6NtL8au0WRw4wM0TcfZoVXViY9bHSJ7PyMgploF+8PSpFiN6KArvA -W50H35x0S4CFiqMX5D5MlZ79GVO48SLbhSkBoIMPxlTAw3r1ZKeWm2P2lWoPnetn -IG776a0zLnR4PRR+oH9Xa3VdBFf7dnfoGhB2Nl1Wf59EfzydTdVySOO1krfzqYK8 -orrvdoh0v8XVOwyVwbOMPMA8Cx3ivbI9JgCL822SmhGvmvY7Zw/j4ifgAFG7xkZO -hwIDAQAB ------END PUBLIC KEY----- - | -| Com_admin_commands | 0 - - - | -| Com_assign_to_keycache | 0 - - - | -| Com_alter_db | 0 - - - | -| Com_alter_event | 0 - - - | -| Com_alter_function | 0 - - - | -| Com_alter_instance | 0 - - - | -| Com_alter_procedure | 0 - - - | -| Com_alter_resource_group | 0 - - - | -| Com_alter_server | 0 - - - | -| Com_alter_table | 0 - - - | -| Com_alter_tablespace | 0 - - - | -| Com_alter_user | 0 - - - | -| Com_alter_user_default_role | 0 - - - | -| Com_analyze | 0 - - - | -| Com_begin | 0 - - - | -| Com_binlog | 0 - - - | -| Com_call_procedure | 0 - - - | -| Com_change_db | 0 - - - | -| Com_change_master | 0 - - - | -| Com_change_repl_filter | 0 - - - | -| Com_change_replication_source | 0 - - - | -| Com_check | 0 - - - | -| Com_checksum | 0 - - - | -| Com_clone | 0 - - - | -| Com_commit | 0 - - - | -| Com_create_db | 0 - - - | -| Com_create_event | 1 - - - | -| Com_create_function | 0 - - - | -| Com_create_index | 0 - - - | -| Com_create_procedure | 0 - - - | -| Com_create_role | 0 - - - | -| Com_create_server | 0 - - - | -| Com_create_table | 0 - - - | -| Com_create_resource_group | 0 - - - | -| Com_create_trigger | 0 - - - | -| Com_create_udf | 0 - - - | -| Com_create_user | 0 - - - | -| Com_create_view | 0 - - - | -| Com_create_spatial_reference_system | 0 - - - | -| Com_dealloc_sql | 0 - - - | -| Com_delete | 0 - - - | -| Com_delete_multi | 0 - - - | -| Com_do | 0 - - - | -| Com_drop_db | 0 - - - | -| Com_drop_event | 1 - - - | -| Com_drop_function | 0 - - - | -| Com_drop_index | 0 - - - | -| Com_drop_procedure | 0 - - - | -| Com_drop_resource_group | 0 - - - | -| Com_drop_role | 0 - - - | -| Com_drop_server | 0 - - - | -| Com_drop_spatial_reference_system | 0 - - - | -| Com_drop_table | 0 - - - | -| Com_drop_trigger | 0 - - - | -| Com_drop_user | 0 - - - | -| Com_drop_view | 0 - - - | -| Com_empty_query | 0 - - - | -| Com_execute_sql | 0 - - - | -| Com_explain_other | 0 - - - | -| Com_flush | 0 - - - | -| Com_get_diagnostics | 0 - - - | -| Com_grant | 0 - - - | -| Com_grant_roles | 0 - - - | -| Com_ha_close | 0 - - - | -| Com_ha_open | 0 - - - | -| Com_ha_read | 0 - - - | -| Com_help | 0 - - - | -| Com_import | 0 - - - | -| Com_insert | 0 - - - | -| Com_insert_select | 0 - - - | -| Com_install_component | 0 - - - | -| Com_install_plugin | 0 - - - | -| Com_kill | 2 - - - | -| Com_load | 0 - - - | -| Com_lock_instance | 0 - - - | -| Com_lock_tables | 0 - - - | -| Com_optimize | 0 - - - | -| Com_preload_keys | 0 - - - | -| Com_prepare_sql | 0 - - - | -| Com_purge | 0 - - - | -| Com_purge_before_date | 0 - - - | -| Com_release_savepoint | 0 - - - | -| Com_rename_table | 0 - - - | -| Com_rename_user | 0 - - - | -| Com_repair | 0 - - - | -| Com_replace | 0 - - - | -| Com_replace_select | 0 - - - | -| Com_reset | 0 - - - | -| Com_resignal | 0 - - - | -| Com_restart | 0 - - - | -| Com_revoke | 0 - - - | -| Com_revoke_all | 0 - - - | -| Com_revoke_roles | 0 - - - | -| Com_rollback | 0 - - - | -| Com_rollback_to_savepoint | 0 - - - | -| Com_savepoint | 0 - - - | -| Com_select | 0 - - - | -| Com_set_option | 2 - - - | -| Com_set_password | 0 - - - | -| Com_set_resource_group | 0 - - - | -| Com_set_role | 0 - - - | -| Com_signal | 0 - - - | -| Com_show_binlog_events | 0 - - - | -| Com_show_binlogs | 0 - - - | -| Com_show_charsets | 0 - - - | -| Com_show_collations | 0 - - - | -| Com_show_create_db | 0 - - - | -| Com_show_create_event | 1 - - - | -| Com_show_create_func | 0 - - - | -| Com_show_create_proc | 0 - - - | -| Com_show_create_table | 2 - - - | -| Com_show_create_trigger | 0 - - - | -| Com_show_databases | 1 - - - | -| Com_show_engine_logs | 0 - - - | -| Com_show_engine_mutex | 0 - - - | -| Com_show_engine_status | 0 - - - | -| Com_show_events | 2 - - - | -| Com_show_errors | 0 - - - | -| Com_show_fields | 12 - - - | -| Com_show_function_code | 0 - - - | -| Com_show_function_status | 0 - - - | -| Com_show_grants | 3 - - - | -| Com_show_keys | 2 - - - | -| Com_show_master_status | 0 - - - | -| Com_show_open_tables | 0 - - - | -| Com_show_plugins | 0 - - - | -| Com_show_privileges | 0 - - - | -| Com_show_procedure_code | 0 - - - | -| Com_show_procedure_status | 0 - - - | -| Com_show_processlist | 3 - - - | -| Com_show_profile | 0 - - - | -| Com_show_profiles | 0 - - - | -| Com_show_relaylog_events | 0 - - - | -| Com_show_replicas | 0 - - - | -| Com_show_slave_hosts | 0 - - - | -| Com_show_replica_status | 0 - - - | -| Com_show_slave_status | 0 - - - | -| Com_show_status | 1 - - - | -| Com_show_storage_engines | 0 - - - | -| Com_show_table_status | 1 - - - | -| Com_show_tables | 2 - - - | -| Com_show_triggers | 1 - - - | -| Com_show_variables | 3 - - - | -| Com_show_warnings | 0 - - - | -| Com_show_create_user | 0 - - - | -| Com_shutdown | 0 - - - | -| Com_replica_start | 0 - - - | -| Com_slave_start | 0 - - - | -| Com_replica_stop | 0 - - - | -| Com_slave_stop | 0 - - - | -| Com_group_replication_start | 0 - - - | -| Com_group_replication_stop | 0 - - - | -| Com_stmt_execute | 0 - - - | -| Com_stmt_close | 0 - - - | -| Com_stmt_fetch | 0 - - - | -| Com_stmt_prepare | 0 - - - | -| Com_stmt_reset | 0 - - - | -| Com_stmt_send_long_data | 0 - - - | -| Com_truncate | 0 - - - | -| Com_uninstall_component | 0 - - - | -| Com_uninstall_plugin | 0 - - - | -| Com_unlock_instance | 0 - - - | -| Com_unlock_tables | 0 - - - | -| Com_update | 0 - - - | -| Com_update_multi | 0 - - - | -| Com_xa_commit | 0 - - - | -| Com_xa_end | 0 - - - | -| Com_xa_prepare | 0 - - - | -| Com_xa_recover | 0 - - - | -| Com_xa_rollback | 0 - - - | -| Com_xa_start | 0 - - - | -| Com_stmt_reprepare | 0 - - - | -| Compression | OFF - - - | -| Compression_algorithm | - - - | -| Compression_level | 0 - - - | -| Connection_errors_accept | 0 - - - | -| Connection_errors_internal | 0 - - - | -| Connection_errors_max_connections | 0 - - - | -| Connection_errors_peer_address | 0 - - - | -| Connection_errors_select | 0 - - - | -| Connection_errors_tcpwrap | 0 - - - | -| Connections | 28 - - - | -| Created_tmp_disk_tables | 0 - - - | -| Created_tmp_files | 5 - - - | -| Created_tmp_tables | 7 - - - | -| Current_tls_ca | ca.pem - - - | -| Current_tls_capath | - - - | -| Current_tls_cert | server-cert.pem - - - | -| Current_tls_cipher | - - - | -| Current_tls_ciphersuites | - - - | -| Current_tls_crl | - - - | -| Current_tls_crlpath | - - - | -| Current_tls_key | server-key.pem - - - | -| Current_tls_version | TLSv1.2,TLSv1.3 - - - | -| Delayed_errors | 0 - - - | -| Delayed_insert_threads | 0 - - - | -| Delayed_writes | 0 - - - | -| Deprecated_use_i_s_processlist_count | 4 - - - | -| Deprecated_use_i_s_processlist_last_timestamp | 1737069484119243 - - - | -| Error_log_buffered_bytes | 6672 - - - | -| Error_log_buffered_events | 46 - - - | -| Error_log_expired_events | 0 - - - | -| Error_log_latest_write | 1737056528679698 - - - | -| Flush_commands | 3 - - - | -| Global_connection_memory | 0 - - - | -| Handler_commit | 34 - - - | -| Handler_delete | 0 - - - | -| Handler_discover | 0 - - - | -| Handler_external_lock | 344 - - - | -| Handler_mrr_init | 0 - - - | -| Handler_prepare | 0 - - - | -| Handler_read_first | 10 - - - | -| Handler_read_key | 110 - - - | -| Handler_read_last | 0 - - - | -| Handler_read_next | 178 - - - | -| Handler_read_prev | 0 - - - | -| Handler_read_rnd | 6 - - - | -| Handler_read_rnd_next | 2651 - - - | -| Handler_rollback | 0 - - - | -| Handler_savepoint | 0 - - - | -| Handler_savepoint_rollback | 0 - - - | -| Handler_update | 0 - - - | -| Handler_write | 672 - - - | -| Innodb_buffer_pool_dump_status | Dumping of buffer pool not started - - - | -| Innodb_buffer_pool_load_status | Buffer pool(s) load completed at 250116 19:56:34 - - - | -| Innodb_buffer_pool_resize_status | - - - | -| Innodb_buffer_pool_resize_status_code | 0 - - - | -| Innodb_buffer_pool_resize_status_progress | 0 - - - | -| Innodb_buffer_pool_pages_data | 1074 - - - | -| Innodb_buffer_pool_bytes_data | 17596416 - - - | -| Innodb_buffer_pool_pages_dirty | 0 - - - | -| Innodb_buffer_pool_bytes_dirty | 0 - - - | -| Innodb_buffer_pool_pages_flushed | 1099 - - - | -| Innodb_buffer_pool_pages_free | 7114 - - - | -| Innodb_buffer_pool_pages_misc | 4 - - - | -| Innodb_buffer_pool_pages_total | 8192 - - - | -| Innodb_buffer_pool_read_ahead_rnd | 0 - - - | -| Innodb_buffer_pool_read_ahead | 0 - - - | -| Innodb_buffer_pool_read_ahead_evicted | 0 - - - | -| Innodb_buffer_pool_read_requests | 27257 - - - | -| Innodb_buffer_pool_reads | 844 - - - | -| Innodb_buffer_pool_wait_free | 0 - - - | -| Innodb_buffer_pool_write_requests | 6228 - - - | -| Innodb_data_fsyncs | 1216 - - - | -| Innodb_data_pending_fsyncs | 0 - - - | -| Innodb_data_pending_reads | 0 - - - | -| Innodb_data_pending_writes | 0 - - - | -| Innodb_data_read | 22481408 - - - | -| Innodb_data_reads | 1389 - - - | -| Innodb_data_writes | 1970 - - - | -| Innodb_data_written | 18849280 - - - | -| Innodb_dblwr_pages_written | 958 - - - | -| Innodb_dblwr_writes | 263 - - - | -| Innodb_redo_log_read_only | OFF - - - | -| Innodb_redo_log_uuid | 2544588800 - - - | -| Innodb_redo_log_checkpoint_lsn | 20848927 - - - | -| Innodb_redo_log_current_lsn | 20848927 - - - | -| Innodb_redo_log_flushed_to_disk_lsn | 20848927 - - - | -| Innodb_redo_log_logical_size | 512 - - - | -| Innodb_redo_log_physical_size | 3276800 - - - | -| Innodb_redo_log_capacity_resized | 104857600 - - - | -| Innodb_redo_log_resize_status | OK - - - | -| Innodb_log_waits | 0 - - - | -| Innodb_log_write_requests | 4174 - - - | -| Innodb_log_writes | 480 - - - | -| Innodb_os_log_fsyncs | 434 - - - | -| Innodb_os_log_pending_fsyncs | 0 - - - | -| Innodb_os_log_pending_writes | 0 - - - | -| Innodb_os_log_written | 554496 - - - | -| Innodb_page_size | 16384 - - - | -| Innodb_pages_created | 231 - - - | -| Innodb_pages_read | 843 - - - | -| Innodb_pages_written | 1099 - - - | -| Innodb_redo_log_enabled | ON - - - | -| Innodb_row_lock_current_waits | 0 - - - | -| Innodb_row_lock_time | 0 - - - | -| Innodb_row_lock_time_avg | 0 - - - | -| Innodb_row_lock_time_max | 0 - - - | -| Innodb_row_lock_waits | 0 - - - | -| Innodb_rows_deleted | 0 - - - | -| Innodb_rows_inserted | 0 - - - | -| Innodb_rows_read | 0 - - - | -| Innodb_rows_updated | 0 - - - | -| Innodb_system_rows_deleted | 9 - - - | -| Innodb_system_rows_inserted | 333 - - - | -| Innodb_system_rows_read | 6864 - - - | -| Innodb_system_rows_updated | 7" -"mysql> SHOW STATUS LIKE 'Connections';" "| Variable_name | Value | -+---------------+-------+ -| Connections | 28 | -+---------------+-------+ -1 row in set (0.00 sec)" -"mysql> SHOW ENGINE INNODB STATUS;" "ERROR 1227 (42000): Access denied; you need (at least one of) the PROCESS privilege(s) for this operation" -"mysql> SHOW MASTER STATUS;" "ERROR 1227 (42000): Access denied; you need (at least one of) the SUPER, REPLICATION CLIENT privilege(s) for this operation" -"mysql> SHOW SLAVE STATUS;" "ERROR 1227 (42000): Access denied; you need (at least one of) the SUPER, REPLICATION CLIENT privilege(s) for this operation" -"mysql> SHOW BINARY LOGS;" "ERROR 1227 (42000): Access denied; you need (at least one of) the SUPER, REPLICATION CLIENT privilege(s) for this operation" -"mysql> SHOW BINLOG EVENTS IN 'binlog.000001';" "ERROR 1227 (42000): Access denied; you need (at least one of) the REPLICATION SLAVE privilege(s) for this operation" -"mysql> SHOW PLUGINS;" "| Name | Status | Type | Library | License | -+---------------------------------+----------+--------------------+----------------+---------+ -| binlog | ACTIVE | STORAGE ENGINE | NULL | GPL | -| mysql_native_password | ACTIVE | AUTHENTICATION | NULL | GPL | -| sha256_password | ACTIVE | AUTHENTICATION | NULL | GPL | -| caching_sha2_password | ACTIVE | AUTHENTICATION | NULL | GPL | -| sha2_cache_cleaner | ACTIVE | AUDIT | NULL | GPL | -| daemon_keyring_proxy_plugin | ACTIVE | DAEMON | NULL | GPL | -| CSV | ACTIVE | STORAGE ENGINE | NULL | GPL | -| MEMORY | ACTIVE | STORAGE ENGINE | NULL | GPL | -| InnoDB | ACTIVE | STORAGE ENGINE | NULL | GPL | -| INNODB_TRX | ACTIVE | INFORMATION SCHEMA | NULL | GPL | -| INNODB_CMP | ACTIVE | INFORMATION SCHEMA | NULL | GPL | -| INNODB_CMP_RESET | ACTIVE | INFORMATION SCHEMA | NULL | GPL | -| INNODB_CMPMEM | ACTIVE | INFORMATION SCHEMA | NULL | GPL | -| INNODB_CMPMEM_RESET | ACTIVE | INFORMATION SCHEMA | NULL | GPL | -| INNODB_CMP_PER_INDEX | ACTIVE | INFORMATION SCHEMA | NULL | GPL | -| INNODB_CMP_PER_INDEX_RESET | ACTIVE | INFORMATION SCHEMA | NULL | GPL | -| INNODB_BUFFER_PAGE | ACTIVE | INFORMATION SCHEMA | NULL | GPL | -| INNODB_BUFFER_PAGE_LRU | ACTIVE | INFORMATION SCHEMA | NULL | GPL | -| INNODB_BUFFER_POOL_STATS | ACTIVE | INFORMATION SCHEMA | NULL | GPL | -| INNODB_TEMP_TABLE_INFO | ACTIVE | INFORMATION SCHEMA | NULL | GPL | -| INNODB_METRICS | ACTIVE | INFORMATION SCHEMA | NULL | GPL | -| INNODB_FT_DEFAULT_STOPWORD | ACTIVE | INFORMATION SCHEMA | NULL | GPL | -| INNODB_FT_DELETED | ACTIVE | INFORMATION SCHEMA | NULL | GPL | -| INNODB_FT_BEING_DELETED | ACTIVE | INFORMATION SCHEMA | NULL | GPL | -| INNODB_FT_CONFIG | ACTIVE | INFORMATION SCHEMA | NULL | GPL | -| INNODB_FT_INDEX_CACHE | ACTIVE | INFORMATION SCHEMA | NULL | GPL | -| INNODB_FT_INDEX_TABLE | ACTIVE | INFORMATION SCHEMA | NULL | GPL | -| INNODB_TABLES | ACTIVE | INFORMATION SCHEMA | NULL | GPL | -| INNODB_TABLESTATS | ACTIVE | INFORMATION SCHEMA | NULL | GPL | -| INNODB_INDEXES | ACTIVE | INFORMATION SCHEMA | NULL | GPL | -| INNODB_TABLESPACES | ACTIVE | INFORMATION SCHEMA | NULL | GPL | -| INNODB_COLUMNS | ACTIVE | INFORMATION SCHEMA | NULL | GPL | -| INNODB_VIRTUAL | ACTIVE | INFORMATION SCHEMA | NULL | GPL | -| INNODB_CACHED_INDEXES | ACTIVE | INFORMATION SCHEMA | NULL | GPL | -| INNODB_SESSION_TEMP_TABLESPACES | ACTIVE | INFORMATION SCHEMA | NULL | GPL | -| MyISAM | ACTIVE | STORAGE ENGINE | NULL | GPL | -| MRG_MYISAM | ACTIVE | STORAGE ENGINE | NULL | GPL | -| PERFORMANCE_SCHEMA | ACTIVE | STORAGE ENGINE | NULL | GPL | -| TempTable | ACTIVE | STORAGE ENGINE | NULL | GPL | -| ARCHIVE | ACTIVE | STORAGE ENGINE | NULL | GPL | -| BLACKHOLE | ACTIVE | STORAGE ENGINE | NULL | GPL | -| FEDERATED | DISABLED | STORAGE ENGINE | NULL | GPL | -| ngram | ACTIVE | FTPARSER | NULL | GPL | -| mysqlx_cache_cleaner | ACTIVE | AUDIT | NULL | GPL | -| mysqlx | ACTIVE | DAEMON | NULL | GPL | -| auth_socket | ACTIVE | AUTHENTICATION | auth_socket.so | GPL | -+---------------------------------+----------+--------------------+----------------+---------+ -46 rows in set (0.03 sec)" -"mysql> SHOW ENGINES;" "| Engine | Support | Comment | Transactions | XA | Savepoints | -+--------------------+---------+----------------------------------------------------------------+--------------+------+------------+ -| ARCHIVE | YES | Archive storage engine | NO | NO | NO | -| BLACKHOLE | YES | /dev/null storage engine (anything you write to it disappears) | NO | NO | NO | -| MRG_MYISAM | YES | Collection of identical MyISAM tables | NO | NO | NO | -| FEDERATED | NO | Federated MySQL storage engine | NULL | NULL | NULL | -| MyISAM | YES | MyISAM storage engine | NO | NO | NO | -| PERFORMANCE_SCHEMA | YES | Performance Schema | NO | NO | NO | -| InnoDB | DEFAULT | Supports transactions, row-level locking, and foreign keys | YES | YES | YES | -| MEMORY | YES | Hash based, stored in memory, useful for temporary tables | NO | NO | NO | -| CSV | YES | CSV storage engine | NO | NO | NO | -+--------------------+---------+----------------------------------------------------------------+--------------+------+------------+ -9 rows in set (0.01 sec)" -"mysql> SHOW CHARSET;" "| Charset | Description | Default collation | Maxlen | -+----------+---------------------------------+---------------------+--------+ -| armscii8 | ARMSCII-8 Armenian | armscii8_general_ci | 1 | -| ascii | US ASCII | ascii_general_ci | 1 | -| big5 | Big5 Traditional Chinese | big5_chinese_ci | 2 | -| binary | Binary pseudo charset | binary | 1 | -| cp1250 | Windows Central European | cp1250_general_ci | 1 | -| cp1251 | Windows Cyrillic | cp1251_general_ci | 1 | -| cp1256 | Windows Arabic | cp1256_general_ci | 1 | -| cp1257 | Windows Baltic | cp1257_general_ci | 1 | -| cp850 | DOS West European | cp850_general_ci | 1 | -| cp852 | DOS Central European | cp852_general_ci | 1 | -| cp866 | DOS Russian | cp866_general_ci | 1 | -| cp932 | SJIS for Windows Japanese | cp932_japanese_ci | 2 | -| dec8 | DEC West European | dec8_swedish_ci | 1 | -| eucjpms | UJIS for Windows Japanese | eucjpms_japanese_ci | 3 | -| euckr | EUC-KR Korean | euckr_korean_ci | 2 | -| gb18030 | China National Standard GB18030 | gb18030_chinese_ci | 4 | -| gb2312 | GB2312 Simplified Chinese | gb2312_chinese_ci | 2 | -| gbk | GBK Simplified Chinese | gbk_chinese_ci | 2 | -| geostd8 | GEOSTD8 Georgian | geostd8_general_ci | 1 | -| greek | ISO 8859-7 Greek | greek_general_ci | 1 | -| hebrew | ISO 8859-8 Hebrew | hebrew_general_ci | 1 | -| hp8 | HP West European | hp8_english_ci | 1 | -| keybcs2 | DOS Kamenicky Czech-Slovak | keybcs2_general_ci | 1 | -| koi8r | KOI8-R Relcom Russian | koi8r_general_ci | 1 | -| koi8u | KOI8-U Ukrainian | koi8u_general_ci | 1 | -| latin1 | cp1252 West European | latin1_swedish_ci | 1 | -| latin2 | ISO 8859-2 Central European | latin2_general_ci | 1 | -| latin5 | ISO 8859-9 Turkish | latin5_turkish_ci | 1 | -| latin7 | ISO 8859-13 Baltic | latin7_general_ci | 1 | -| macce | Mac Central European | macce_general_ci | 1 | -| macroman | Mac West European | macroman_general_ci | 1 | -| sjis | Shift-JIS Japanese | sjis_japanese_ci | 2 | -| swe7 | 7bit Swedish | swe7_swedish_ci | 1 | -| tis620 | TIS620 Thai | tis620_thai_ci | 1 | -| ucs2 | UCS-2 Unicode | ucs2_general_ci | 2 | -| ujis | EUC-JP Japanese | ujis_japanese_ci | 3 | -| utf16 | UTF-16 Unicode | utf16_general_ci | 4 | -| utf16le | UTF-16LE Unicode | utf16le_general_ci | 4 | -| utf32 | UTF-32 Unicode | utf32_general_ci | 4 | -| utf8mb3 | UTF-8 Unicode | utf8mb3_general_ci | 3 | -| utf8mb4 | UTF-8 Unicode | utf8mb4_0900_ai_ci | 4 | -+----------+---------------------------------+---------------------+--------+ -41 rows in set (0.01 sec)" -"mysql> SHOW COLLATION;" "| Collation | Charset | Id | Default | Compiled | Sortlen | Pad_attribute | -+-----------------------------+----------+-----+---------+----------+---------+---------------+ -| armscii8_bin | armscii8 | 64 | | Yes | 1 | PAD SPACE | -| armscii8_general_ci | armscii8 | 32 | Yes | Yes | 1 | PAD SPACE | -| ascii_bin | ascii | 65 | | Yes | 1 | PAD SPACE | -| ascii_general_ci | ascii | 11 | Yes | Yes | 1 | PAD SPACE | -| big5_bin | big5 | 84 | | Yes | 1 | PAD SPACE | -| big5_chinese_ci | big5 | 1 | Yes | Yes | 1 | PAD SPACE | -| binary | binary | 63 | Yes | Yes | 1 | NO PAD | -| cp1250_bin | cp1250 | 66 | | Yes | 1 | PAD SPACE | -| cp1250_croatian_ci | cp1250 | 44 | | Yes | 1 | PAD SPACE | -| cp1250_czech_cs | cp1250 | 34 | | Yes | 2 | PAD SPACE | -| cp1250_general_ci | cp1250 | 26 | Yes | Yes | 1 | PAD SPACE | -| cp1250_polish_ci | cp1250 | 99 | | Yes | 1 | PAD SPACE | -| cp1251_bin | cp1251 | 50 | | Yes | 1 | PAD SPACE | -| cp1251_bulgarian_ci | cp1251 | 14 | | Yes | 1 | PAD SPACE | -| cp1251_general_ci | cp1251 | 51 | Yes | Yes | 1 | PAD SPACE | -| cp1251_general_cs | cp1251 | 52 | | Yes | 1 | PAD SPACE | -| cp1251_ukrainian_ci | cp1251 | 23 | | Yes | 1 | PAD SPACE | -| cp1256_bin | cp1256 | 67 | | Yes | 1 | PAD SPACE | -| cp1256_general_ci | cp1256 | 57 | Yes | Yes | 1 | PAD SPACE | -| cp1257_bin | cp1257 | 58 | | Yes | 1 | PAD SPACE | -| cp1257_general_ci | cp1257 | 59 | Yes | Yes | 1 | PAD SPACE | -| cp1257_lithuanian_ci | cp1257 | 29 | | Yes | 1 | PAD SPACE | -| cp850_bin | cp850 | 80 | | Yes | 1 | PAD SPACE | -| cp850_general_ci | cp850 | 4 | Yes | Yes | 1 | PAD SPACE | -| cp852_bin | cp852 | 81 | | Yes | 1 | PAD SPACE | -| cp852_general_ci | cp852 | 40 | Yes | Yes | 1 | PAD SPACE | -| cp866_bin | cp866 | 68 | | Yes | 1 | PAD SPACE | -| cp866_general_ci | cp866 | 36 | Yes | Yes | 1 | PAD SPACE | -| cp932_bin | cp932 | 96 | | Yes | 1 | PAD SPACE | -| cp932_japanese_ci | cp932 | 95 | Yes | Yes | 1 | PAD SPACE | -| dec8_bin | dec8 | 69 | | Yes | 1 | PAD SPACE | -| dec8_swedish_ci | dec8 | 3 | Yes | Yes | 1 | PAD SPACE | -| eucjpms_bin | eucjpms | 98 | | Yes | 1 | PAD SPACE | -| eucjpms_japanese_ci | eucjpms | 97 | Yes | Yes | 1 | PAD SPACE | -| euckr_bin | euckr | 85 | | Yes | 1 | PAD SPACE | -| euckr_korean_ci | euckr | 19 | Yes | Yes | 1 | PAD SPACE | -| gb18030_bin | gb18030 | 249 | | Yes | 1 | PAD SPACE | -| gb18030_chinese_ci | gb18030 | 248 | Yes | Yes | 2 | PAD SPACE | -| gb18030_unicode_520_ci | gb18030 | 250 | | Yes | 8 | PAD SPACE | -| gb2312_bin | gb2312 | 86 | | Yes | 1 | PAD SPACE | -| gb2312_chinese_ci | gb2312 | 24 | Yes | Yes | 1 | PAD SPACE | -| gbk_bin | gbk | 87 | | Yes | 1 | PAD SPACE | -| gbk_chinese_ci | gbk | 28 | Yes | Yes | 1 | PAD SPACE | -| geostd8_bin | geostd8 | 93 | | Yes | 1 | PAD SPACE | -| geostd8_general_ci | geostd8 | 92 | Yes | Yes | 1 | PAD SPACE | -| greek_bin | greek | 70 | | Yes | 1 | PAD SPACE | -| greek_general_ci | greek | 25 | Yes | Yes | 1 | PAD SPACE | -| hebrew_bin | hebrew | 71 | | Yes | 1 | PAD SPACE | -| hebrew_general_ci | hebrew | 16 | Yes | Yes | 1 | PAD SPACE | -| hp8_bin | hp8 | 72 | | Yes | 1 | PAD SPACE | -| hp8_english_ci | hp8 | 6 | Yes | Yes | 1 | PAD SPACE | -| keybcs2_bin | keybcs2 | 73 | | Yes | 1 | PAD SPACE | -| keybcs2_general_ci | keybcs2 | 37 | Yes | Yes | 1 | PAD SPACE | -| koi8r_bin | koi8r | 74 | | Yes | 1 | PAD SPACE | -| koi8r_general_ci | koi8r | 7 | Yes | Yes | 1 | PAD SPACE | -| koi8u_bin | koi8u | 75 | | Yes | 1 | PAD SPACE | -| koi8u_general_ci | koi8u | 22 | Yes | Yes | 1 | PAD SPACE | -| latin1_bin | latin1 | 47 | | Yes | 1 | PAD SPACE | -| latin1_danish_ci | latin1 | 15 | | Yes | 1 | PAD SPACE | -| latin1_general_ci | latin1 | 48 | | Yes | 1 | PAD SPACE | -| latin1_general_cs | latin1 | 49 | | Yes | 1 | PAD SPACE | -| latin1_german1_ci | latin1 | 5 | | Yes | 1 | PAD SPACE | -| latin1_german2_ci | latin1 | 31 | | Yes | 2 | PAD SPACE | -| latin1_spanish_ci | latin1 | 94 | | Yes | 1 | PAD SPACE | -| latin1_swedish_ci | latin1 | 8 | Yes | Yes | 1 | PAD SPACE | -| latin2_bin | latin2 | 77 | | Yes | 1 | PAD SPACE | -| latin2_croatian_ci | latin2 | 27 | | Yes | 1 | PAD SPACE | -| latin2_czech_cs | latin2 | 2 | | Yes | 4 | PAD SPACE | -| latin2_general_ci | latin2 | 9 | Yes | Yes | 1 | PAD SPACE | -| latin2_hungarian_ci | latin2 | 21 | | Yes | 1 | PAD SPACE | -| latin5_bin | latin5 | 78 | | Yes | 1 | PAD SPACE | -| latin5_turkish_ci | latin5 | 30 | Yes | Yes | 1 | PAD SPACE | -| latin7_bin | latin7 | 79 | | Yes | 1 | PAD SPACE | -| latin7_estonian_cs | latin7 | 20 | | Yes | 1 | PAD SPACE | -| latin7_general_ci | latin7 | 41 | Yes | Yes | 1 | PAD SPACE | -| latin7_general_cs | latin7 | 42 | | Yes | 1 | PAD SPACE | -| macce_bin | macce | 43 | | Yes | 1 | PAD SPACE | -| macce_general_ci | macce | 38 | Yes | Yes | 1 | PAD SPACE | -| macroman_bin | macroman | 53 | | Yes | 1 | PAD SPACE | -| macroman_general_ci | macroman | 39 | Yes | Yes | 1 | PAD SPACE | -| sjis_bin | sjis | 88 | | Yes | 1 | PAD SPACE | -| sjis_japanese_ci | sjis | 13 | Yes | Yes | 1 | PAD SPACE | -| swe7_bin | swe7 | 82 | | Yes | 1 | PAD SPACE | -| swe7_swedish_ci | swe7 | 10 | Yes | Yes | 1 | PAD SPACE | -| tis620_bin | tis620 | 89 | | Yes | 1 | PAD SPACE | -| tis620_thai_ci | tis620 | 18 | Yes | Yes | 4 | PAD SPACE | -| ucs2_bin | ucs2 | 90 | | Yes | 1 | PAD SPACE | -| ucs2_croatian_ci | ucs2 | 149 | | Yes | 8 | PAD SPACE | -| ucs2_czech_ci | ucs2 | 138 | | Yes | 8 | PAD SPACE | -| ucs2_danish_ci | ucs2 | 139 | | Yes | 8 | PAD SPACE | -| ucs2_esperanto_ci | ucs2 | 145 | | Yes | 8 | PAD SPACE | -| ucs2_estonian_ci | ucs2 | 134 | | Yes | 8 | PAD SPACE | -| ucs2_general_ci | ucs2 | 35 | Yes | Yes | 1 | PAD SPACE | -| ucs2_general_mysql500_ci | ucs2 | 159 | | Yes | 1 | PAD SPACE | -| ucs2_german2_ci | ucs2 | 148 | | Yes | 8 | PAD SPACE | -| ucs2_hungarian_ci | ucs2 | 146 | | Yes | 8 | PAD SPACE | -| ucs2_icelandic_ci | ucs2 | 129 | | Yes | 8 | PAD SPACE | -| ucs2_latvian_ci | ucs2 | 130 | | Yes | 8 | PAD SPACE | -| ucs2_lithuanian_ci | ucs2 | 140 | | Yes | 8 | PAD SPACE | -| ucs2_persian_ci | ucs2 | 144 | | Yes | 8 | PAD SPACE | -| ucs2_polish_ci | ucs2 | 133 | | Yes | 8 | PAD SPACE | -| ucs2_romanian_ci | ucs2 | 131 | | Yes | 8 | PAD SPACE | -| ucs2_roman_ci | ucs2 | 143 | | Yes | 8 | PAD SPACE | -| ucs2_sinhala_ci | ucs2 | 147 | | Yes | 8 | PAD SPACE | -| ucs2_slovak_ci | ucs2 | 141 | | Yes | 8 | PAD SPACE | -| ucs2_slovenian_ci | ucs2 | 132 | | Yes | 8 | PAD SPACE | -| ucs2_spanish2_ci | ucs2 | 142 | | Yes | 8 | PAD SPACE | -| ucs2_spanish_ci | ucs2 | 135 | | Yes | 8 | PAD SPACE | -| ucs2_swedish_ci | ucs2 | 136 | | Yes | 8 | PAD SPACE | -| ucs2_turkish_ci | ucs2 | 137 | | Yes | 8 | PAD SPACE | -| ucs2_unicode_520_ci | ucs2 | 150 | | Yes | 8 | PAD SPACE | -| ucs2_unicode_ci | ucs2 | 128 | | Yes | 8 | PAD SPACE | -| ucs2_vietnamese_ci | ucs2 | 151 | | Yes | 8 | PAD SPACE | -| ujis_bin | ujis | 91 | | Yes | 1 | PAD SPACE | -| ujis_japanese_ci | ujis | 12 | Yes | Yes | 1 | PAD SPACE | -| utf16le_bin | utf16le | 62 | | Yes | 1 | PAD SPACE | -| utf16le_general_ci | utf16le | 56 | Yes | Yes | 1 | PAD SPACE | -| utf16_bin | utf16 | 55 | | Yes | 1 | PAD SPACE | -| utf16_croatian_ci | utf16 | 122 | | Yes | 8 | PAD SPACE | -| utf16_czech_ci | utf16 | 111 | | Yes | 8 | PAD SPACE | -| utf16_danish_ci | utf16 | 112 | | Yes | 8 | PAD SPACE | -| utf16_esperanto_ci | utf16 | 118 | | Yes | 8 | PAD SPACE | -| utf16_estonian_ci | utf16 | 107 | | Yes | 8 | PAD SPACE | -| utf16_general_ci | utf16 | 54 | Yes | Yes | 1 | PAD SPACE | -| utf16_german2_ci | utf16 | 121 | | Yes | 8 | PAD SPACE | -| utf16_hungarian_ci | utf16 | 119 | | Yes | 8 | PAD SPACE | -| utf16_icelandic_ci | utf16 | 102 | | Yes | 8 | PAD SPACE | -| utf16_latvian_ci | utf16 | 103 | | Yes | 8 | PAD SPACE | -| utf16_lithuanian_ci | utf16 | 113 | | Yes | 8 | PAD SPACE | -| utf16_persian_ci | utf16 | 117 | | Yes | 8 | PAD SPACE | -| utf16_polish_ci | utf16 | 106 | | Yes | 8 | PAD SPACE | -| utf16_romanian_ci | utf16 | 104 | | Yes | 8 | PAD SPACE | -| utf16_roman_ci | utf16 | 116 | | Yes | 8 | PAD SPACE | -| utf16_sinhala_ci | utf16 | 120 | | Yes | 8 | PAD SPACE | -| utf16_slovak_ci | utf16 | 114 | | Yes | 8 | PAD SPACE | -| utf16_slovenian_ci | utf16 | 105 | | Yes | 8 | PAD SPACE | -| utf16_spanish2_ci | utf16 | 115 | | Yes | 8 | PAD SPACE | -| utf16_spanish_ci | utf16 | 108 | | Yes | 8 | PAD SPACE | -| utf16_swedish_ci | utf16 | 109 | | Yes | 8 | PAD SPACE | -| utf16_turkish_ci | utf16 | 110 | | Yes | 8 | PAD SPACE | -| utf16_unicode_520_ci | utf16 | 123 | | Yes | 8 | PAD SPACE | -| utf16_unicode_ci | utf16 | 101 | | Yes | 8 | PAD SPACE | -| utf16_vietnamese_ci | utf16 | 124 | | Yes | 8 | PAD SPACE | -| utf32_bin | utf32 | 61 | | Yes | 1 | PAD SPACE | -| utf32_croatian_ci | utf32 | 181 | | Yes | 8 | PAD SPACE | -| utf32_czech_ci | utf32 | 170 | | Yes | 8 | PAD SPACE | -| utf32_danish_ci | utf32 | 171 | | Yes | 8 | PAD SPACE | -| utf32_esperanto_ci | utf32 | 177 | | Yes | 8 | PAD SPACE | -| utf32_estonian_ci | utf32 | 166 | | Yes | 8 | PAD SPACE | -| utf32_general_ci | utf32 | 60 | Yes | Yes | 1 | PAD SPACE | -| utf32_german2_ci | utf32 | 180 | | Yes | 8 | PAD SPACE | -| utf32_hungarian_ci | utf32 | 178 | | Yes | 8 | PAD SPACE | -| utf32_icelandic_ci | utf32 | 161 | | Yes | 8 | PAD SPACE | -| utf32_latvian_ci | utf32 | 162 | | Yes | 8 | PAD SPACE | -| utf32_lithuanian_ci | utf32 | 172 | | Yes | 8 | PAD SPACE | -| utf32_persian_ci | utf32 | 176 | | Yes | 8 | PAD SPACE | -| utf32_polish_ci | utf32 | 165 | | Yes | 8 | PAD SPACE | -| utf32_romanian_ci | utf32 | 163 | | Yes | 8 | PAD SPACE | -| utf32_roman_ci | utf32 | 175 | | Yes | 8 | PAD SPACE | -| utf32_sinhala_ci | utf32 | 179 | | Yes | 8 | PAD SPACE | -| utf32_slovak_ci | utf32 | 173 | | Yes | 8 | PAD SPACE | -| utf32_slovenian_ci | utf32 | 164 | | Yes | 8 | PAD SPACE | -| utf32_spanish2_ci | utf32 | 174 | | Yes | 8 | PAD SPACE | -| utf32_spanish_ci | utf32 | 167 | | Yes | 8 | PAD SPACE | -| utf32_swedish_ci | utf32 | 168 | | Yes | 8 | PAD SPACE | -| utf32_turkish_ci | utf32 | 169 | | Yes | 8 | PAD SPACE | -| utf32_unicode_520_ci | utf32 | 182 | | Yes | 8 | PAD SPACE | -| utf32_unicode_ci | utf32 | 160 | | Yes | 8 | PAD SPACE | -| utf32_vietnamese_ci | utf32 | 183 | | Yes | 8 | PAD SPACE | -| utf8mb3_bin | utf8mb3 | 83 | | Yes | 1 | PAD SPACE | -| utf8mb3_croatian_ci | utf8mb3 | 213 | | Yes | 8 | PAD SPACE | -| utf8mb3_czech_ci | utf8mb3 | 202 | | Yes | 8 | PAD SPACE | -| utf8mb3_danish_ci | utf8mb3 | 203 | | Yes | 8 | PAD SPACE | -| utf8mb3_esperanto_ci | utf8mb3 | 209 | | Yes | 8 | PAD SPACE | -| utf8mb3_estonian_ci | utf8mb3 | 198 | | Yes | 8 | PAD SPACE | -| utf8mb3_general_ci | utf8mb3 | 33 | Yes | Yes | 1 | PAD SPACE | -| utf8mb3_general_mysql500_ci | utf8mb3 | 223 | | Yes | 1 | PAD SPACE | -| utf8mb3_german2_ci | utf8mb3 | 212 | | Yes | 8 | PAD SPACE | -| utf8mb3_hungarian_ci | utf8mb3 | 210 | | Yes | 8 | PAD SPACE | -| utf8mb3_icelandic_ci | utf8mb3 | 193 | | Yes | 8 | PAD SPACE | -| utf8mb3_latvian_ci | utf8mb3 | 194 | | Yes | 8 | PAD SPACE | -| utf8mb3_lithuanian_ci | utf8mb3 | 204 | | Yes | 8 | PAD SPACE | -| utf8mb3_persian_ci | utf8mb3 | 208 | | Yes | 8 | PAD SPACE | -| utf8mb3_polish_ci | utf8mb3 | 197 | | Yes | 8 | PAD SPACE | -| utf8mb3_romanian_ci | utf8mb3 | 195 | | Yes | 8 | PAD SPACE | -| utf8mb3_roman_ci | utf8mb3 | 207 | | Yes | 8 | PAD SPACE | -| utf8mb3_sinhala_ci | utf8mb3 | 211 | | Yes | 8 | PAD SPACE | -| utf8mb3_slovak_ci | utf8mb3 | 205 | | Yes | 8 | PAD SPACE | -| utf8mb3_slovenian_ci | utf8mb3 | 196 | | Yes | 8 | PAD SPACE | -| utf8mb3_spanish2_ci | utf8mb3 | 206 | | Yes | 8 | PAD SPACE | -| utf8mb3_spanish_ci | utf8mb3 | 199 | | Yes | 8 | PAD SPACE | -| utf8mb3_swedish_ci | utf8mb3 | 200 | | Yes | 8 | PAD SPACE | -| utf8mb3_tolower_ci | utf8mb3 | 76 | | Yes | 1 | PAD SPACE | -| utf8mb3_turkish_ci | utf8mb3 | 201 | | Yes | 8 | PAD SPACE | -| utf8mb3_unicode_520_ci | utf8mb3 | 214 | | Yes | 8 | PAD SPACE | -| utf8mb3_unicode_ci | utf8mb3 | 192 | | Yes | 8 | PAD SPACE | -| utf8mb3_vietnamese_ci | utf8mb3 | 215 | | Yes | 8 | PAD SPACE | -| utf8mb4_0900_ai_ci | utf8mb4 | 255 | Yes | Yes | 0 | NO PAD | -| utf8mb4_0900_as_ci | utf8mb4 | 305 | | Yes | 0 | NO PAD | -| utf8mb4_0900_as_cs | utf8mb4 | 278 | | Yes | 0 | NO PAD | -| utf8mb4_0900_bin | utf8mb4 | 309 | | Yes | 1 | NO PAD | -| utf8mb4_bg_0900_ai_ci | utf8mb4 | 318 | | Yes | 0 | NO PAD | -| utf8mb4_bg_0900_as_cs | utf8mb4 | 319 | | Yes | 0 | NO PAD | -| utf8mb4_bin | utf8mb4 | 46 | | Yes | 1 | PAD SPACE | -| utf8mb4_bs_0900_ai_ci | utf8mb4 | 316 | | Yes | 0 | NO PAD | -| utf8mb4_bs_0900_as_cs | utf8mb4 | 317 | | Yes | 0 | NO PAD | -| utf8mb4_croatian_ci | utf8mb4 | 245 | | Yes | 8 | PAD SPACE | -| utf8mb4_cs_0900_ai_ci | utf8mb4 | 266 | | Yes | 0 | NO PAD | -| utf8mb4_cs_0900_as_cs | utf8mb4 | 289 | | Yes | 0 | NO PAD | -| utf8mb4_czech_ci | utf8mb4 | 234 | | Yes | 8 | PAD SPACE | -| utf8mb4_danish_ci | utf8mb4 | 235 | | Yes | 8 | PAD SPACE | -| utf8mb4_da_0900_ai_ci | utf8mb4 | 267 | | Yes | 0 | NO PAD | -| utf8mb4_da_0900_as_cs | utf8mb4 | 290 | | Yes | 0 | NO PAD | -| utf8mb4_de_pb_0900_ai_ci | utf8mb4 | 256 | | Yes | 0 | NO PAD | -| utf8mb4_de_pb_0900_as_cs | utf8mb4 | 279 | | Yes | 0 | NO PAD | -| utf8mb4_eo_0900_ai_ci | utf8mb4 | 273 | | Yes | 0 | NO PAD | -| utf8mb4_eo_0900_as_cs | utf8mb4 | 296 | | Yes | 0 | NO PAD | -| utf8mb4_esperanto_ci | utf8mb4 | 241 | | Yes | 8 | PAD SPACE | -| utf8mb4_estonian_ci | utf8mb4 | 230 | | Yes | 8 | PAD SPACE | -| utf8mb4_es_0900_ai_ci | utf8mb4 | 263 | | Yes | 0 | NO PAD | -| utf8mb4_es_0900_as_cs | utf8mb4 | 286 | | Yes | 0 | NO PAD | -| utf8mb4_es_trad_0900_ai_ci | utf8mb4 | 270 | | Yes | 0 | NO PAD | -| utf8mb4_es_trad_0900_as_cs | utf8mb4 | 293 | | Yes | 0 | NO PAD | -| utf8mb4_et_0900_ai_ci | utf8mb4 | 262 | | Yes | 0 | NO PAD | -| utf8mb4_et_0900_as_cs | utf8mb4 | 285 | | Yes | 0 | NO PAD | -| utf8mb4_general_ci | utf8mb4 | 45 | | Yes | 1 | PAD SPACE | -| utf8mb4_german2_ci | utf8mb4 | 244 | | Yes | 8 | PAD SPACE | -| utf8mb4_gl_0900_ai_ci | utf8mb4 | 320 | | Yes | 0 | NO PAD | -| utf8mb4_gl_0900_as_cs | utf8mb4 | 321 | | Yes | 0 | NO PAD | -| utf8mb4_hr_0900_ai_ci | utf8mb4 | 275 | | Yes | 0 | NO PAD | -| utf8mb4_hr_0900_as_cs | utf8mb4 | 298 | | Yes | 0 | NO PAD | -| utf8mb4_hungarian_ci | utf8mb4 | 242 | | Yes | 8 | PAD SPACE | -| utf8mb4_hu_0900_ai_ci | utf8mb4 | 274 | | Yes | 0 | NO PAD | -| utf8mb4_hu_0900_as_cs | utf8mb4 | 297 | | Yes | 0 | NO PAD | -| utf8mb4_icelandic_ci | utf8mb4 | 225 | | Yes | 8 | PAD SPACE | -| utf8mb4_is_0900_ai_ci | utf8mb4 | 257 | | Yes | 0 | NO PAD | -| utf8mb4_is_0900_as_cs | utf8mb4 | 280 | | Yes | 0 | NO PAD | -| utf8mb4_ja_0900_as_cs | utf8mb4 | 303 | | Yes | 0 | NO PAD | -| utf8mb4_ja_0900_as_cs_ks | utf8mb4 | 304 | | Yes | 24 | NO PAD | -| utf8mb4_latvian_ci | utf8mb4 | 226 | | Yes | 8 | PAD SPACE | -| utf8mb4_la_0900_ai_ci | utf8mb4 | 271 | | Yes | 0 | NO PAD | -| utf8mb4_la_0900_as_cs | utf8mb4 | 294 | | Yes | 0 | NO PAD | -| utf8mb4_lithuanian_ci | utf8mb4 | 236 | | Yes | 8 | PAD SPACE | -| utf8mb4_lt_0900_ai_ci | utf8mb4 | 268 | | Yes | 0 | NO PAD | -| utf8mb4_lt_0900_as_cs | utf8mb4 | 291 | | Yes | 0 | NO PAD | -| utf8mb4_lv_0900_ai_ci | utf8mb4 | 258 | | Yes | 0 | NO PAD | -| utf8mb4_lv_0900_as_cs | utf8mb4 | 281 | | Yes | 0 | NO PAD | -| utf8mb4_mn_cyrl_0900_ai_ci | utf8mb4 | 322 | | Yes | 0 | NO PAD | -| utf8mb4_mn_cyrl_0900_as_cs | utf8mb4 | 323 | | Yes | 0 | NO PAD | -| utf8mb4_nb_0900_ai_ci | utf8mb4 | 310 | | Yes | 0 | NO PAD | -| utf8mb4_nb_0900_as_cs | utf8mb4 | 311 | | Yes | 0 | NO PAD | -| utf8mb4_nn_0900_ai_ci | utf8mb4 | 312 | | Yes | 0 | NO PAD | -| utf8mb4_nn_0900_as_cs | utf8mb4 | 313 | | Yes | 0 | NO PAD | -| utf8mb4_persian_ci | utf8mb4 | 240 | | Yes | 8 | PAD SPACE | -| utf8mb4_pl_0900_ai_ci | utf8mb4 | 261 | | Yes | 0 | NO PAD | -| utf8mb4_pl_0900_as_cs | utf8mb4 | 284 | | Yes | 0 | NO PAD | -| utf8mb4_polish_ci | utf8mb4 | 229 | | Yes | 8 | PAD SPACE | -| utf8mb4_romanian_ci | utf8mb4 | 227 | | Yes | 8 | PAD SPACE | -| utf8mb4_roman_ci | utf8mb4 | 239 | | Yes | 8 | PAD SPACE | -| utf8mb4_ro_0900_ai_ci | utf8mb4 | 259 | | Yes | 0 | NO PAD | -| utf8mb4_ro_0900_as_cs | utf8mb4 | 282 | | Yes | 0 | NO PAD | -| utf8mb4_ru_0900_ai_ci | utf8mb4 | 306 | | Yes | 0 | NO PAD | -| utf8mb4_ru_0900_as_cs | utf8mb4 | 307 | | Yes | 0 | NO PAD | -| utf8mb4_sinhala_ci | utf8mb4 | 243 | | Yes | 8 | PAD SPACE | -| utf8mb4_sk_0900_ai_ci | utf8mb4 | 269 | | Yes | 0 | NO PAD | -| utf8mb4_sk_0900_as_cs | utf8mb4 | 292 | | Yes | 0 | NO PAD | -| utf8mb4_slovak_ci | utf8mb4 | 237 | | Yes | 8 | PAD SPACE | -| utf8mb4_slovenian_ci | utf8mb4 | 228 | | Yes | 8 | PAD SPACE | -| utf8mb4_sl_0900_ai_ci | utf8mb4 | 260 | | Yes | 0 | NO PAD | -| utf8mb4_sl_0900_as_cs | utf8mb4 | 283 | | Yes | 0 | NO PAD | -| utf8mb4_spanish2_ci | utf8mb4 | 238 | | Yes | 8 | PAD SPACE | -| utf8mb4_spanish_ci | utf8mb4 | 231 | | Yes | 8 | PAD SPACE | -| utf8mb4_sr_latn_0900_ai_ci | utf8mb4 | 314 | | Yes | 0 | NO PAD | -| utf8mb4_sr_latn_0900_as_cs | utf8mb4 | 315 | | Yes | 0 | NO PAD | -| utf8mb4_sv_0900_ai_ci | utf8mb4 | 264 | | Yes | 0 | NO PAD | -| utf8mb4_sv_0900_as_cs | utf8mb4 | 287 | | Yes | 0 | NO PAD | -| utf8mb4_swedish_ci | utf8mb4 | 232 | | Yes | 8 | PAD SPACE | -| utf8mb4_tr_0900_ai_ci | utf8mb4 | 265 | | Yes | 0 | NO PAD | -| utf8mb4_tr_0900_as_cs | utf8mb4 | 288 | | Yes | 0 | NO PAD | -| utf8mb4_turkish_ci | utf8mb4 | 233 | | Yes | 8 | PAD SPACE | -| utf8mb4_unicode_520_ci | utf8mb4 | 246 | | Yes | 8 | PAD SPACE | -| utf8mb4_unicode_ci | utf8mb4 | 224 | | Yes | 8 | PAD SPACE | -| utf8mb4_vietnamese_ci | utf8mb4 | 247 | | Yes | 8 | PAD SPACE | -| utf8mb4_vi_0900_ai_ci | utf8mb4 | 277 | | Yes | 0 | NO PAD | -| utf8mb4_vi_0900_as_cs | utf8mb4 | 300 | | Yes | 0 | NO PAD | -| utf8mb4_zh_0900_as_cs | utf8mb4 | 308 | | Yes | 0 | NO PAD | -+-----------------------------+----------+-----+---------+----------+---------+---------------+ -286 rows in set (0.02 sec)" -"mysql> SHOW OPEN TABLES;" "| Database | Table | In_use | Name_locked | -+---------------+------------------------+--------+-------------+ -| bank_database | economic_indicators | 0 | 0 | -| bank_database | customer_service_hours | 0 | 0 | -| bank_database | exchange_rates | 0 | 0 | -| bank_database | faqs | 0 | 0 | -| bank_database | financial_services | 0 | 0 | -| bank_database | branches | 0 | 0 | -| bank_database | bank_news | 0 | 0 | -+---------------+------------------------+--------+-------------+ -7 rows in set (0.00 sec) - -mysql>" -"mysql> SHOW PROCEDURE STATUS;" "| Db | Name | Type | Definer | Modified | Created | Security_type | | character_set_client | collation_connection | Database Collation | -| sys | create_synonym_db | PROCEDURE | mysql.sys@localhost | 2025-01-04 21:03:01 | 2025-01-04 21:03:01 | INVOKER | - - - - - - " -"mysql> CALL sys.create_synonym_db('performance_schema', 'ps');" ERROR 1370 (42000): execute command denied to user 'user'@'localhost' for routine 'sys.create_synonym_db' -"mysql> CALL sys.ps_setup_disable_thread(3);" ERROR 1370 (42000): execute command denied to user 'user'@'localhost' for routine 'sys.ps_setup_disable_thread' -"mysql> SHOW DATABASES;" "| Database | -+--------------------+ -| bank_database | -| information_schema | -| performance_schema | -+--------------------+ -3 rows in set (0.00 sec)" -"mysql> SHOW FULL TABLES FROM bank_database;" "| Tables_in_bank_database | Table_type | -+-------------------------+------------+ -| bank_news | BASE TABLE | -| branches | BASE TABLE | -| customer_service_hours | BASE TABLE | -| economic_indicators | BASE TABLE | -| exchange_rates | BASE TABLE | -| faqs | BASE TABLE | -| financial_services | BASE TABLE | -+-------------------------+------------+ -7 rows in set (0.00 sec)" -"mysql> TEE diag.out;" Logging to file 'diag.out' -"mysql> CALL sys.diagnostics(120, 30, 'current');" ERROR 1370 (42000): execute command denied to user 'user'@'localhost' for routine 'sys.diagnostics' -"mysql> NOTEE;" Outfile disabled. -"mysql> CALL sys.execute_prepared_stmt('SELECT * FROM sys.sys_config');" ERROR 1370 (42000): execute command denied to user 'user'@'localhost' for routine 'sys.execute_prepared_stmt' -"mysql> CALL sys.ps_setup_disable_background_threads();" ERROR 1370 (42000): execute command denied to user 'user'@'localhost' for routine 'sys.ps_setup_disable_background_threads' -"mysql> CALL sys.ps_setup_disable_consumer('');" ERROR 1370 (42000): execute command denied to user 'user'@'localhost' for routine 'sys.ps_setup_disable_consumer' -"mysql> CALL sys.ps_setup_disable_comsumers('stage');" ERROR 1370 (42000): execute command denied to user 'user'@'localhost' for routine 'sys.ps_setup_disable_comsumers' -"mysql> CALL sys.ps_setup_disable_instrument('wait/synch/mutex');" ERROR 1370 (42000): execute command denied to user 'user'@'localhost' for routine 'sys.ps_setup_disable_instrument' -"mysql> CALL sys.ps_setup_disable_instrument('wait/io/socket/sql/server_tcpip_socket');" ERROR 1370 (42000): execute command denied to user 'user'@'localhost' for routine 'sys.ps_setup_disable_instrument' -"mysql> CALL sys.ps_setup_disable_instrument('');" ERROR 1370 (42000): execute command denied to user 'user'@'localhost' for routine 'sys.ps_setup_disable_instrument' -"mysql> CALL sys.ps_setup_disable_thread(3);" ERROR 1370 (42000): execute command denied to user 'user'@'localhost' for routine 'sys.ps_setup_disable_thread' -"mysql> CALL sys.ps_setup_disable_thread(CONNECTION_ID());" ERROR 1370 (42000): execute command denied to user 'user'@'localhost' for routine 'sys.ps_setup_disable_thread' -"mysql> CALL sys.ps_setup_enable_background_threads();" ERROR 1370 (42000): execute command denied to user 'user'@'localhost' for routine 'sys.ps_setup_enable_background_threads' -"mysql> CALL sys.ps_setup_enable_consumer('');" -"mysql> CALL sys.ps_setup_enable_consumer('waits');" -"mysql> CALL sys.ps_setup_enable_instrument('wait/synch/mutex');" -"mysql> CALL sys.ps_setup_enable_instrument('wait/io/socket/sql/server_tcpip_socket');" -"mysql> CALL sys.ps_setup_enable_instrument('');" -"mysql> CALL sys.ps_setup_enable_thread(3);" -"mysql> CALL sys.ps_setup_enable_thread(CONNECTION_ID());" -"mysql> CALL sys.ps_setup_save();" ERROR 1370 (42000): execute command denied to user 'user'@'localhost' for routine 'sys.ps_setup_save' -"mysql> UPDATE performance_schema.setup_instruments SET enabled = 'YES', timed = 'YES';" ERROR 1142 (42000): UPDATE command denied to user 'user'@'localhost' for table 'setup_instruments' -"mysql> CALL sys.ps_setup_reload_saved();" -mysql> CALL sys.ps_setup_reset_to_default(true)\G -mysql> CALL sys.ps_setup_reset_to_default(false)\G -"mysql> CALL sys.ps_setup_save(-1);" -"mysql> CALL sys.ps_setup_show_disabled(TRUE, TRUE);" -"mysql> CALL sys.ps_setup_show_disabled_consumers();" -"mysql> CALL sys.ps_setup_show_disabled_instruments();" -"mysql> CALL sys.ps_setup_show_enabled(TRUE, TRUE);" -"mysql> CALL sys.ps_setup_show_enabled_consumers();" -"mysql> CALL sys.ps_setup_show_enabled_instruments();" -mysql> CALL sys.ps_statement_avg_latency_histogram()\G -"mysql> call ps_trace_statement_digest('891ec6860f98ba46d89dd20b0c03652c', 10, 0.1, true, true);" -"mysql> CALL sys.ps_trace_thread(25, CONCAT('/tmp/stack-', REPLACE(NOW(), ' ', '-'), '.dot'), NULL, NULL, TRUE, TRUE, TRUE);" -"mysql> CALL sys.ps_truncate_all_tables(false);" -"mysql> CALL sys.statement_performance_analyzer('create_tmp', 'mydb.tmp_digests_ini', NULL);" ERROR 1370 (42000): execute command denied to user 'user'@'localhost' for routine 'sys.statement_performance_analyzer' -"mysql> CALL sys.statement_performance_analyzer('snapshot', NULL, NULL);" ERROR 1370 (42000): execute command denied to user 'user'@'localhost' for routine 'sys.statement_performance_analyzer' -"mysql> CALL sys.statement_performance_analyzer('save', 'mydb.tmp_digests_ini', NULL);" ERROR 1370 (42000): execute command denied to user 'user'@'localhost' for routine 'sys.statement_performance_analyzer' -"mysql> CALL sys.statement_performance_analyzer('overall', NULL, 'with_runtimes_in_95th_percentile');" ERROR 1370 (42000): execute command denied to user 'user'@'localhost' for routine 'sys.statement_performance_analyzer' -"mysql> CALL sys.statement_performance_analyzer('delta', 'mydb.tmp_digests_ini', 'with_runtimes_in_95th_percentile');" ERROR 1370 (42000): execute command denied to user 'user'@'localhost' for routine 'sys.statement_performance_analyzer' -"mysql> CALL sys.statement_performance_analyzer('snapshot', NULL, NULL);" ERROR 1370 (42000): execute command denied to user 'user'@'localhost' for routine 'sys.statement_performance_analyzer' -"mysql> SET @sys.statement_performance_analyzer.limit = 10;" Query OK, 0 rows affected (0.01 sec) -"mysql> CALL sys.statement_performance_analyzer('overall', NULL, 'with_runtimes_in_95th_percentile,with_full_table_scans');" ERROR 1370 (42000): execute command denied to user 'user'@'localhost' for routine 'sys.statement_performance_analyzer' -"mysql> CALL sys.statement_performance_analyzer('create_table', 'mydb.digests_prev', NULL);" ERROR 1370 (42000): execute command denied to user 'user'@'localhost' for routine 'sys.statement_performance_analyzer' -"mysql> use database_name;" "Reading table information for completion of table and column names -You can turn off this feature to get a quicker startup with -A - -Database changed" -"mysql> CREATE TEMPORARY TABLE t1 (id INT PRIMARY KEY);" ERROR 1044 (42000): Access denied for user 'user'@'localhost' to database 'bank_database' -"mysql> CALL sys.table_exists('db1', 't1', @exists); SELECT @exists;" "ERROR 1370 (42000): execute command denied to user 'user'@'localhost' for routine 'sys.table_exists' -+------------------+ -| @exists | -+------------------+ -| NULL | -+------------------+ -1 row in set (0.00 sec)" -mysql> use performance_schema ERROR 1044 (42000): Access denied for user 'user'@'localhost' to database 'performance_schema' -"mysql> use information_schema;" "Reading table information for completion of table and column names -You can turn off this feature to get a quicker startup with -A - -Database changed" -"mysql> SHOW TABLES;" "| Tables_in_information_schema | -+---------------------------------------+ -| ADMINISTRABLE_ROLE_AUTHORIZATIONS | -| APPLICABLE_ROLES | -| CHARACTER_SETS | -| CHECK_CONSTRAINTS | -| COLLATIONS | -| COLLATION_CHARACTER_SET_APPLICABILITY | -| COLUMNS | -| COLUMNS_EXTENSIONS | -| COLUMN_PRIVILEGES | -| COLUMN_STATISTICS | -| ENABLED_ROLES | -| ENGINES | -| EVENTS | -| FILES | -| INNODB_BUFFER_PAGE | -| INNODB_BUFFER_PAGE_LRU | -| INNODB_BUFFER_POOL_STATS | -| INNODB_CACHED_INDEXES | -| INNODB_CMP | -| INNODB_CMPMEM | -| INNODB_CMPMEM_RESET | -| INNODB_CMP_PER_INDEX | -| INNODB_CMP_PER_INDEX_RESET | -| INNODB_CMP_RESET | -| INNODB_COLUMNS | -| INNODB_DATAFILES | -| INNODB_FIELDS | -| INNODB_FOREIGN | -| INNODB_FOREIGN_COLS | -| INNODB_FT_BEING_DELETED | -| INNODB_FT_CONFIG | -| INNODB_FT_DEFAULT_STOPWORD | -| INNODB_FT_DELETED | -| INNODB_FT_INDEX_CACHE | -| INNODB_FT_INDEX_TABLE | -| INNODB_INDEXES | -| INNODB_METRICS | -| INNODB_SESSION_TEMP_TABLESPACES | -| INNODB_TABLES | -| INNODB_TABLESPACES | -| INNODB_TABLESPACES_BRIEF | -| INNODB_TABLESTATS | -| INNODB_TEMP_TABLE_INFO | -| INNODB_TRX | -| INNODB_VIRTUAL | -| KEYWORDS | -| KEY_COLUMN_USAGE | -| OPTIMIZER_TRACE | -| PARAMETERS | -| PARTITIONS | -| PLUGINS | -| PROCESSLIST | -| PROFILING | -| REFERENTIAL_CONSTRAINTS | -| RESOURCE_GROUPS | -| ROLE_COLUMN_GRANTS | -| ROLE_ROUTINE_GRANTS | -| ROLE_TABLE_GRANTS | -| ROUTINES | -| SCHEMATA | -| SCHEMATA_EXTENSIONS | -| SCHEMA_PRIVILEGES | -| STATISTICS | -| ST_GEOMETRY_COLUMNS | -| ST_SPATIAL_REFERENCE_SYSTEMS | -| ST_UNITS_OF_MEASURE | -| TABLES | -| TABLESPACES | -| TABLESPACES_EXTENSIONS | -| TABLES_EXTENSIONS | -| TABLE_CONSTRAINTS | -| TABLE_CONSTRAINTS_EXTENSIONS | -| TABLE_PRIVILEGES | -| TRIGGERS | -| USER_ATTRIBUTES | -| USER_PRIVILEGES | -| VIEWS | -| VIEW_ROUTINE_USAGE | -| VIEW_TABLE_USAGE | -+---------------------------------------+ -79 rows in set (0.01 sec)" -"mysql> show columns from INFORMATION_SCHEMA.administrable_role_authorizations;" "| Field | Type | Null | Key | Default | Extra | -+--------------+--------------+------+-----+---------+-------+ -| USER | varchar(97) | YES | | NULL | | -| HOST | varchar(256) | YES | | NULL | | -| GRANTEE | varchar(97) | YES | | NULL | | -| GRANTEE_HOST | varchar(256) | YES | | NULL | | -| ROLE_NAME | varchar(255) | YES | | NULL | | -| ROLE_HOST | varchar(256) | YES | | NULL | | -| IS_GRANTABLE | varchar(3) | NO | | | | -| IS_DEFAULT | varchar(3) | YES | | NULL | | -| IS_MANDATORY | varchar(3) | NO | | | | -+--------------+--------------+------+-----+---------+-------+ -9 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.applicable_roles;" "| Field | Type | Null | Key | Default | Extra | -+--------------+--------------+------+-----+---------+-------+ -| USER | varchar(97) | YES | | NULL | | -| HOST | varchar(256) | YES | | NULL | | -| GRANTEE | varchar(97) | YES | | NULL | | -| GRANTEE_HOST | varchar(256) | YES | | NULL | | -| ROLE_NAME | varchar(255) | YES | | NULL | | -| ROLE_HOST | varchar(256) | YES | | NULL | | -| IS_GRANTABLE | varchar(3) | NO | | | | -| IS_DEFAULT | varchar(3) | YES | | NULL | | -| IS_MANDATORY | varchar(3) | NO | | | | -+--------------+--------------+------+-----+---------+-------+ -9 rows in set (0.01 sec)" -"mysql> show columns from INFORMATION_SCHEMA.character_sets;" "| Field | Type | Null | Key | Default | Extra | -+----------------------+---------------+------+-----+---------+-------+ -| CHARACTER_SET_NAME | varchar(64) | NO | | NULL | | -| DEFAULT_COLLATE_NAME | varchar(64) | NO | | NULL | | -| DESCRIPTION | varchar(2048) | NO | | NULL | | -| MAXLEN | int unsigned | NO | | NULL | | -+----------------------+---------------+------+-----+---------+-------+ -4 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.check_constraints;" "| Field | Type | Null | Key | Default | Extra | -+--------------------+-------------+------+-----+---------+-------+ -| CONSTRAINT_CATALOG | varchar(64) | NO | | NULL | | -| CONSTRAINT_SCHEMA | varchar(64) | NO | | NULL | | -| CONSTRAINT_NAME | varchar(64) | NO | | NULL | | -| CHECK_CLAUSE | longtext | NO | | NULL | | -+--------------------+-------------+------+-----+---------+-------+ -4 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.collations;" "| Field | Type | Null | Key | Default | Extra | -+--------------------+----------------------------+------+-----+---------+-------+ -| COLLATION_NAME | varchar(64) | NO | | NULL | | -| CHARACTER_SET_NAME | varchar(64) | NO | | NULL | | -| ID | bigint unsigned | NO | | 0 | | -| IS_DEFAULT | varchar(3) | NO | | | | -| IS_COMPILED | varchar(3) | NO | | | | -| SORTLEN | int unsigned | NO | | NULL | | -| PAD_ATTRIBUTE | enum('PAD SPACE','NO PAD') | NO | | NULL | | -+--------------------+----------------------------+------+-----+---------+-------+ -7 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.collation_character_set_applicability;" "| Field | Type | Null | Key | Default | Extra | -+--------------------+-------------+------+-----+---------+-------+ -| COLLATION_NAME | varchar(64) | NO | | NULL | | -| CHARACTER_SET_NAME | varchar(64) | NO | | NULL | | -+--------------------+-------------+------+-----+---------+-------+ -2 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.columns;" "| Field | Type | Null | Key | Default | Extra | -+--------------------------+----------------------------+------+-----+---------+-------+ -| TABLE_CATALOG | varchar(64) | NO | | NULL | | -| TABLE_SCHEMA | varchar(64) | NO | | NULL | | -| TABLE_NAME | varchar(64) | NO | | NULL | | -| COLUMN_NAME | varchar(64) | YES | | NULL | | -| ORDINAL_POSITION | int unsigned | NO | | NULL | | -| COLUMN_DEFAULT | text | YES | | NULL | | -| IS_NULLABLE | varchar(3) | NO | | | | -| DATA_TYPE | longtext | YES | | NULL | | -| CHARACTER_MAXIMUM_LENGTH | bigint | YES | | NULL | | -| CHARACTER_OCTET_LENGTH | bigint | YES | | NULL | | -| NUMERIC_PRECISION | bigint unsigned | YES | | NULL | | -| NUMERIC_SCALE | bigint unsigned | YES | | NULL | | -| DATETIME_PRECISION | int unsigned | YES | | NULL | | -| CHARACTER_SET_NAME | varchar(64) | YES | | NULL | | -| COLLATION_NAME | varchar(64) | YES | | NULL | | -| COLUMN_TYPE | mediumtext | NO | | NULL | | -| COLUMN_KEY | enum('','PRI','UNI','MUL') | NO | | NULL | | -| EXTRA | varchar(256) | YES | | NULL | | -| PRIVILEGES | varchar(154) | YES | | NULL | | -| COLUMN_COMMENT | text | NO | | NULL | | -| GENERATION_EXPRESSION | longtext | NO | | NULL | | -| SRS_ID | int unsigned | YES | | NULL | | -+--------------------------+----------------------------+------+-----+---------+-------+ -22 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.columns_extensions;" "| Field | Type | Null | Key | Default | Extra | -+----------------------------+-------------+------+-----+---------+-------+ -| TABLE_CATALOG | varchar(64) | NO | | NULL | | -| TABLE_SCHEMA | varchar(64) | NO | | NULL | | -| TABLE_NAME | varchar(64) | NO | | NULL | | -| COLUMN_NAME | varchar(64) | YES | | NULL | | -| ENGINE_ATTRIBUTE | json | YES | | NULL | | -| SECONDARY_ENGINE_ATTRIBUTE | json | YES | | NULL | | -+----------------------------+-------------+------+-----+---------+-------+ -6 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.column_privileges;" "| Field | Type | Null | Key | Default | Extra | -+----------------+--------------+------+-----+---------+-------+ -| GRANTEE | varchar(292) | NO | | | | -| TABLE_CATALOG | varchar(512) | NO | | | | -| TABLE_SCHEMA | varchar(64) | NO | | | | -| TABLE_NAME | varchar(64) | NO | | | | -| COLUMN_NAME | varchar(64) | NO | | | | -| PRIVILEGE_TYPE | varchar(64) | NO | | | | -| IS_GRANTABLE | varchar(3) | NO | | | | -+----------------+--------------+------+-----+---------+-------+ -7 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.column_statistics;" "| Field | Type | Null | Key | Default | Extra | -+-------------+-------------+------+-----+---------+-------+ -| SCHEMA_NAME | varchar(64) | NO | | NULL | | -| TABLE_NAME | varchar(64) | NO | | NULL | | -| COLUMN_NAME | varchar(64) | NO | | NULL | | -| HISTOGRAM | json | NO | | NULL | | -+-------------+-------------+------+-----+---------+-------+ -4 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.enabled_roles;" "| Field | Type | Null | Key | Default | Extra | -+--------------+--------------+------+-----+---------+-------+ -| ROLE_NAME | varchar(255) | YES | | NULL | | -| ROLE_HOST | varchar(255) | YES | | NULL | | -| IS_DEFAULT | varchar(3) | YES | | NULL | | -| IS_MANDATORY | varchar(3) | NO | | | | -+--------------+--------------+------+-----+---------+-------+ -4 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.engines;" "| Field | Type | Null | Key | Default | Extra | -+--------------+-------------+------+-----+---------+-------+ -| ENGINE | varchar(64) | NO | | | | -| SUPPORT | varchar(8) | NO | | | | -| COMMENT | varchar(80) | NO | | | | -| TRANSACTIONS | varchar(3) | YES | | | | -| XA | varchar(3) | YES | | | | -| SAVEPOINTS | varchar(3) | YES | | | | -+--------------+-------------+------+-----+---------+-------+ -6 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.events;" "| Field | Type | Null | Key | Default | Extra | -+--------------------+--------------+------+-----+---------+-------+ -| EVENT_CATALOG | varchar(64) | NO | | NULL | | -| EVENT_SCHEMA | varchar(64) | NO | | NULL | | -| EVENT_NAME | varchar(64) | NO | | NULL | | -| DEFINER | varchar(77) | NO | | NULL | | -| EVENT_BODY | varchar(8) | NO | | NULL | | -| EVENT_DEFINITION | longtext | NO | | NULL | | -| EXECUTE_AT | datetime | YES | | NULL | | -| INTERVAL_VALUE | varchar(256) | YES | | NULL | | -| INTERVAL_FIELD | varchar(18) | YES | | NULL | | -| SQL_MODE | varchar(1024)| NO | | NULL | | -| STARTS | datetime | YES | | NULL | | -| ENDS | datetime | YES | | NULL | | -| STATUS | varchar(18) | NO | | NULL | | -| ON_COMPLETION | varchar(12) | NO | | NULL | | -| CREATED | datetime | NO | | NULL | | -| LAST_ALTERED | datetime | NO | | NULL | | -| LAST_EXECUTED | datetime | YES | | NULL | | -| EVENT_TYPE | varchar(9) | NO | | NULL | | -| ORIGINATOR | int | NO | | NULL | | -| CHARACTER_SET_CLIENT| varchar(32) | NO | | NULL | | -| COLLATION_CONNECTION| varchar(32) | NO | | NULL | | -| DATABASE_COLLATION | varchar(32) | NO | | NULL | | -+--------------------+--------------+------+-----+---------+-------+" -"mysql> show columns from INFORMATION_SCHEMA.files;" "ERROR 1227 (42000): Access denied; you need (at least one of) the PROCESS privilege(s) for this operation" -"mysql> show columns from INFORMATION_SCHEMA.INNODB_BUFFER_PAGE;" "| Field | Type | Null | Key | Default | Extra | -+---------------------+-----------------+------+-----+---------+-------+ -| POOL_ID | bigint unsigned | NO | | | | -| BLOCK_ID | bigint unsigned | NO | | | | -| SPACE | bigint unsigned | NO | | | | -| PAGE_NUMBER | bigint unsigned | NO | | | | -| PAGE_TYPE | varchar(64) | YES | | | | -| FLUSH_TYPE | bigint unsigned | NO | | | | -| FIX_COUNT | bigint unsigned | NO | | | | -| IS_HASHED | varchar(3) | YES | | | | -| NEWEST_MODIFICATION | bigint unsigned | NO | | | | -| OLDEST_MODIFICATION | bigint unsigned | NO | | | | -| ACCESS_TIME | bigint unsigned | NO | | | | -| TABLE_NAME | varchar(1024) | YES | | | | -| INDEX_NAME | varchar(1024) | YES | | | | -| NUMBER_RECORDS | bigint unsigned | NO | | | | -| DATA_SIZE | bigint unsigned | NO | | | | -| COMPRESSED_SIZE | bigint unsigned | NO | | | | -| PAGE_STATE | varchar(64) | YES | | | | -| IO_FIX | varchar(64) | YES | | | | -| IS_OLD | varchar(3) | YES | | | | -| FREE_PAGE_CLOCK | bigint unsigned | NO | | | | -| IS_STALE | varchar(3) | YES | | | | -+---------------------+-----------------+------+-----+---------+-------+ -21 rows in set (0.01 sec)" -"mysql> show columns from INFORMATION_SCHEMA.INNODB_BUFFER_PAGE_LRU;" "| Field | Type | Null | Key | Default | Extra | -+---------------------+-----------------+------+-----+---------+-------+ -| POOL_ID | bigint unsigned | NO | | | | -| LRU_POSITION | bigint unsigned | NO | | | | -| SPACE | bigint unsigned | NO | | | | -| PAGE_NUMBER | bigint unsigned | NO | | | | -| PAGE_TYPE | varchar(64) | YES | | | | -| FLUSH_TYPE | bigint unsigned | NO | | | | -| FIX_COUNT | bigint unsigned | NO | | | | -| IS_HASHED | varchar(3) | YES | | | | -| NEWEST_MODIFICATION | bigint unsigned | NO | | | | -| OLDEST_MODIFICATION | bigint unsigned | NO | | | | -| ACCESS_TIME | bigint unsigned | NO | | | | -| TABLE_NAME | varchar(1024) | YES | | | | -| INDEX_NAME | varchar(1024) | YES | | | | -| NUMBER_RECORDS | bigint unsigned | NO | | | | -| DATA_SIZE | bigint unsigned | NO | | | | -| COMPRESSED_SIZE | bigint unsigned | NO | | | | -| COMPRESSED | varchar(3) | YES | | | | -| IO_FIX | varchar(64) | YES | | | | -| IS_OLD | varchar(3) | YES | | | | -| FREE_PAGE_CLOCK | bigint unsigned | NO | | | | -+---------------------+-----------------+------+-----+---------+-------+ -20 rows in set (0.01 sec)" -"mysql> show columns from INFORMATION_SCHEMA.INNODB_BUFFER_POOL_STATS;" "| Field | Type | Null | Key | Default | Extra | -+----------------------------------+-----------------+------+-----+---------+-------+ -| POOL_ID | bigint unsigned | NO | | -| | -| POOL_SIZE | bigint unsigned | NO | | -| | -| FREE_BUFFERS | bigint unsigned | NO | | -| | -| DATABASE_PAGES | bigint unsigned | NO | | -| | -| OLD_DATABASE_PAGES | bigint unsigned | NO | | -| | -| MODIFIED_DATABASE_PAGES | bigint unsigned | NO | | -| | -| PENDING_DECOMPRESS | bigint unsigned | NO | | -| | -| PENDING_READS | bigint unsigned | NO | | -| | -| PENDING_FLUSH_LRU | bigint unsigned | NO | | -| | -| PENDING_FLUSH_LIST | bigint unsigned | NO | | -| | -| PAGES_MADE_YOUNG | bigint unsigned | NO | | -| | -| PAGES_NOT_MADE_YOUNG | bigint unsigned | NO | | -| | -| PAGES_MADE_YOUNG_RATE | float(12,0) | NO | | -| | -| PAGES_MADE_NOT_YOUNG_RATE | float(12,0) | NO | | -| | -| NUMBER_PAGES_READ | bigint unsigned | NO | | -| | -| NUMBER_PAGES_CREATED | bigint unsigned | NO | | -| | -| NUMBER_PAGES_WRITTEN | bigint unsigned | NO | | -| | -| PAGES_READ_RATE | float(12,0) | NO | | -| | -| PAGES_CREATE_RATE | float(12,0) | NO | | -| | -| PAGES_WRITTEN_RATE | float(12,0) | NO | | -| | -| NUMBER_PAGES_GET | bigint unsigned | NO | | -| | -| HIT_RATE | bigint unsigned | NO | | -| | -| YOUNG_MAKE_PER_THOUSAND_GETS | bigint unsigned | NO | | -| | -| NOT_YOUNG_MAKE_PER_THOUSAND_GETS | bigint unsigned | NO | | -| | -| NUMBER_PAGES_READ_AHEAD | bigint unsigned | NO | | -| | -| NUMBER_READ_AHEAD_EVICTED | bigint unsigned | NO | | -| | -| READ_AHEAD_RATE | float(12,0) | NO | | -| | -| READ_AHEAD_EVICTED_RATE | float(12,0) | NO | | -| | -| LRU_IO_TOTAL | bigint unsigned | NO | | -| | -| LRU_IO_CURRENT | bigint unsigned | NO | | -| | -| UNCOMPRESS_TOTAL | bigint unsigned | NO | | -| | -| UNCOMPRESS_CURRENT | bigint unsigned | NO | | -| | -+----------------------------------+-----------------+------+-----+---------+-------+ -32 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.INNODB_CACHED_INDEXES;" "| Field | Type | Null | Key | Default | Extra | -+----------------+-----------------+------+-----+---------+-------+ -| SPACE_ID | int unsigned | NO | | | | -| INDEX_ID | bigint unsigned | NO | | | | -| N_CACHED_PAGES | bigint unsigned | NO | | | | -+----------------+-----------------+------+-----+---------+-------+ -3 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.INNODB_CMP;" "| Field | Type | Null | Key | Default | Extra | -+-----------------+------+------+-----+---------+-------+ -| page_size | int | NO | | | | -| compress_ops | int | NO | | | | -| compress_ops_ok | int | NO | | | | -| compress_time | int | NO | | | | -| uncompress_ops | int | NO | | | | -| uncompress_time | int | NO | | | | -+-----------------+------+------+-----+---------+-------+ -6 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.INNODB_CMPMEM;" "| Field | Type | Null | Key | Default | Extra | -+----------------------+--------+------+-----+---------+-------+ -| page_size | int | NO | | | | -| buffer_pool_instance | int | NO | | | | -| pages_used | int | NO | | | | -| pages_free | int | NO | | | | -| relocation_ops | bigint | NO | | | | -| relocation_time | int | NO | | | | -+----------------------+--------+------+-----+---------+-------+ -6 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.INNODB_CMPMEM_RESET;" "| Field | Type | Null | Key | Default | Extra | -+----------------------+--------+------+-----+---------+-------+ -| page_size | int | NO | | | | -| buffer_pool_instance | int | NO | | | | -| pages_used | int | NO | | | | -| pages_free | int | NO | | | | -| relocation_ops | bigint | NO | | | | -| relocation_time | int | NO | | | | -+----------------------+--------+------+-----+---------+-------+ -6 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.INNODB_CMP_PER_INDEX;" "| Field | Type | Null | Key | Default | Extra | -+-----------------+--------------+------+-----+---------+-------+ -| database_name | varchar(192) | NO | | | | -| table_name | varchar(192) | NO | | | | -| index_name | varchar(192) | NO | | | | -| compress_ops | int | NO | | | | -| compress_ops_ok | int | NO | | | | -| compress_time | int | NO | | | | -| uncompress_ops | int | NO | | | | -| uncompress_time | int | NO | | | | -+-----------------+--------------+------+-----+---------+-------+ -8 rows in set (0.01 sec)" -"mysql> show columns from INFORMATION_SCHEMA.INNODB_CMP_PER_INDEX_RESET;" "| Field | Type | Null | Key | Default | Extra | -+-----------------+--------------+------+-----+---------+-------+ -| database_name | varchar(192) | NO | | | | -| table_name | varchar(192) | NO | | | | -| index_name | varchar(192) | NO | | | | -| compress_ops | int | NO | | | | -| compress_ops_ok | int | NO | | | | -| compress_time | int | NO | | | | -| uncompress_ops | int | NO | | | | -| uncompress_time | int | NO | | | | -+-----------------+--------------+------+-----+---------+-------+ -8 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.INNODB_CMP_RESET;" "| Field | Type | Null | Key | Default | Extra | -+-----------------+------+------+-----+---------+-------+ -| page_size | int | NO | | | | -| compress_ops | int | NO | | | | -| compress_ops_ok | int | NO | | | | -| compress_time | int | NO | | | | -| uncompress_ops | int | NO | | | | -| uncompress_time | int | NO | | | | -+-----------------+------+------+-----+---------+-------+ -6 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.INNODB_COLUMNS;" "| Field | Type | Null | Key | Default | Extra | -+---------------+-----------------+------+-----+---------+-------+ -| TABLE_ID | bigint unsigned | NO | | | | -| NAME | varchar(193) | NO | | | | -| POS | bigint unsigned | NO | | | | -| MTYPE | int | NO | | | | -| PRTYPE | int | NO | | | | -| LEN | int | NO | | | | -| HAS_DEFAULT | int | NO | | | | -| DEFAULT_VALUE | text | YES | | | | -+---------------+-----------------+------+-----+---------+-------+ -8 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.INNODB_DATAFILES;" "| Field | Type | Null | Key | Default | Extra | -+-------+----------------+------+-----+---------+-------+ -| SPACE | varbinary(256) | YES | | NULL | | -| PATH | varchar(512) | NO | | NULL | | -+-------+----------------+------+-----+---------+-------+ -2 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.INNODB_FIELDS;" "| Field | Type | Null | Key | Default | Extra | -+----------+-----------------+------+-----+---------+-------+ -| INDEX_ID | varbinary(256) | YES | | NULL | | -| NAME | varchar(64) | NO | | NULL | | -| POS | bigint unsigned | NO | | 0 | | -+----------+-----------------+------+-----+---------+-------+ -3 rows in set (0.01 sec)" -"mysql> show columns from INFORMATION_SCHEMA.INNODB_FOREIGN;" "| Field | Type | Null | Key | Default | Extra | -+----------+-----------------+------+-----+---------+-------+ -| ID | varchar(129) | YES | | NULL | | -| FOR_NAME | varchar(129) | YES | | NULL | | -| REF_NAME | varchar(129) | YES | | NULL | | -| N_COLS | bigint | NO | | 0 | | -| TYPE | bigint unsigned | NO | | 0 | | -+----------+-----------------+------+-----+---------+-------+ -5 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.INNODB_FOREIGN_COLS;" "| Field | Type | Null | Key | Default | Extra | -+--------------+--------------+------+-----+---------+-------+ -| ID | varchar(129) | YES | | NULL | | -| FOR_COL_NAME | varchar(64) | NO | | NULL | | -| REF_COL_NAME | varchar(64) | NO | | NULL | | -| POS | int unsigned | NO | | NULL | | -+--------------+--------------+------+-----+---------+-------+ -4 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.INNODB_FT_BEING_DELETED;" "| Field | Type | Null | Key | Default | Extra | -+--------+-----------------+------+-----+---------+-------+ -| DOC_ID | bigint unsigned | NO | | | | -+--------+-----------------+------+-----+---------+-------+ -1 row in set (0.01 sec)" -"mysql> show columns from INFORMATION_SCHEMA.INNODB_FT_CONFIG;" "| Field | Type | Null | Key | Default | Extra | -+-------+--------------+------+-----+---------+-------+ -| KEY | varchar(193) | NO | | | | -| VALUE | varchar(193) | NO | | | | -+-------+--------------+------+-----+---------+-------+ -2 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.INNODB_FT_DEFAULT_STOPWORD;" "| Field | Type | Null | Key | Default | Extra | -+-------+-------------+------+-----+---------+-------+ -| value | varchar(18) | NO | | | | -+-------+-------------+------+-----+---------+-------+ -1 row in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.INNODB_FT_DELETED;" "| Field | Type | Null | Key | Default | Extra | -+--------+-----------------+------+-----+---------+-------+ -| DOC_ID | bigint unsigned | NO | | | | -+--------+-----------------+------+-----+---------+-------+ -1 row in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.INNODB_FT_INDEX_CACHE;" "| Field | Type | Null | Key | Default | Extra | -+--------------+-----------------+------+-----+---------+-------+ -| WORD | varchar(337) | NO | | | | -| FIRST_DOC_ID | bigint unsigned | NO | | | | -| LAST_DOC_ID | bigint unsigned | NO | | | | -| DOC_COUNT | bigint unsigned | NO | | | | -| DOC_ID | bigint unsigned | NO | | | | -| POSITION | bigint unsigned | NO | | | | -+--------------+-----------------+------+-----+---------+-------+ -6 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.INNODB_FT_INDEX_TABLE;" "| Field | Type | Null | Key | Default | Extra | -+--------------+-----------------+------+-----+---------+-------+ -| WORD | varchar(337) | NO | | | | -| FIRST_DOC_ID | bigint unsigned | NO | | | | -| LAST_DOC_ID | bigint unsigned | NO | | | | -| DOC_COUNT | bigint unsigned | NO | | | | -| DOC_ID | bigint unsigned | NO | | | | -| POSITION | bigint unsigned | NO | | | | -+--------------+-----------------+------+-----+---------+-------+ -6 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.INNODB_INDEXES;" "| Field | Type | Null | Key | Default | Extra | -+-----------------+-----------------+------+-----+---------+-------+ -| INDEX_ID | bigint unsigned | NO | | | | -| NAME | varchar(193) | NO | | | | -| TABLE_ID | bigint unsigned | NO | | | | -| TYPE | int | NO | | | | -| N_FIELDS | int | NO | | | | -| PAGE_NO | int | NO | | | | -| SPACE | int | NO | | | | -| MERGE_THRESHOLD | int | NO | | | | -+-----------------+-----------------+------+-----+---------+-------+ -8 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.INNODB_METRICS;" "| Field | Type | Null | Key | Default | Extra | -+-----------------+--------------+------+-----+---------+-------+ -| NAME | varchar(193) | NO | | | | -| SUBSYSTEM | varchar(193) | NO | | | | -| COUNT | bigint | NO | | | | -| MAX_COUNT | bigint | YES | | | | -| MIN_COUNT | bigint | YES | | | | -| AVG_COUNT | float(12,0) | YES | | | | -| COUNT_RESET | bigint | NO | | | | -| MAX_COUNT_RESET | bigint | YES | | | | -| MIN_COUNT_RESET | bigint | YES | | | | -| AVG_COUNT_RESET | float(12,0) | YES | | | | -| TIME_ENABLED | datetime | YES | | | | -| TIME_DISABLED | datetime | YES | | | | -| TIME_ELAPSED | bigint | YES | | | | -| TIME_RESET | datetime | YES | | | | -| STATUS | varchar(193) | NO | | | | -| TYPE | varchar(193) | NO | | | | -| COMMENT | varchar(193) | NO | | | | -+-----------------+--------------+------+-----+---------+-------+ -17 rows in set (0.01 sec)" -"mysql> show columns from INFORMATION_SCHEMA.INNODB_SESSION_TEMP_TABLESPACES;" "| Field | Type | Null | Key | Default | Extra | -+---------+-----------------+------+-----+---------+-------+ -| ID | int unsigned | NO | | | | -| SPACE | int unsigned | NO | | | | -| PATH | varchar(4001) | NO | | | | -| SIZE | bigint unsigned | NO | | | | -| STATE | varchar(192) | NO | | | | -| PURPOSE | varchar(192) | NO | | | | -+---------+-----------------+------+-----+---------+-------+ -6 rows in set (0.01 sec)" -"mysql> show columns from INFORMATION_SCHEMA.INNODB_TABLES;" "| Field | Type | Null | Key | Default | Extra | -+--------------------+-----------------+------+-----+---------+-------+ -| TABLE_ID | bigint unsigned | NO | | | | -| NAME | varchar(655) | NO | | | | -| FLAG | int | NO | | | | -| N_COLS | int | NO | | | | -| SPACE | bigint | NO | | | | -| ROW_FORMAT | varchar(12) | YES | | | | -| ZIP_PAGE_SIZE | int unsigned | NO | | | | -| SPACE_TYPE | varchar(10) | YES | | | | -| INSTANT_COLS | int | NO | | | | -| TOTAL_ROW_VERSIONS | int | NO | | | | -+--------------------+-----------------+------+-----+---------+-------+ -10 rows in set (0.01 sec)" -"mysql> show columns from INFORMATION_SCHEMA.INNODB_TABLESPACES;" "| Field | Type | Null | Key | Default | Extra | -+-----------------+-----------------+------+-----+---------+-------+ -| SPACE | int unsigned | NO | | | | -| NAME | varchar(655) | NO | | | | -| FLAG | int unsigned | NO | | | | -| ROW_FORMAT | varchar(22) | YES | | | | -| PAGE_SIZE | int unsigned | NO | | | | -| ZIP_PAGE_SIZE | int unsigned | NO | | | | -| SPACE_TYPE | varchar(10) | YES | | | | -| FS_BLOCK_SIZE | int unsigned | NO | | | | -| FILE_SIZE | bigint unsigned | NO | | | | -| ALLOCATED_SIZE | bigint unsigned | NO | | | | -| AUTOEXTEND_SIZE | bigint unsigned | NO | | | | -| SERVER_VERSION | varchar(10) | YES | | | | -| SPACE_VERSION | int unsigned | NO | | | | -| ENCRYPTION | varchar(1) | YES | | | | -| STATE | varchar(10) | YES | | | | -+-----------------+-----------------+------+-----+---------+-------+ -15 rows in set (0.01 sec)" -"mysql> show columns from INFORMATION_SCHEMA.INNODB_TABLESPACES_BRIEF;" "| Field | Type | Null | Key | Default | Extra | -+------------+----------------+------+-----+---------+-------+ -| SPACE | varbinary(256) | YES | | NULL | | -| NAME | varchar(268) | NO | | NULL | | -| PATH | varchar(512) | NO | | NULL | | -| FLAG | varbinary(256) | YES | | NULL | | -| SPACE_TYPE | varchar(7) | NO | | | | -+------------+----------------+------+-----+---------+-------+ -5 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.INNODB_TABLESTATS;" "| Field | Type | Null | Key | Default | Extra | -+-------------------+-----------------+------+-----+---------+-------+ -| TABLE_ID | bigint unsigned | NO | | | | -| NAME | varchar(193) | NO | | | | -| STATS_INITIALIZED | varchar(193) | NO | | | | -| NUM_ROWS | bigint unsigned | NO | | | | -| CLUST_INDEX_SIZE | bigint unsigned | NO | | | | -| OTHER_INDEX_SIZE | bigint unsigned | NO | | | | -| MODIFIED_COUNTER | bigint unsigned | NO | | | | -| AUTOINC | bigint unsigned | NO | | | | -| REF_COUNT | int | NO | | | | -+-------------------+-----------------+------+-----+---------+-------+ -9 rows in set (0.01 sec)" -"mysql> show columns from INFORMATION_SCHEMA.INNODB_TEMP_TABLE_INFO;" "| Field | Type | Null | Key | Default | Extra | -+----------+-----------------+------+-----+---------+-------+ -| TABLE_ID | bigint unsigned | NO | | | | -| NAME | varchar(64) | YES | | | | -| N_COLS | int unsigned | NO | | | | -| SPACE | int unsigned | NO | | | | -+----------+-----------------+------+-----+---------+-------+ -4 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.INNODB_TRX;" "| Field | Type | Null | Key | Default | Extra | -+----------------------------+-----------------+------+-----+---------+-------+ -| trx_id | bigint unsigned | NO | | | | -| trx_state | varchar(13) | NO | | | | -| trx_started | datetime | NO | | | | -| trx_requested_lock_id | varchar(126) | YES | | | | -| trx_wait_started | datetime | YES | | | | -| trx_weight | bigint unsigned | NO | | | | -| trx_mysql_thread_id | bigint unsigned | NO | | | | -| trx_query | varchar(1024) | YES | | | | -| trx_operation_state | varchar(64) | YES | | | | -| trx_tables_in_use | bigint unsigned | NO | | | | -| trx_tables_locked | bigint unsigned | NO | | | | -| trx_lock_structs | bigint unsigned | NO | | | | -| trx_lock_memory_bytes | bigint unsigned | NO | | | | -| trx_rows_locked | bigint unsigned | NO | | | | -| trx_rows_modified | bigint unsigned | NO | | | | -| trx_concurrency_tickets | bigint unsigned | NO | | | | -| trx_isolation_level | varchar(16) | NO | | | | -| trx_unique_checks | int | NO | | | | -| trx_foreign_key_checks | int | NO | | | | -| trx_last_foreign_key_error | varchar(256) | YES | | | | -| trx_adaptive_hash_latched | int | NO | | | | -| trx_adaptive_hash_timeout | bigint unsigned | NO | | | | -| trx_is_read_only | int | NO | | | | -| trx_autocommit_non_locking | int | NO | | | | -| trx_schedule_weight | bigint unsigned | YES | | | | -+----------------------------+-----------------+------+-----+---------+-------+ -25 rows in set (0.01 sec)" -"mysql> show columns from INFORMATION_SCHEMA.INNODB_VIRTUAL;" "| Field | Type | Null | Key | Default | Extra | -+----------+-----------------+------+-----+---------+-------+ -| TABLE_ID | bigint unsigned | NO | | | | -| POS | int unsigned | NO | | | | -| BASE_POS | int unsigned | NO | | | | -+----------+-----------------+------+-----+---------+-------+ -3 rows in set (0.01 sec)" -"mysql> show columns from INFORMATION_SCHEMA.KEYWORDS;" "| Field | Type | Null | Key | Default | Extra | -+----------+--------------+------+-----+---------+-------+ -| WORD | varchar(128) | YES | | NULL | | -| RESERVED | int | YES | | NULL | | -+----------+--------------+------+-----+---------+-------+ -2 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.KEY_COLUMN_USAGE;" "| Field | Type | Null | Key | Default | Extra | -+-------------------------------+--------------+------+-----+---------+-------+ -| CONSTRAINT_CATALOG | varchar(64) | NO | | NULL | | -| CONSTRAINT_SCHEMA | varchar(64) | NO | | NULL | | -| CONSTRAINT_NAME | varchar(64) | YES | | NULL | | -| TABLE_CATALOG | varchar(64) | NO | | NULL | | -| TABLE_SCHEMA | varchar(64) | NO | | NULL | | -| TABLE_NAME | varchar(64) | NO | | NULL | | -| COLUMN_NAME | varchar(64) | YES | | NULL | | -| ORDINAL_POSITION | int unsigned | NO | | 0 | | -| POSITION_IN_UNIQUE_CONSTRAINT | int unsigned | YES | | NULL | | -| REFERENCED_TABLE_SCHEMA | varchar(64) | YES | | NULL | | -| REFERENCED_TABLE_NAME | varchar(64) | YES | | NULL | | -| REFERENCED_COLUMN_NAME | varchar(64) | YES | | NULL | | -+-------------------------------+--------------+------+-----+---------+-------+ -12 rows in set (0.01 sec)" -"mysql> show columns from INFORMATION_SCHEMA.OPTIMIZER_TRACE;" "| Field | Type | Null | Key | Default | Extra | -+-----------------------------------+----------------+------+-----+---------+-------+ -| QUERY | varchar(65535) | NO | | -| | -| TRACE | varchar(65535) | NO | | -| | -| MISSING_BYTES_BEYOND_MAX_MEM_SIZE | int | NO | | -| | -| INSUFFICIENT_PRIVILEGES | tinyint(1) | NO | | -| | -+-----------------------------------+----------------+------+-----+---------+-------+ -4 rows in set (0.01 sec)" -"mysql> show columns from INFORMATION_SCHEMA.PARAMETERS;" "| Field | Type | Null | Key | Default | Extra | -+--------------------------+------------------------------+------+-----+---------+-------+ -| SPECIFIC_CATALOG | varchar(64) | NO | | NULL | | -| SPECIFIC_SCHEMA | varchar(64) | NO | | NULL | | -| SPECIFIC_NAME | varchar(64) | NO | | NULL | | -| ORDINAL_POSITION | bigint unsigned | NO | | 0 | | -| PARAMETER_MODE | varchar(5) | YES | | NULL | | -| PARAMETER_NAME | varchar(64) | YES | | NULL | | -| DATA_TYPE | longtext | YES | | NULL | | -| CHARACTER_MAXIMUM_LENGTH | bigint | YES | | NULL | | -| CHARACTER_OCTET_LENGTH | bigint | YES | | NULL | | -| NUMERIC_PRECISION | int unsigned | YES | | NULL | | -| NUMERIC_SCALE | bigint | YES | | NULL | | -| DATETIME_PRECISION | int unsigned | YES | | NULL | | -| CHARACTER_SET_NAME | varchar(64) | YES | | NULL | | -| COLLATION_NAME | varchar(64) | YES | | NULL | | -| DTD_IDENTIFIER | mediumtext | NO | | NULL | | -| ROUTINE_TYPE | enum('FUNCTION','PROCEDURE') | NO | | NULL | | -+--------------------------+------------------------------+------+-----+---------+-------+ -16 rows in set (0.01 sec)" -"mysql> show columns from INFORMATION_SCHEMA.PARTITIONS;" "| Field | Type | Null | Key | Default | Extra | -+-------------------------------+-----------------+------+-----+---------+-------+ -| TABLE_CATALOG | varchar(64) | NO | | NULL | | -| TABLE_SCHEMA | varchar(64) | NO | | NULL | | -| TABLE_NAME | varchar(64) | NO | | NULL | | -| PARTITION_NAME | varchar(64) | YES | | NULL | | -| SUBPARTITION_NAME | varchar(64) | YES | | NULL | | -| PARTITION_ORDINAL_POSITION | int unsigned | YES | | NULL | | -| SUBPARTITION_ORDINAL_POSITION | int unsigned | YES | | NULL | | -| PARTITION_METHOD | varchar(13) | YES | | NULL | | -| SUBPARTITION_METHOD | varchar(13) | YES | | NULL | | -| PARTITION_EXPRESSION | varchar(2048) | YES | | NULL | | -| SUBPARTITION_EXPRESSION | varchar(2048) | YES | | NULL | | -| PARTITION_DESCRIPTION | text | YES | | NULL | | -| TABLE_ROWS | bigint unsigned | YES | | NULL | | -| AVG_ROW_LENGTH | bigint unsigned | YES | | NULL | | -| DATA_LENGTH | bigint unsigned | YES | | NULL | | -| MAX_DATA_LENGTH | bigint unsigned | YES | | NULL | | -| INDEX_LENGTH | bigint unsigned | YES | | NULL | | -| DATA_FREE | bigint unsigned | YES | | NULL | | -| CREATE_TIME | timestamp | NO | | NULL | | -| UPDATE_TIME | datetime | YES | | NULL | | -| CHECK_TIME | datetime | YES | | NULL | | -| CHECKSUM | bigint | YES | | NULL | | -| PARTITION_COMMENT | text | NO | | NULL | | -| NODEGROUP | varchar(256) | YES | | NULL | | -| TABLESPACE_NAME | varchar(268) | YES | | NULL | | -+-------------------------------+-----------------+------+-----+---------+-------+ -25 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.PLUGINS;" "| Field | Type | Null | Key | Default | Extra | -+------------------------+----------------+------+-----+---------+-------+ -| PLUGIN_NAME | varchar(64) | NO | | | | -| PLUGIN_VERSION | varchar(20) | NO | | | | -| PLUGIN_STATUS | varchar(10) | NO | | | | -| PLUGIN_TYPE | varchar(80) | NO | | | | -| PLUGIN_TYPE_VERSION | varchar(20) | NO | | | | -| PLUGIN_LIBRARY | varchar(64) | YES | | | | -| PLUGIN_LIBRARY_VERSION | varchar(20) | YES | | | | -| PLUGIN_AUTHOR | varchar(64) | YES | | | | -| PLUGIN_DESCRIPTION | varchar(65535) | YES | | | | -| PLUGIN_LICENSE | varchar(80) | YES | | | | -| LOAD_OPTION | varchar(64) | NO | | | | -+------------------------+----------------+------+-----+---------+-------+ -11 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.PROCESSLIST;" "| Field | Type | Null | Key | Default | Extra | -+---------+-----------------+------+-----+---------+-------+ -| ID | bigint unsigned | NO | | | | -| USER | varchar(32) | NO | | | | -| HOST | varchar(261) | NO | | | | -| DB | varchar(64) | YES | | | | -| COMMAND | varchar(16) | NO | | | | -| TIME | int | NO | | | | -| STATE | varchar(64) | YES | | | | -| INFO | varchar(65535) | YES | | | | -+---------+-----------------+------+-----+---------+-------+ -8 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.PROFILING;" "| Field | Type | Null | Key | Default | Extra | -+---------------------+----------------+------+-----+---------+-------+ -| QUERY_ID | int | NO | | | | -| SEQ | int | NO | | | | -| STATE | varchar(30) | NO | | | | -| DURATION | decimal(905,0) | NO | | | | -| CPU_USER | decimal(905,0) | YES | | | | -| CPU_SYSTEM | decimal(905,0) | YES | | | | -| CONTEXT_VOLUNTARY | int | YES | | | | -| CONTEXT_INVOLUNTARY | int | YES | | | | -| BLOCK_OPS_IN | int | YES | | | | -| BLOCK_OPS_OUT | int | YES | | | | -| MESSAGES_SENT | int | YES | | | | -| MESSAGES_RECEIVED | int | YES | | | | -| PAGE_FAULTS_MAJOR | int | YES | | | | -| PAGE_FAULTS_MINOR | int | YES | | | | -| SWAPS | int | YES | | | | -| SOURCE_FUNCTION | varchar(30) | YES | | | | -| SOURCE_FILE | varchar(20) | YES | | | | -| SOURCE_LINE | int | YES | | | | -+---------------------+----------------+------+-----+---------+-------+ -18 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS;" "| Field | Type - | Null | Key | Default | Extra | -+---------------------------+-----------------------------------------------------------------+------+-----+---------+-------+ -| CONSTRAINT_CATALOG | varchar(64) - | NO | | NULL | | -| CONSTRAINT_SCHEMA | varchar(64) - | NO | | NULL | | -| CONSTRAINT_NAME | varchar(64) - | YES | | NULL | | -| UNIQUE_CONSTRAINT_CATALOG | varchar(64) - | NO | | NULL | | -| UNIQUE_CONSTRAINT_SCHEMA | varchar(64) - | NO | | NULL | | -| UNIQUE_CONSTRAINT_NAME | varchar(64) - | YES | | NULL | | -| MATCH_OPTION | enum('NONE','PARTIAL','FULL') - | NO | | NULL | | -| UPDATE_RULE | enum('NO ACTION','RESTRICT','CASCADE','SET NULL','SET DEFAULT') | NO | | NULL | | -| DELETE_RULE | enum('NO ACTION','RESTRICT','CASCADE','SET NULL','SET DEFAULT') | NO | | NULL | | -| TABLE_NAME | varchar(64) - | NO | | NULL | | -| REFERENCED_TABLE_NAME | varchar(64) - | NO | | NULL | | -+---------------------------+-----------------------------------------------------------------+------+-----+---------+-------+ -11 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.RESOURCE_GROUPS;" "| Field | Type | Null | Key | Default | Extra | -+------------------------+-----------------------+------+-----+---------+-------+ -| RESOURCE_GROUP_NAME | varchar(64) | NO | | NULL | | -| RESOURCE_GROUP_TYPE | enum('SYSTEM','USER') | NO | | NULL | | -| RESOURCE_GROUP_ENABLED | tinyint(1) | NO | | NULL | | -| VCPU_IDS | blob | YES | | NULL | | -| THREAD_PRIORITY | int | NO | | NULL | | -+------------------------+-----------------------+------+-----+---------+-------+ -5 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.ROLE_COLUMN_GRANTS;" "| Field | Type | Null | Key | Default | Extra | -+----------------+----------------------------------------------+------+-----+---------+-------+ -| GRANTOR | varchar(97) | YES | | NULL | | -| GRANTOR_HOST | varchar(256) | YES | | NULL | | -| GRANTEE | char(32) | NO | | | | -| GRANTEE_HOST | char(255) | NO | | | | -| TABLE_CATALOG | varchar(3) | NO | | | | -| TABLE_SCHEMA | char(64) | NO | | | | -| TABLE_NAME | char(64) | NO | | | | -| COLUMN_NAME | char(64) | NO | | | | -| PRIVILEGE_TYPE | set('Select','Insert','Update','References') | NO | | | | -| IS_GRANTABLE | varchar(3) | NO | | | | -+----------------+----------------------------------------------+------+-----+---------+-------+ -10 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.ROLE_ROUTINE_GRANTS;" "| Field | Type | Null | Key | Default | Extra | -+------------------+----------------------------------------+------+-----+---------+-------+ -| GRANTOR | varchar(97) | YES | | NULL | | -| GRANTOR_HOST | varchar(256) | YES | | NULL | | -| GRANTEE | char(32) | NO | | | | -| GRANTEE_HOST | char(255) | NO | | | | -| SPECIFIC_CATALOG | varchar(3) | NO | | | | -| SPECIFIC_SCHEMA | char(64) | NO | | | | -| SPECIFIC_NAME | char(64) | NO | | | | -| ROUTINE_CATALOG | varchar(3) | NO | | | | -| ROUTINE_SCHEMA | char(64) | NO | | | | -| ROUTINE_NAME | char(64) | NO | | | | -| PRIVILEGE_TYPE | set('Execute','Alter Routine','Grant') | NO | | | | -| IS_GRANTABLE | varchar(3) | NO | | | | -+------------------+----------------------------------------+------+-----+---------+-------+ -12 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.ROLE_TABLE_GRANTS;" "| Field | Type - | Null | Key | Default | Extra | -+----------------+-----------------------------------------------------------------------------------------------------------------------------------+------+-----+---------+-------+ -| GRANTOR | varchar(97) - | YES | | NULL | | -| GRANTOR_HOST | varchar(256) - | YES | | NULL | | -| GRANTEE | char(32) - | NO | | | | -| GRANTEE_HOST | char(255) - | NO | | | | -| TABLE_CATALOG | varchar(3) - | NO | | | | -| TABLE_SCHEMA | char(64) - | NO | | | | -| TABLE_NAME | char(64) - | NO | | | | -| PRIVILEGE_TYPE | set('Select','Insert','Update','Delete','Create','Drop','Grant','References','Index','Alter','Create View','Show view','Trigger') | NO | | | | -| IS_GRANTABLE | varchar(3) - | NO | | | | -+----------------+-----------------------------------------------------------------------------------------------------------------------------------+------+-----+---------+-------+ -9 rows in set (0.01 sec)" -"mysql> show columns from INFORMATION_SCHEMA.ROUTINES;" "| Field | Type - - - - - - - - | Null | Key | Default | Extra | -+--------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------+-----+---------+-------+ -| SPECIFIC_NAME | varchar(64) - - - - - - - - | NO | | NULL | | -| ROUTINE_CATALOG | varchar(64) - - - - - - - - | NO | | NULL | | -| ROUTINE_SCHEMA | varchar(64) - - - - - - - - | NO | | NULL | | -| ROUTINE_NAME | varchar(64) - - - - - - - - | NO | | NULL | | -| ROUTINE_TYPE | enum('FUNCTION','PROCEDURE') - - - - - - - - | NO | | NULL | | -| DATA_TYPE | longtext - - - - - - - - | YES | | NULL | | -| CHARACTER_MAXIMUM_LENGTH | bigint - - - - - - - - | YES | | NULL | | -| CHARACTER_OCTET_LENGTH | bigint - - - - - - - - | YES | | NULL | | -| NUMERIC_PRECISION | int unsigned - - - - - - - - | YES | | NULL | | -| NUMERIC_SCALE | int unsigned - - - - - - - - | YES | | NULL | | -| DATETIME_PRECISION | int unsigned - - - - - - - - | YES | | NULL | | -| CHARACTER_SET_NAME | varchar(64) - - - - - - - - | YES | | NULL | | -| COLLATION_NAME | varchar(64) - - - - - - - - | YES | | NULL | | -| DTD_IDENTIFIER | longtext - - - - - - - - | YES | | NULL | | -| ROUTINE_BODY | varchar(3) - - - - - - - - | NO | | | | -| ROUTINE_DEFINITION | longtext - - - - - - - - | YES | | NULL | | -| EXTERNAL_NAME | binary(0) - - - - - - - - | YES | | NULL | | -| EXTERNAL_LANGUAGE | varchar(64) - - - - - - - - | NO | | SQL | | -| PARAMETER_STYLE | varchar(3) - - - - - - - - | NO | | | | -| IS_DETERMINISTIC | varchar(3) - - - - - - - - | NO | | | | -| SQL_DATA_ACCESS | enum('CONTAINS SQL','NO SQL','READS SQL DATA','MODIFIES SQL DATA') - - - - - - - | NO | | NULL | | -| SQL_PATH | binary(0) - - - - - - - - | YES | | NULL | | -| SECURITY_TYPE | enum('DEFAULT','INVOKER','DEFINER') - - - - - - - - | NO | | NULL | | -| CREATED | timestamp - - - - - - - - | NO | | NULL | | -| LAST_ALTERED | timestamp - - - - - - - - | NO | | NULL | | -| SQL_MODE | set('REAL_AS_FLOAT','PIPES_AS_CONCAT','ANSI_QUOTES','IGNORE_SPACE','NOT_USED','ONLY_FULL_GROUP_BY','NO_UNSIGNED_SUBTRACTION','NO_DIR_IN_CREATE','NOT_USED_9','NOT_USED_10','NOT_USED_11','NOT_USED_12','NOT_USED_13','NOT_USED_14','NOT_USED_15','NOT_USED_16','NOT_USED_17','NOT_USED_18','ANSI','NO_AUTO_VALUE_ON_ZERO','NO_BACKSLASH_ESCAPES','STRICT_TRANS_TABLES','STRICT_ALL_TABLES','NO_ZERO_IN_DATE','NO_ZERO_DATE','ALLOW_INVALID_DATES','ERROR_FOR_DIVISION_BY_ZERO','TRADITIONAL','NOT_USED_29','HIGH_NOT_PRECEDENCE','NO_ENGINE_SUBSTITUTION','PAD_CHAR_TO_FULL_LENGTH','TIME_TRUNCATE_FRACTIONAL') | NO | | NULL | | -| ROUTINE_COMMENT | text - - - - - - - - | NO | | NULL | | -| DEFINER | varchar(288) - - - - - - - - | NO | | NULL | | -| CHARACTER_SET_CLIENT | varchar(64) - - - - - - - - | NO | | NULL | | -| COLLATION_CONNECTION | varchar(64) - - - - - - - - | NO | | NULL | | -| DATABASE_COLLATION | varchar(64) - - - - - - - - | NO | | NULL | | -+--------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------+-----+---------+-------+ -31 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.SCHEMATA;" "| Field | Type | Null | Key | Default | Extra | -+----------------------------+------------------+------+-----+---------+-------+ -| CATALOG_NAME | varchar(64) | NO | | NULL | | -| SCHEMA_NAME | varchar(64) | NO | | NULL | | -| DEFAULT_CHARACTER_SET_NAME | varchar(64) | NO | | NULL | | -| DEFAULT_COLLATION_NAME | varchar(64) | NO | | NULL | | -| SQL_PATH | binary(0) | YES | | NULL | | -| DEFAULT_ENCRYPTION | enum('NO','YES') | NO | | NULL | | -+----------------------------+------------------+------+-----+---------+-------+ -6 rows in set (0.01 sec)" -"mysql> show columns from INFORMATION_SCHEMA.SCHEMATA_EXTENSIONS;" "| Field | Type | Null | Key | Default | Extra | -+--------------+--------------+------+-----+---------+-------+ -| CATALOG_NAME | varchar(64) | NO | | NULL | | -| SCHEMA_NAME | varchar(64) | NO | | NULL | | -| OPTIONS | varchar(256) | YES | | NULL | | -+--------------+--------------+------+-----+---------+-------+ -3 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.SCHEMA_PRIVILEGES;" "| Field | Type | Null | Key | Default | Extra | -+----------------+--------------+------+-----+---------+-------+ -| GRANTEE | varchar(292) | NO | | | | -| TABLE_CATALOG | varchar(512) | NO | | | | -| TABLE_SCHEMA | varchar(64) | NO | | | | -| PRIVILEGE_TYPE | varchar(64) | NO | | | | -| IS_GRANTABLE | varchar(3) | NO | | | | -+----------------+--------------+------+-----+---------+-------+ -5 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.STATISTICS;" "| Field | Type | Null | Key | Default | Extra | -+---------------+---------------+------+-----+---------+-------+ -| TABLE_CATALOG | varchar(64) | NO | | NULL | | -| TABLE_SCHEMA | varchar(64) | NO | | NULL | | -| TABLE_NAME | varchar(64) | NO | | NULL | | -| NON_UNIQUE | int | NO | | 0 | | -| INDEX_SCHEMA | varchar(64) | NO | | NULL | | -| INDEX_NAME | varchar(64) | YES | | NULL | | -| SEQ_IN_INDEX | int unsigned | NO | | NULL | | -| COLUMN_NAME | varchar(64) | YES | | NULL | | -| COLLATION | varchar(1) | YES | | NULL | | -| CARDINALITY | bigint | YES | | NULL | | -| SUB_PART | bigint | YES | | NULL | | -| PACKED | binary(0) | YES | | NULL | | -| NULLABLE | varchar(3) | NO | | | | -| INDEX_TYPE | varchar(11) | NO | | | | -| COMMENT | varchar(8) | NO | | | | -| INDEX_COMMENT | varchar(2048) | NO | | NULL | | -| IS_VISIBLE | varchar(3) | NO | | | | -| EXPRESSION | longtext | YES | | NULL | | -+---------------+---------------+------+-----+---------+-------+ -18 rows in set (0.01 sec)" -"mysql> show columns from INFORMATION_SCHEMA.ST_GEOMETRY_COLUMNS;" "| Field | Type | Null | Key | Default | Extra | -+--------------------+--------------+------+-----+---------+-------+ -| TABLE_CATALOG | varchar(64) | NO | | NULL | | -| TABLE_SCHEMA | varchar(64) | NO | | NULL | | -| TABLE_NAME | varchar(64) | NO | | NULL | | -| COLUMN_NAME | varchar(64) | YES | | NULL | | -| SRS_NAME | varchar(80) | YES | | NULL | | -| SRS_ID | int unsigned | YES | | NULL | | -| GEOMETRY_TYPE_NAME | longtext | YES | | NULL | | -+--------------------+--------------+------+-----+---------+-------+ -7 rows in set (0.01 sec)" -"mysql> show columns from INFORMATION_SCHEMA.ST_SPATIAL_REFERENCE_SYSTEMS;" "| Field | Type | Null | Key | Default | Extra | -+--------------------------+---------------+------+-----+---------+-------+ -| SRS_NAME | varchar(80) | NO | | NULL | | -| SRS_ID | int unsigned | NO | | NULL | | -| ORGANIZATION | varchar(256) | YES | | NULL | | -| ORGANIZATION_COORDSYS_ID | int unsigned | YES | | NULL | | -| DEFINITION | varchar(4096) | NO | | NULL | | -| DESCRIPTION | varchar(2048) | YES | | NULL | | -+--------------------------+---------------+------+-----+---------+-------+ -6 rows in set (0.01 sec)" -"mysql> show columns from INFORMATION_SCHEMA.ST_UNITS_OF_MEASURE;" "| Field | Type | Null | Key | Default | Extra | -+-------------------+--------------+------+-----+---------+-------+ -| UNIT_NAME | varchar(255) | YES | | NULL | | -| UNIT_TYPE | varchar(7) | YES | | NULL | | -| CONVERSION_FACTOR | double | YES | | NULL | | -| DESCRIPTION | varchar(255) | YES | | NULL | | -+-------------------+--------------+------+-----+---------+-------+ -4 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.TABLES;" "| Field | Type - | Null | Key | Default | Extra | -+-----------------+--------------------------------------------------------------------+------+-----+---------+-------+ -| TABLE_CATALOG | varchar(64) - | NO | | NULL | | -| TABLE_SCHEMA | varchar(64) - | NO | | NULL | | -| TABLE_NAME | varchar(64) - | NO | | NULL | | -| TABLE_TYPE | enum('BASE TABLE','VIEW','SYSTEM VIEW') - | NO | | NULL | | -| ENGINE | varchar(64) - | YES | | NULL | | -| VERSION | int - | YES | | NULL | | -| ROW_FORMAT | enum('Fixed','Dynamic','Compressed','Redundant','Compact','Paged') | YES | | NULL | | -| TABLE_ROWS | bigint unsigned - | YES | | NULL | | -| AVG_ROW_LENGTH | bigint unsigned - | YES | | NULL | | -| DATA_LENGTH | bigint unsigned - | YES | | NULL | | -| MAX_DATA_LENGTH | bigint unsigned - | YES | | NULL | | -| INDEX_LENGTH | bigint unsigned - | YES | | NULL | | -| DATA_FREE | bigint unsigned - | YES | | NULL | | -| AUTO_INCREMENT | bigint unsigned - | YES | | NULL | | -| CREATE_TIME | timestamp - | NO | | NULL | | -| UPDATE_TIME | datetime - | YES | | NULL | | -| CHECK_TIME | datetime - | YES | | NULL | | -| TABLE_COLLATION | varchar(64) - | YES | | NULL | | -| CHECKSUM | bigint - | YES | | NULL | | -| CREATE_OPTIONS | varchar(256) - | YES | | NULL | | -| TABLE_COMMENT | text - | YES | | NULL | | -+-----------------+--------------------------------------------------------------------+------+-----+---------+-------+ -21 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.TABLESPACES;" "| Field | Type | Null | Key | Default | Extra | -+--------------------+-----------------+------+-----+---------+-------+ -| TABLESPACE_NAME | varchar(64) | NO | | | | -| ENGINE | varchar(64) | NO | | | | -| TABLESPACE_TYPE | varchar(64) | YES | | | | -| LOGFILE_GROUP_NAME | varchar(64) | YES | | | | -| EXTENT_SIZE | bigint unsigned | YES | | | | -| AUTOEXTEND_SIZE | bigint unsigned | YES | | | | -| MAXIMUM_SIZE | bigint unsigned | YES | | | | -| NODEGROUP_ID | bigint unsigned | YES | | | | -| TABLESPACE_COMMENT | varchar(2048) | YES | | | | -+--------------------+-----------------+------+-----+---------+-------+ -9 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.TABLESPACES_EXTENSIONS;" "| Field | Type | Null | Key | Default | Extra | -+------------------+--------------+------+-----+---------+-------+ -| TABLESPACE_NAME | varchar(268) | NO | | NULL | | -| ENGINE_ATTRIBUTE | json | YES | | NULL | | -+------------------+--------------+------+-----+---------+-------+ -2 rows in set (0.01 sec)" -"mysql> show columns from INFORMATION_SCHEMA.TABLE_CONSTRAINTS;" "| Field | Type | Null | Key | Default | Extra | -+--------------------+-------------+------+-----+---------+-------+ -| CONSTRAINT_CATALOG | varchar(64) | NO | | NULL | | -| CONSTRAINT_SCHEMA | varchar(64) | NO | | NULL | | -| CONSTRAINT_NAME | varchar(64) | YES | | NULL | | -| TABLE_SCHEMA | varchar(64) | NO | | NULL | | -| TABLE_NAME | varchar(64) | NO | | NULL | | -| CONSTRAINT_TYPE | varchar(11) | NO | | | | -| ENFORCED | varchar(3) | NO | | | | -+--------------------+-------------+------+-----+---------+-------+ -7 rows in set (0.01 sec)" -"mysql> show columns from INFORMATION_SCHEMA.TABLE_CONSTRAINTS_EXTENSIONS;" "| Field | Type | Null | Key | Default | Extra | -+----------------------------+-------------+------+-----+---------+-------+ -| CONSTRAINT_CATALOG | varchar(64) | NO | | NULL | | -| CONSTRAINT_SCHEMA | varchar(64) | NO | | NULL | | -| CONSTRAINT_NAME | varchar(64) | NO | | NULL | | -| TABLE_NAME | varchar(64) | NO | | NULL | | -| ENGINE_ATTRIBUTE | json | YES | | NULL | | -| SECONDARY_ENGINE_ATTRIBUTE | json | YES | | NULL | | -+----------------------------+-------------+------+-----+---------+-------+ -6 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.TABLE_PRIVILEGES;" "| Field | Type | Null | Key | Default | Extra | -+----------------+--------------+------+-----+---------+-------+ -| GRANTEE | varchar(292) | NO | | | | -| TABLE_CATALOG | varchar(512) | NO | | | | -| TABLE_SCHEMA | varchar(64) | NO | | | | -| TABLE_NAME | varchar(64) | NO | | | | -| PRIVILEGE_TYPE | varchar(64) | NO | | | | -| IS_GRANTABLE | varchar(3) | NO | | | | -+----------------+--------------+------+-----+---------+-------+ -6 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.TRIGGERS;" "| Field | Type - - - - - - - - | Null | Key | Default | Extra | -+----------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------+-----+---------+-------+ -| TRIGGER_CATALOG | varchar(64) - - - - - - - - | NO | | NULL | | -| TRIGGER_SCHEMA | varchar(64) - - - - - - - - | NO | | NULL | | -| TRIGGER_NAME | varchar(64) - - - - - - - - | NO | | NULL | | -| EVENT_MANIPULATION | enum('INSERT','UPDATE','DELETE') - - - - - - - - | NO | | NULL | | -| EVENT_OBJECT_CATALOG | varchar(64) - - - - - - - - | NO | | NULL | | -| EVENT_OBJECT_SCHEMA | varchar(64) - - - - - - - - | NO | | NULL | | -| EVENT_OBJECT_TABLE | varchar(64) - - - - - - - - | NO | | NULL | | -| ACTION_ORDER | int unsigned - - - - - - - - | NO | | NULL | | -| ACTION_CONDITION | binary(0) - - - - - - - - | YES | | NULL | | -| ACTION_STATEMENT | longtext - - - - - - - - | NO | | NULL | | -| ACTION_ORIENTATION | varchar(3) - - - - - - - - | NO | | | | -| ACTION_TIMING | enum('BEFORE','AFTER') - - - - - - - - | NO | | NULL | | -| ACTION_REFERENCE_OLD_TABLE | binary(0) - - - - - - - - | YES | | NULL | | -| ACTION_REFERENCE_NEW_TABLE | binary(0) - - - - - - - - | YES | | NULL | | -| ACTION_REFERENCE_OLD_ROW | varchar(3) - - - - - - - - | NO | | | | -| ACTION_REFERENCE_NEW_ROW | varchar(3) - - - - - - - - | NO | | | | -| CREATED | timestamp(2) - - - - - - - - | NO | | NULL | | -| SQL_MODE | set('REAL_AS_FLOAT','PIPES_AS_CONCAT','ANSI_QUOTES','IGNORE_SPACE','NOT_USED','ONLY_FULL_GROUP_BY','NO_UNSIGNED_SUBTRACTION','NO_DIR_IN_CREATE','NOT_USED_9','NOT_USED_10','NOT_USED_11','NOT_USED_12','NOT_USED_13','NOT_USED_14','NOT_USED_15','NOT_USED_16','NOT_USED_17','NOT_USED_18','ANSI','NO_AUTO_VALUE_ON_ZERO','NO_BACKSLASH_ESCAPES','STRICT_TRANS_TABLES','STRICT_ALL_TABLES','NO_ZERO_IN_DATE','NO_ZERO_DATE','ALLOW_INVALID_DATES','ERROR_FOR_DIVISION_BY_ZERO','TRADITIONAL','NOT_USED_29','HIGH_NOT_PRECEDENCE','NO_ENGINE_SUBSTITUTION','PAD_CHAR_TO_FULL_LENGTH','TIME_TRUNCATE_FRACTIONAL') | NO | | NULL | | -| DEFINER | varchar(288) - - - - - - - - | NO | | NULL | | -| CHARACTER_SET_CLIENT | varchar(64) - - - - - - - - | NO | | NULL | | -| COLLATION_CONNECTION | varchar(64) - - - - - - - - | NO | | NULL | | -| DATABASE_COLLATION | varchar(64) - - - - - - - - | NO | | NULL | | -+----------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------+-----+---------+-------+ -22 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.USER_ATTRIBUTES;" "| Field | Type | Null | Key | Default | Extra | -+-----------+-----------+------+-----+---------+-------+ -| USER | char(32) | NO | | | | -| HOST | char(255) | NO | | | | -| ATTRIBUTE | longtext | YES | | NULL | | -+-----------+-----------+------+-----+---------+-------+ -3 rows in set (0.01 sec)" -"mysql> show columns from INFORMATION_SCHEMA.USER_PRIVILEGES;" "| Field | Type | Null | Key | Default | Extra | -+----------------+--------------+------+-----+---------+-------+ -| GRANTEE | varchar(292) | NO | | | | -| TABLE_CATALOG | varchar(512) | NO | | | | -| PRIVILEGE_TYPE | varchar(64) | NO | | | | -| IS_GRANTABLE | varchar(3) | NO | | | | -+----------------+--------------+------+-----+---------+-------+ -4 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.VIEWS;" "| Field | Type | Null | Key | Default | Extra | -+----------------------+---------------------------------+------+-----+---------+-------+ -| TABLE_CATALOG | varchar(64) | NO | | NULL | | -| TABLE_SCHEMA | varchar(64) | NO | | NULL | | -| TABLE_NAME | varchar(64) | NO | | NULL | | -| VIEW_DEFINITION | longtext | YES | | NULL | | -| CHECK_OPTION | enum('NONE','LOCAL','CASCADED') | YES | | NULL | | -| IS_UPDATABLE | enum('NO','YES') | YES | | NULL | | -| DEFINER | varchar(288) | YES | | NULL | | -| SECURITY_TYPE | varchar(7) | YES | | NULL | | -| CHARACTER_SET_CLIENT | varchar(64) | NO | | NULL | | -| COLLATION_CONNECTION | varchar(64) | NO | | NULL | | -+----------------------+---------------------------------+------+-----+---------+-------+ -10 rows in set (0.00 sec)" -"mysql> show columns from INFORMATION_SCHEMA.VIEW_ROUTINE_USAGE;" "| Field | Type | Null | Key | Default | Extra | -+------------------+-------------+------+-----+---------+-------+ -| TABLE_CATALOG | varchar(64) | NO | | NULL | | -| TABLE_SCHEMA | varchar(64) | NO | | NULL | | -| TABLE_NAME | varchar(64) | NO | | NULL | | -| SPECIFIC_CATALOG | varchar(64) | NO | | NULL | | -| SPECIFIC_SCHEMA | varchar(64) | NO | | NULL | | -| SPECIFIC_NAME | varchar(64) | NO | | NULL | | -+------------------+-------------+------+-----+---------+-------+ -6 rows in set (0.01 sec)" -"mysql> show columns from INFORMATION_SCHEMA.VIEW_TABLE_USAGE;" "| Field | Type | Null | Key | Default | Extra | -+---------------+-------------+------+-----+---------+-------+ -| VIEW_CATALOG | varchar(64) | NO | | NULL | | -| VIEW_SCHEMA | varchar(64) | NO | | NULL | | -| VIEW_NAME | varchar(64) | NO | | NULL | | -| TABLE_CATALOG | varchar(64) | NO | | NULL | | -| TABLE_SCHEMA | varchar(64) | NO | | NULL | | -| TABLE_NAME | varchar(64) | NO | | NULL | | -+---------------+-------------+------+-----+---------+-------+ -6 rows in set (0.01 sec)" -"mysql> SELECT * FROM accounts;" ERROR 1142 (42000): SELECT command denied to user 'user'@'localhost' for table 'accounts' -"mysql> SELECT * FROM credit_cards;" ERROR 1142 (42000): SELECT command denied to user 'user'@'localhost' for table 'credit_cards' -"mysql> SELECT * FROM customers;" ERROR 1142 (42000): SELECT command denied to user 'user'@'localhost' for table 'customers' -"mysql> SELECT * FROM employees;" ERROR 1142 (42000): SELECT command denied to user 'user'@'localhost' for table 'employees' -"mysql> SELECT * FROM loans;" ERROR 1142 (42000): SELECT command denied to user 'user'@'localhost' for table 'loans' -"mysql> SELECT * FROM transactions;" ERROR 1142 (42000): SELECT command denied to user 'user'@'localhost' for table 'transactions' -"mysql> use mysql;" ERROR 1044 (42000): Access denied for user 'user'@'localhost' to database 'mysql' -"mysql> use sys;" ERROR 1044 (42000): Access denied for user 'user'@'localhost' to database 'sys' -"mysql> use performance_schema;" ERROR 1044 (42000): Access denied for user 'user'@'localhost' to database 'performance_schema' -"mysql> GRANT ALL PRIVILEGES ON bank_database.* TO 'username'@'localhost';" ERROR 1044 (42000): Access denied for user 'user'@'localhost' to database 'bank_database' -"mysql> REVOKE ALL PRIVILEGES ON bank_database.* FROM 'username'@'localhost';" ERROR 1044 (42000): Access denied for user 'user'@'localhost' to database 'bank_database' -"mysql> ALTER TABLE bank_database.branches ADD new_column VARCHAR(255);" ERROR 1142 (42000): ALTER command denied to user 'user'@'localhost' for table 'branches' -"mysql> ALTER TABLE bank_database.branches DROP COLUMN branch_id;" ERROR 1142 (42000): ALTER command denied to user 'user'@'localhost' for table 'branches' -"mysql> LOCK TABLES bank_database.branches READ;" ERROR 1044 (42000): Access denied for user 'user'@'localhost' to database 'bank_database' -"mysql> SHOW CREATE DATABASE my_database;" ERROR 1044 (42000): Access denied for user 'user'@'localhost' to database 'my_database' -"mysql> SHOW CREATE TABLE bank_database.clients;" ERROR 1142 (42000): SHOW command denied to user 'user'@'localhost' for table 'clients' -"mysql> SELECT CURRENT_ROLE();" "| CURRENT_ROLE() | -+----------------+ -| NONE | -+----------------+ -1 row in set (0.00 sec)" -"mysql> CREATE ROLE 'developer';" "ERROR 1227 (42000): Access denied; you need (at least one of) the CREATE USER, CREATE ROLE privilege(s) for this operation" -"mysql> SET PERSIST mandatory_roles = 'role1@localhost';" "ERROR 1227 (42000): Access denied; you need (at least one of) the SUPER or SYSTEM_VARIABLES_ADMIN privilege(s) for this operation" -"mysql> SET DEFAULT ROLE ALL TO -@'localhost', - 'read_user1'@'lo -> 'dev1'@'localhost', - -> 'read_user1'@'localhost', - -> 'read_user2'@'localhost', - -> 'rw_user1'@'localhost';" "ERROR 1227 (42000): Access denied; you need (at least one of) the CREATE USER privilege(s) for this operation" -"mysql> REVOKE role from 'developer';" "ERROR 1227 (42000): Access denied; you need (at least one of) the WITH ADMIN, ROLE_ADMIN, SUPER privilege(s) for this operation" -"mysql> DROP ROLE 'developer';" "ERROR 1227 (42000): Access denied; you need (at least one of) the CREATE USER, DROP ROLE privilege(s) for this operation" -"mysql> ALTER PROCEDURE my_procedure COMMENT 'Updated procedure';" ERROR 1370 (42000): alter routine command denied to user 'user'@'localhost' for routine 'bank_database.my_procedure' -"mysql> CREATE TEMPORARY TABLE temp_table (id INT);" ERROR 1044 (42000): Access denied for user 'user'@'localhost' to database 'bank_database' -"mysql> CREATE TABLE child_table ( - -> id INT, - -> parent_id INT, - -> FOREIGN KEY (parent_id) REFERENCES parent_table(id) - -> );" ERROR 1142 (42000): CREATE command denied to user 'user'@'localhost' for table 'child_table' -"mysql> SHOW MASTER STATUS;" "ERROR 1227 (42000): Access denied; you need (at least one of) the SUPER, REPLICATION CLIENT privilege(s) for this operation" -"mysql> CHANGE MASTER TO MASTER_HOST='192.168.10.100';" "ERROR 1227 (42000): Access denied; you need (at least one of) the SUPER or REPLICATION_SLAVE_ADMIN privilege(s) for this operation" -"mysql> GRANT SELECT ON branches TO 'user'@'localhost' WITH GRANT OPTION;" ERROR 1142 (42000): GRANT command denied to user 'user'@'localhost' for table 'branches' -"mysql> PURGE BINARY LOGS BEFORE '2024-01-01 00:00:00';" "ERROR 1227 (42000): Access denied; you need (at least one of) the SUPER or BINLOG_ADMIN privilege(s) for this operation" -"mysql> ALTER INSTANCE ROTATE BINLOG MASTER KEY;" "ERROR 1227 (42000): Access denied; you need (at least one of) the SUPER or BINLOG_ENCRYPTION_ADMIN privilege(s) for this operation" -"mysql> FLUSH OPTIMIZER_COSTS;" "ERROR 1227 (42000): Access denied; you need (at least one of) the RELOAD or FLUSH_OPTIMIZER_COSTS privilege(s) for this operation" -"mysql> FLUSH STATUS;" "ERROR 1227 (42000): Access denied; you need (at least one of) the RELOAD or FLUSH_STATUS privilege(s) for this operation" -"mysql> FLUSH USER_RESOURCES;" "ERROR 1227 (42000): Access denied; you need (at least one of) the RELOAD or FLUSH_USER_RESOURCES privilege(s) for this operation" -"mysql> START GROUP_REPLICATION;" "ERROR 1227 (42000): Access denied; you need (at least one of) the SUPER or GROUP_REPLICATION_ADMIN privilege(s) for this operation" -"mysql> STOP GROUP_REPLICATION;" "ERROR 1227 (42000): Access denied; you need (at least one of) the SUPER or GROUP_REPLICATION_ADMIN privilege(s) for this operation" -"mysql> START REPLICA;" "ERROR 1227 (42000): Access denied; you need (at least one of) the SUPER or REPLICATION_SLAVE_ADMIN privilege(s) for this operation" -"mysql> SET SESSION sql_log_bin = 1;" "ERROR 1227 (42000): Access denied; you need (at least one of) the SUPER, SYSTEM_VARIABLES_ADMIN or SESSION_VARIABLES_ADMIN privilege(s) for this operation" -"mysql> XA RECOVER;" ERROR 1401 (XAE03): XAER_RMERR: Fatal error occurred in the transaction branch - check your data for consistency -"mysql> SELECT * FROM INFORMATION_SCHEMA.FILES;" "ERROR 1227 (42000): Access denied; you need (at least one of) the PROCESS privilege(s) for this operation" -"mysql> SELECT * FROM INFORMATION_SCHEMA.INNODB_BUFFER_PAGE;" "ERROR 1227 (42000): Access denied; you need (at least one of) the PROCESS privilege(s) for this operation" -"mysql> SELECT * FROM INFORMATION_SCHEMA.INNODB_BUFFER_PAGE;" "ERROR 1227 (42000): Access denied; you need (at least one of) the PROCESS privilege(s) for this operation" -"mysql> SELECT * FROM INFORMATION_SCHEMA.INNODB_BUFFER_PAGE_LRU;" "ERROR 1227 (42000): Access denied; you need (at least one of) the PROCESS privilege(s) for this operation" -"mysql> SELECT * FROM INFORMATION_SCHEMA.INNODB_BUFFER_POOL_STATS;" "ERROR 1227 (42000): Access denied; you need (at least one of) the PROCESS privilege(s) for this operation" -"mysql> SELECT * FROM INFORMATION_SCHEMA.INNODB_CACHED_INDEXES;" "ERROR 1227 (42000): Access denied; you need (at least one of) the PROCESS privilege(s) for this operation" -"mysql> SELECT * FROM INFORMATION_SCHEMA.INNODB_CMP;" "ERROR 1227 (42000): Access denied; you need (at least one of) the PROCESS privilege(s) for this operation" -"mysql> SELECT * FROM INFORMATION_SCHEMA.INNODB_CMPMEM;" "ERROR 1227 (42000): Access denied; you need (at least one of) the PROCESS privilege(s) for this operation" -"mysql> SELECT * FROM INFORMATION_SCHEMA.INNODB_CMPMEM_RESET;" "ERROR 1227 (42000): Access denied; you need (at least one of) the PROCESS privilege(s) for this operation" -"mysql> SELECT * FROM INFORMATION_SCHEMA.INNODB_CMP_PER_INDEX;" "ERROR 1227 (42000): Access denied; you need (at least one of) the PROCESS privilege(s) for this operation" -"mysql> SELECT * FROM INFORMATION_SCHEMA.INNODB_CMP_PER_INDEX_RESET;" "ERROR 1227 (42000): Access denied; you need (at least one of) the PROCESS privilege(s) for this operation" -"mysql> SELECT * FROM INFORMATION_SCHEMA.INNODB_CMP_RESET;" "ERROR 1227 (42000): Access denied; you need (at least one of) the PROCESS privilege(s) for this operation" -"mysql> SELECT * FROM INFORMATION_SCHEMA.INNODB_COLUMNS;" "ERROR 1227 (42000): Access denied; you need (at least one of) the PROCESS privilege(s) for this operation" -"mysql> SELECT * FROM INFORMATION_SCHEMA.INNODB_DATAFILES;" "ERROR 1227 (42000): Access denied; you need (at least one of) the PROCESS privilege(s) for this operation" -"mysql> SELECT * FROM INFORMATION_SCHEMA.INNODB_FIELDS;" "ERROR 1227 (42000): Access denied; you need (at least one of) the PROCESS privilege(s) for this operation" -"mysql> SELECT * FROM INFORMATION_SCHEMA.INNODB_FOREIGN;" "ERROR 1227 (42000): Access denied; you need (at least one of) the PROCESS privilege(s) for this operation" -"mysql> SELECT * FROM INFORMATION_SCHEMA.INNODB_FOREIGN_COLS;" "ERROR 1227 (42000): Access denied; you need (at least one of) the PROCESS privilege(s) for this operation" -"mysql> SELECT * FROM INFORMATION_SCHEMA.INNODB_FT_BEING_DELETED;" "ERROR 1227 (42000): Access denied; you need (at least one of) the PROCESS privilege(s) for this operation" -"mysql> SELECT * FROM INFORMATION_SCHEMA.INNODB_FT_CONFIG;" "ERROR 1227 (42000): Access denied; you need (at least one of) the PROCESS privilege(s) for this operation" -"mysql> SELECT * FROM INFORMATION_SCHEMA.INNODB_FT_DEFAULT_STOPWORD;" "ERROR 1227 (42000): Access denied; you need (at least one of) the PROCESS privilege(s) for this operation" -"mysql> SELECT * FROM INFORMATION_SCHEMA.INNODB_FT_DELETED;" "ERROR 1227 (42000): Access denied; you need (at least one of) the PROCESS privilege(s) for this operation" -"mysql> SELECT * FROM INFORMATION_SCHEMA.INNODB_FT_INDEX_CACHE;" "ERROR 1227 (42000): Access denied; you need (at least one of) the PROCESS privilege(s) for this operation" -"mysql> SELECT * FROM INFORMATION_SCHEMA.INNODB_FT_INDEX_TABLE;" "ERROR 1227 (42000): Access denied; you need (at least one of) the PROCESS privilege(s) for this operation" -"mysql> SELECT * FROM INFORMATION_SCHEMA.INNODB_INDEXES;" "ERROR 1227 (42000): Access denied; you need (at least one of) the PROCESS privilege(s) for this operation" -"mysql> SELECT * FROM INFORMATION_SCHEMA.INNODB_METRICS;" "ERROR 1227 (42000): Access denied; you need (at least one of) the PROCESS privilege(s) for this operation" -"mysql> SELECT * FROM INFORMATION_SCHEMA.INNODB_SESSION_TEMP_TABLESPACES;" "ERROR 1227 (42000): Access denied; you need (at least one of) the PROCESS privilege(s) for this operation" -"mysql> SELECT * FROM INFORMATION_SCHEMA.INNODB_TABLES;" "ERROR 1227 (42000): Access denied; you need (at least one of) the PROCESS privilege(s) for this operation" -"mysql> SELECT * FROM INFORMATION_SCHEMA.INNODB_TABLESPACES;" "ERROR 1227 (42000): Access denied; you need (at least one of) the PROCESS privilege(s) for this operation" -"mysql> SELECT * FROM INFORMATION_SCHEMA.INNODB_TABLESPACES_BRIEF;" "ERROR 1227 (42000): Access denied; you need (at least one of) the PROCESS privilege(s) for this operation" -"mysql> SELECT * FROM INFORMATION_SCHEMA.INNODB_TABLESTATS;" "ERROR 1227 (42000): Access denied; you need (at least one of) the PROCESS privilege(s) for this operation" -"mysql> SELECT * FROM INFORMATION_SCHEMA.INNODB_TEMP_TABLE_INFO;" "ERROR 1227 (42000): Access denied; you need (at least one of) the PROCESS privilege(s) for this operation" -"mysql> SELECT * FROM INFORMATION_SCHEMA.INNODB_TRX;" "ERROR 1227 (42000): Access denied; you need (at least one of) the PROCESS privilege(s) for this operation" -"mysql> SELECT * FROM INFORMATION_SCHEMA.INNODB_VIRTUAL;" "ERROR 1227 (42000): Access denied; you need (at least one of) the PROCESS privilege(s) for this operation"