سؤال

Is there an easy way to test whether the primary key of a record is referenced in any other table in the database without going and searching for said primary key in all the applicable tables?

I want to know before I get to the exception, and disable a delete button.

هل كانت مفيدة؟

المحلول

The way I normally deal with this foreign keys and references are by using EXISTS (Transact-SQL). By doing it this way, you have to use one EXISTS for every foreign key you want to check.

Another way of dealing with it is just to catch the exception and handling it in the code.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top