Create a Partition Function in SQL

别来无恙 提交于 2019-12-07 22:46:28

you need a partition scheme to apply to a table.

The order is:

1) Create your Filegroups

2) Create your partition Function

3) Attach Partition Scheme to FileGroups (using the partition Function)

4) Create table on partition Scheme

Check this link for a tutorial

Is this just a naming issue, shouldn't:

) ON  CORStaticDateMonthPartition ([CORStaticDateId])

be

) ON  StaticDateMonthPartition ([CORStaticDateId])
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!