January 10, 2017 at 1:36 pm
Is there a way to create a foreign key w/o the constaint portion in sql server?
January 10, 2017 at 1:40 pm
you could create it WITH NO CHECK so it does not validate the existing data, and would be untrusted...but why would you want to do that?
referential integrity is a good thing.
Lowell
January 10, 2017 at 1:44 pm
There's certainly nothing stopping you from using columns in one able to reference another table without making it an official foreign key. You would just have to rely on your application to maintain it as opposed to the database engine which may or may not be what you want.
January 10, 2017 at 1:51 pm
ZZartin (1/10/2017)
There's certainly nothing stopping you from using columns in one able to reference another table without making it an official foreign key. You would just have to rely on your application to maintain it as opposed to the database engine which may or may not be what you want.
And keep fixing the data over and over again when the application is not able to maintain the data integrity.
January 10, 2017 at 2:09 pm
Luis Cazares (1/10/2017)
ZZartin (1/10/2017)
There's certainly nothing stopping you from using columns in one able to reference another table without making it an official foreign key. You would just have to rely on your application to maintain it as opposed to the database engine which may or may not be what you want.And keep fixing the data over and over again when the application is not able to maintain the data integrity.
No one would ever do that, would they? :hehe:
The absence of evidence is not evidence of absence
- Martin Rees
The absence of consumable DDL, sample data and desired results is, however, evidence of the absence of my response
- Phil Parkin
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply