如何通过alter table启用增量统计

时间:2019-04-24 08:35:56

标签: sql-server

要启用增量更新统计信息,我必须在我的表上创建分区功能,分区方案,索引并以这种方式创建表

    create table [tmp].[PartitionTest]
    (
        [RecordId] int not null 
        ,[CreateDate]  datetime
            ,[Quantity] int

    )  on [ups_partionByDate_scheme226] ([CreateDate])

但是,当我无法创建像表并添加此行时

on [ups_partionByDate_scheme226] ([CreateDate])

我可以通过alter table或其他方式吗?

1 个答案:

答案 0 :(得分:0)

是的。

如果表具有聚簇索引,则需要删除它,然后可以使用以下代码段。如果没有群集索引,请跳过上一句话。

A→(B→A)

另请参阅Create Partitioned Tables and Indexes