Options

Include or Exclude a specific Index?

anna.panna.p Posts: 34 New member
edited August 27, 2013 1:16PM in SQL Compare Previous Versions
Is it possible to "include", "exclude" or filter by a specific index or constraint?

For example, let's say these are the differences between source and target:
ALTER TABLE TableA ALTER COLUMN Col1 int NOT NULL
CREATE INDEX IDX_Index1 ON TableA (Col1)
CREATE INDEX IDX_Index2 ON TableA (Col2)
And these are the changes I actually want to push:
ALTER TABLE TableA ALTER COLUMN Col1 int NOT NULL
CREATE INDEX IDX_Index1 ON TableA (Col1)

Comments

Sign In or Register to comment.