Re: What are cons and pros for using IDENTITY property as PK in SQL SERVER 2000?
Do you really allow the same Doctor, Department, etc to appear twice in its
table with different keys? If you don't declare unique natural keys then
that's the kind of problem you have. An IDENTITY isn't a *surrogate* key at
all unless the table also has a natural key - it's just a physical row
identifier.
--
David Portas
------------
Please reply only to the newsgroup
--
Do you really allow the same Doctor, Department, etc to appear twice in its
table with different keys? If you don't declare unique natural keys then
that's the kind of problem you have. An IDENTITY isn't a *surrogate* key at
all unless the table also has a natural key - it's just a physical row
identifier.
--
David Portas
------------
Please reply only to the newsgroup
--
Comment