vote up 0 vote down star

I am creating partition function and schemes.

In SQL Server 2008, it only defines range partitioning and not list partitions.

Dont we have list partitioning in SQL Server?

I am using SQL Server 2008 Enterprise edition.

flag

1 Answer

vote up 2 vote down check

There is no List Partitioning in SQL Server 2008. But you can fake it into creating one using the LEFT clause.

Read up here:

http://www.sqlservercentral.com/articles/partition/64740/

link|flag
What about hash partition? – Manjot Oct 23 at 22:09
AFAIK Hash Partitioning is not implemented in SQL 2008. – Raj More Oct 23 at 22:33
It was originally planned (syntax for it existed in the early betas) but it was dropped halfway through the beta period. Wish I could share details on why. – Aaron Bertrand Oct 23 at 23:39
Thank you very much – Manjot Oct 25 at 0:17

Your Answer

Get an OpenID
or

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