to enable incremental update statistics i have to create partition function, partition scheme, index on my table and create table in this way
    create table [tmp].[PartitionTest]
    (
        [RecordId] int not null 
        ,[CreateDate]  datetime
            ,[Quantity] int
    )  on [ups_partionByDate_scheme226] ([CreateDate])
But, when I can't create table like and add this line
on [ups_partionByDate_scheme226] ([CreateDate])
Can I do this by alter table or other way?