N_Muller
N_Muller

Reputation: 51

SSDT doesn't recognize changes to table to make it a partitioned table

I have a table in SQL Server 2014 with the definition in TFS (VS-2015). The table is not partitioned. I made the table partitioned in TFS and expected SSDT would recognize the change and create a deployment script that would change the table from non-partitioned to partitioned. That didn't happen.

Is there a workaround other than making the table changes outside of TFS and SSDT?

Upvotes: 3

Views: 515

Answers (1)

Piotr Palka
Piotr Palka

Reputation: 3169

Uncheck "Ignore object placement on partition schemes" in your deployment settings (it is set by default):
enter image description here

Upvotes: 2

Related Questions