Do I need to specify ON DELETE NO ACTION on my Foreign Key?
From the column_constraint page on MSDN: ON DELETE { NO ACTION | CASCADE | SET NULL | SET DEFAULT } Specifies what action happens to rows in the table that is altered, if those rows have a referential relationship and the referenced row is deleted from the parent table. The default is NO ACTION. So, … Read more