sql >> Base de Datos >  >> RDS >> Sqlserver

Cómo listar todas las claves foráneas con CON NOCHECK en SQL Server

Lo siguiente devolverá el nombre de las claves foráneas en la base de datos actual que están deshabilitadas, es decir, CON NOCHECK

Para SQL Server 2005/2008:

select * from sys.foreign_keys where is_disabled=1



Hubo un debate en la respuesta sobre la diferencia entre deshabilitado y no confiable. Lo que se encuentra a continuación explica la diferencia Aquí hay un código para aclarar la diferencia entre is_disabled y isnotrusted.
-- drop table t1
-- drop table t2
create table t1(i int not null, fk int not null)
create table t2(i int not null)
-- create primary key on t2
alter table t2
add constraint pk_1 primary key (i)
-- create foriegn key on t1
alter table t1
add constraint fk_1 foreign key (fk)
    references t2 (i)
--insert some records
insert t2 values(100)
insert t2 values(200)
insert t2 values(300)
insert t2 values(400)
insert t2 values(500)
insert t1 values(1,100)
insert t1 values(2,100)
insert t1 values(3,500)
insert t1 values(4,500)
----------------------------
-- 1. enabled and trusted
select name,is_disabled,is_not_trusted from sys.foreign_keys
GO

-- 2. disable the constraint
alter table t1 NOCHECK CONSTRAINT fk_1
select name,is_disabled,is_not_trusted from sys.foreign_keys
GO

-- 3. re-enable constraint, data isnt checked, so not trusted.
-- this means the optimizer will still have to check the column
alter table  t1 CHECK CONSTRAINT fk_1 
select name,is_disabled,is_not_trusted from sys.foreign_keys
GO

--4. drop the foreign key constraint & re-add 
-- it making sure its checked
-- constraint is then enabled and trusted
alter table t1  DROP CONSTRAINT fk_1
alter table t1 WITH CHECK 
add constraint fk_1 foreign key (fk)
    references t2 (i)
select name,is_disabled,is_not_trusted from sys.foreign_keys
GO


--5. drop the foreign key constraint & add but dont check
-- constraint is then enabled, but not trusted
alter table t1  DROP CONSTRAINT fk_1
alter table t1 WITH NOCHECK 
add constraint fk_1 foreign key (fk)
    references t2 (i)
select name,is_disabled,is_not_trusted from sys.foreign_keys
GO

is_disabled significa que la restricción está deshabilitada

isnottrusted significa que SQL Server no confía en que la columna se haya verificado con la tabla de clave externa.

Por lo tanto, no se puede suponer que se optimizará la reactivación de la restricción de clave externa. Para garantizar que el optimizador confíe en la columna, es mejor eliminar la restricción de clave externa y volver a crearla con WITH CHECK opción (4.)