在 MySQL 中更改 max_heap_table_size 值?
max_heap_table_size 是一个既有读权限又有写权限的系统变量。
最初,max_heap_table_size 大小为 16 MB。首先,检查 max_heap_table_size 的值,以字节为单位。
查询如下 −
mysql> select @@max_heap_table_size;
以下是输出 −
+-----------------------+ | @@max_heap_table_size | +-----------------------+ | 16777216 | +-----------------------+ 1 row in set (0.00 sec)
现在让我们看看值 16777216 字节 = 16 MB −
1 MB = 1024KB 1KB = 1024 Bytes 1MB = 1024*1024 bytes. To convert 16777216 byte to MB you need to divide 1024*1024. =16777216/(1024*1024) =16777216/1048576 =16 MB
现在,你可以使用 SET 命令更改 max_heap_table_size。语法如下 −
SET @@@@max_heap_table_size=yourNumberOfBytes.
让我们更改 max_heap_table_size 值。字节数为 33554432,等于 32 MB。
查询如下 −
mysql> set @@max_heap_table_size=33554432; Query OK, 0 rows affected (0.00 sec)
现在检查 @@max_heap_table_size 的值。查询如下 −
mysql> select @@max_heap_table_size;
以下是输出 −
+-----------------------+ | @@max_heap_table_size | +-----------------------+ | 33554432 | +-----------------------+ 1 row in set (0.00 sec)
让我们看看它是否等于 32MB。这里使用的公式如上所述 −
mysql> select @@max_heap_table_size/1048576 as MB;
以下是输出 −
+---------+ | MB | +---------+ | 32.0000 | +---------+ 1 row in set (0.00 sec)
广告