SQL Server 表压缩
表压缩有三个选项
1、page
2、row
3、none
-----------------------------------------------------------------------------------------------------------------------
三种设置方式:
第一种:定义时指定
create table table_name(....)
with
(data_compression = none | page | row);
第二种:修改时指定
alter table table_name
rebuild
with
(datacompression = page | row | none);
第三种:针对特定分区
create table table_name(...)
on partition_schem_test(column_name)
with
(data_compression = page on partition(1 to 3),
data_compression = row on partition(4));
---------------------------------------------------
alter table table_name
rebuild partition = 4
with
(data_compression = page);
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。