SQL Compare Exclude constraints
bbilow
Posts: 4
I'm in the process of creating a continuous integration system and I have a few issues with constraints causing issues when SQLDataCompare is run to sync data from SVN. Is there a switch or something that I can use to exclude constraints the same way that other objects can be excluded?
ie:(/Exclude:storedprocedure:proc_thisproc)
ie:(/Exclude:storedprocedure:proc_thisproc)
Comments
There is a project option to ignore constraints and indexes, but they don't get ignored when the database is deployed.
There is an option with SQL Data Compare that forces the constraints to be enabled with NOCHECK. This would mean you could also deploy the constraints, but the existing data won't be validated against the constraint when it gets created. This might be helpful, unless you actually want the constraints to be different.