TitleistDBA
IS-IT--Management
I'm look to see if any of my Foreign Key constraints have been disabled. Is there an easy way to do this?
I have run the following select which will show my all my FK constraints.
select * from sysobjects
where xtype = 'F'
How can I tell if any have been disabled with the following syntax.
ALTER TABLE cnst_example NOCHECK CONSTRAINT salary_cap
Thanks
I have run the following select which will show my all my FK constraints.
select * from sysobjects
where xtype = 'F'
How can I tell if any have been disabled with the following syntax.
ALTER TABLE cnst_example NOCHECK CONSTRAINT salary_cap
Thanks