vote up 0 vote down star

Most examples dealing with table partitions, create the table on the partition scheme.

For example:

create table SomeTable
(
  Id int not null ,
  DueDate DateTime not null
) on MyPartitionScheme(DueDate)

Where MyPartitionScheme is a predefined partition scheme.

If I have a table that already exists, possibly with data with it. Can I "alter" it to use the partition scheme?

flag

3 Answers

vote up 1 vote down check

From Microsoft SQL Server 2005 Implementation and Maintenance:

  1. Create a partition function
  2. Create a partition scheme
  3. Drop the existing clustered index
  4. Re-create the clustered index on the partition scheme
link|flag
Won't this just partition the clustered index and not the table storage itself? – Ron Harlev Feb 4 at 19:16
the table is stored in the clustered index. that's what a clustered index is – bdukes Feb 4 at 19:18
vote up 0 vote down

lookup ALTER TABLE SWITCH TO PARTITION in BOL

link|flag
Does this just move the data on one partition to another table? – bdukes Feb 4 at 19:16
vote up 0 vote down

In Partitioned Tables and Indexes in SQL Server 2005 clearly states:

"By defining a clustered index on a partition scheme, you will effectively partition the table after the load. This is also a great way of partitioning an existing table. To create the same table as a nonpartitioned table, and create the clustered index as a partitioned clustered index, replace the ON clause in the create table with a single filegroup destination. Then, create the clustered index on the partition scheme after the data is loaded."

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.