Hello All,
I've a table with around 300 Million Records. This Table has one Key Column (Auto Incremented by 1 ) and a Unique ID Field.
Primary Key (Clustered Primary Key) was created on Key Column of this Table.
Now If I want to partition this table based on UniqueID Field, SQL Server is not allowing me to do it! It throws the error something like "Partitioned Column should present in Primary Key (Clustered Index)"
Is it mandatory that the partitioned column should definitely be present in the clustered index or primary key of the table if exists.
Could someone tell me what are the prerequisites to partition a table that already have a primary key on FieldA and Unique Non Clustered Index on FieldB and I'd like to partition the table based on FieldC?
Thanks in Advance...
Unknown