Tagged Questions
2
votes
3answers
40 views
SQL FK and Pre-Checking for Existance
I was wondering what everyone's opinion was with regard to pre-checking foreign key look ups before INSERTS and UPDATES versus letting the database handle it. As you know the server will throw an ...
2
votes
1answer
4k views
SQL Server 2005: Nullable Foreign Key Constraint
I have a foreign key constraint between tables Sessions and Users. Specifically, Sessions.UID = Users.ID. Sometimes, I want Sessions.UID to be null. Can this be allowed? Any time I try to do this, I ...