码迷,mamicode.com
首页 > 数据库 > 详细

SQL Server 表压缩

时间:2014-10-25 21:20:23      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:io   ar   sp   on   art   bs   sql   res   ui   

表压缩有三个选项

  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);

 

SQL Server 表压缩

标签:io   ar   sp   on   art   bs   sql   res   ui   

原文地址:http://www.cnblogs.com/JiangLe/p/4050777.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!