Options

SQL Compare 10 does not correctly report CHECK CONSTRAINT

mdesousamdesousa Posts: 15
edited March 28, 2012 6:51AM in SQL Compare Previous Versions
I'm testing a trial of SQL Compare 10.1, and ran into an issue when the "NOCHECK" flag of our constraints is compared... it looks like SQL Compare doesn't accurately reflect the status of the flag.

To reproduce, create a database with some tables and some foreign key constraints.
Take a snapshot of the database.
When I run SQL Compare at this point, no differences are reported.
Then run this command:

alter table <SomeTable> nocheck constraint <SomeConstraint>

Run a comparison... SQL Compare shows the NoCheck flag.
Now run this command to re-enable the check:

alter table <SomeTable> check constraint <SomeConstraint>

At this point, SQL Compare still shows the NOCHECK flag, which is wrong.

Has anyone else run into this problem?

Comments

  • Options
    Brian DonahueBrian Donahue Posts: 6,590 Bronze 1
    In my test, the original definition does not change - I get an additional line after I disable the constraint.
    before:
    -- Foreign Keys
    
    ALTER TABLE &#91;dbo&#93;.&#91;SystemSW&#93; WITH NOCHECK ADD CONSTRAINT &#91;FK_SystemSW_Software&#93; FOREIGN KEY &#40;&#91;SW&#93;&#41; REFERENCES &#91;dbo&#93;.&#91;Software&#93; &#40;&#91;RecID&#93;&#41; ON DELETE CASCADE
    GO
    ALTER TABLE &#91;dbo&#93;.&#91;SystemSW&#93; WITH NOCHECK ADD CONSTRAINT &#91;FK_SystemSW_Computers&#93; FOREIGN KEY &#40;&#91;System&#93;&#41; REFERENCES &#91;dbo&#93;.&#91;Computers&#93; &#40;&#91;AssetID&#93;&#41; ON DELETE CASCADE
    GO
    
    After:
    -- Foreign Keys
    
    ALTER TABLE &#91;dbo&#93;.&#91;SystemSW&#93; WITH NOCHECK ADD CONSTRAINT &#91;FK_SystemSW_Software&#93; FOREIGN KEY &#40;&#91;SW&#93;&#41; REFERENCES &#91;dbo&#93;.&#91;Software&#93; &#40;&#91;RecID&#93;&#41; ON DELETE CASCADE
    GO
    ALTER TABLE &#91;dbo&#93;.&#91;SystemSW&#93; WITH NOCHECK ADD CONSTRAINT &#91;FK_SystemSW_Computers&#93; FOREIGN KEY &#40;&#91;System&#93;&#41; REFERENCES &#91;dbo&#93;.&#91;Computers&#93; &#40;&#91;AssetID&#93;&#41; ON DELETE CASCADE
    GO
    ALTER TABLE &#91;dbo&#93;.&#91;SystemSW&#93; NOCHECK CONSTRAINT &#91;FK_SystemSW_Software&#93;
    GO
    

    So I think the result is not as you expect because the original constrint definition remains (WITH NOCHECK in this context means the existing data will not be checked) and the additional NOCHECK CONSTRAINT is added to disable the constraint. These two bits of syntax, although they look very similar, fulfill two different functions.
  • Options
    Hi Brian, thank you for your reply.
    In my example, I was referring exclusively to the second scenario. So, assuming that my table already has all its constraints and they were enabled when they were initially created. I am taking a snapshot of the database and then running this command:

    ALTER TABLE [dbo].[SystemSW] NOCHECK CONSTRAINT [FK_SystemSW_Software]

    If I run SQL Compare at this point, there is a difference between the snapshot and the live database, which is expected.

    Next, I run this command:

    ALTER TABLE [dbo].[SystemSW] CHECK CONSTRAINT [FK_SystemSW_Software]

    I would expect SQL Compare to show no differences... but it actually still shows that the NOCHECK flag is enabled.
  • Options
    Brian DonahueBrian Donahue Posts: 6,590 Bronze 1
    Hi,

    I see. It looks to be broken in 10.1. It worked in 10.0. I'll see what I can find out.
  • Options
    Brian DonahueBrian Donahue Posts: 6,590 Bronze 1
    Does it work if you use this syntax?

    ALTER TABLE [dbo].[SystemSW] CHECK CHECK CONSTRAINT [FK_SystemSW_Software]
  • Options
    That syntax does not appear to be valid:

    Msg 156, Level 15, State 1, Line 1
    Incorrect syntax near the keyword 'CHECK'.
  • Options
    Brian DonahueBrian Donahue Posts: 6,590 Bronze 1
    Sorry, I forgot the WITH...
    ALTER TABLE tablename WITH CHECK CHECK CONSTRAINT constraintName
  • Options
    Excellent! This solves the problem.
    Thank you.
Sign In or Register to comment.