Sqlserver
 sql >> डेटाबेस >  >> RDS >> Sqlserver

SQL सर्वर में NOCHECK के साथ सभी विदेशी कुंजियों को कैसे सूचीबद्ध करें

निम्नलिखित वर्तमान डेटाबेस में विदेशी कुंजियों का नाम लौटाएगा जो अक्षम हैं यानी NOCHECK के साथ

SQL सर्वर 2005/2008 के लिए:

select * from sys.foreign_keys where is_disabled=1



विकलांग और भरोसेमंद नहीं के बीच अंतर के बारे में उत्तर में कुछ चर्चा हुई थी। नीचे क्या है अंतर बताता है is_disabled और 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 इसका मतलब है कि बाधा अक्षम है

isnottrusted इसका मतलब है कि SQL सर्वर इस बात पर भरोसा नहीं करता है कि कॉलम को विदेशी कुंजी तालिका के विरुद्ध चेक किया गया है।

इस प्रकार यह नहीं माना जा सकता है कि विदेशी कुंजी बाधा को पुन:सक्षम करने से अनुकूलित किया जाएगा। यह सुनिश्चित करने के लिए कि ऑप्टिमाइज़र कॉलम पर भरोसा करता है, विदेशी कुंजी बाधा को छोड़ना और WITH CHECK के साथ इसे फिर से बनाना सबसे अच्छा है। विकल्प (4.)



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. एसक्यूएल सर्वर:यूनियन के बाद इनर जॉइन धीमी हैश मैच (कुल) की ओर जाता है

  2. SQL सर्वर 2008 अद्वितीय कॉलम जो केस सेंसिटिव है

  3. एसक्यूएल सर्वर 2008 पूर्ण पाठ खोज में एचटीएमएल टैग को कैसे अनदेखा करें?

  4. SQL सर्वर में sys.parameters, sys.system_parameters और sys.all_parameters के बीच अंतर

  5. संपादन मास्टर/विवरण रिकॉर्ड कैसे कार्यान्वित करें?