vote up 0 vote down star

I have a fact table that has 17 keys. Normally I have been designating the primary key as all of my dimensional keys. MS SQL server 2008 has a limitation of 16 columns in a primary key or unique constraint. Are there any work arounds?

flag

4 Answers

vote up 0 vote down

Create a surrogate primary key for the fact table.

link|flag
vote up 0 vote down

Can you combine dimensions? I once had three dimensions with three-four values each, and lumped them together into a "junk" dimension (Kimball's name, not mine) with about 48 rows.

link|flag
I had considered a junk dimension. In this particular case it didn't make much sense. – Rick Jul 27 at 17:00
vote up 0 vote down check

I downloaded Microsoft's project real. They do not include all keys in the pk. There are 2 scenarios. If all the keys actually are unique per the business rules then that is the pk. 2- If there are more keys on the table than what makes it unique per the busines rules, then a clustered index is used on the unique keys and the table doesn't have a primary key.

link|flag
vote up 1 vote down

Build a calculated column as a concatenation and index on that?

You only need to concatenate the columns in excess of the 15th, and make that extra column the 16th.

Are you sure you need seventeen dimensions?

link|flag
Yes I do need 17 dimensions. I am using ints for the keys, how would the concatenation work? – Rick Jul 16 at 19:11
If all you care about is uniqueness and not collation, you could just convert them to strings and combine them with some separator character. If you care about collation, I'd use a money type, and use a multiplier. So if the 17th value ranges from 0 to 1,000,000, then the calc value = 16th * 1000000 + 17th. There are other more effective ways to do it, depending on the structure of your data and how much work you're willing to put in. – lavinio Jul 16 at 19:36
An even more abstract way to combine keys would be with the binary(x) data type -- add four bytes per INT key. But it breaks the star schema paradigm, and would be as ugly as sin. – Philip Kelley Jul 24 at 14:50

Your Answer

Get an OpenID
or

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