PerconaDB:默认是XtraDB
MariaDB:默认是InnoDB
其他的存储引擎支持:
TokuDB (MariaDB原生态支持)
RocksDB
MyRocks
以上三种存储引擎的共同点:压缩比较高,数据插入性能极高
现在很多的NewSQL,使用比较多的功能特性.
show engines;
select TABLE_NAME,ENGINE from information_schema.tables where ENGINE = 'CSV';
+-------------+--------+
| TABLE_NAME | ENGINE |
+-------------+--------+
| general_log | CSV |
| slow_log | CSV |
+-------------+--------+
select @@default_storage_engine;
+--------------------------+
| @@default_storage_engine |
+--------------------------+
| InnoDB |
+--------------------------+
use klvchen;
show create table t1\G;
*************************** 1. row ***************************
Table: t1
Create Table: CREATE TABLE `t1` (
`id` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4
# 查看全部
show table status\G;
# 或单个表
show table status like 't1'\G;
*************************** 1. row ***************************
Name: t1
Engine: InnoDB
Version: 10
Row_format: Dynamic
Rows: 6
Avg_row_length: 2730
Data_length: 16384
Max_data_length: 0
Index_length: 0
Data_free: 0
Auto_increment: NULL
Create_time: 2020-01-12 23:06:05
Update_time: NULL
Check_time: NULL
Collation: utf8mb4_general_ci
Checksum: NULL
Create_options:
Comment:
1 row in set (0.00 sec)
show table status from klvchen;
select TABLE_SCHEMA,TABLE_NAME,ENGINE from INFORMATION_SCHEMA.TABLES where TABLE_SCHEMA not in ('sys','information_schema','performance_schema');
alter table klvchen.t1 engine innodb;
注意:此命令我们经常使用他,进行innodb表的碎片整理
select concat("alter table ",table_schema,".",table_name," engine innodb;") from information_schema.tables where table_schema='klvchen';
+----------------------------------------------------------------------+
| concat("alter table ",table_schema,".",table_name," engine innodb;") |
+----------------------------------------------------------------------+
| alter table klvchen.t1 engine innodb; |
| alter table klvchen.t2 engine innodb; |
| alter table klvchen.t3 engine innodb; |
| alter table klvchen.t4 engine innodb; |
+----------------------------------------------------------------------+
原文:https://www.cnblogs.com/klvchen/p/12292608.html