Viewing 15 posts - 271 through 285 (of 432 total)
roger.plowman (3/3/2010)
March 3, 2010 at 12:47 pm
The article by Codd that I quoted was talking about normalization of FDs and MVDs generally, not specifically 5NF. Boyce, Codd and Fagin's work on Normal Forms all deal only...
March 3, 2010 at 6:57 am
RalphWilson (3/2/2010)
If you just arbitrarily do things like using IDENTITY_INSERT or reseed the Identity column, then, IMHO, you deserve to have problems. If you don't screw around with the...
March 2, 2010 at 5:21 pm
Steve Cullen (3/2/2010)
Just because you use a email address to login...
March 2, 2010 at 1:30 pm
RalphWilson (3/2/2010)
David,
You have got to be kindding. Not everyone has an email address...
March 2, 2010 at 11:13 am
Tom.Thomson (3/2/2010)
March 2, 2010 at 9:00 am
Gary Varga (3/1/2010)
March 2, 2010 at 12:28 am
Steve Jones - Editor (3/1/2010)
If the key is only used in the db, and used to manage data and maintain links and integrity, is it an issue?
It is a most...
March 1, 2010 at 2:41 pm
I meant only that that is my experience. I hope the OP will try it for himself rather than take my word for it.
March 1, 2010 at 2:30 pm
So many business numbers we use are made up. Granted there are items like an ISBN that are regulated, and should provide a strong natural key, but even those...
March 1, 2010 at 2:27 pm
HowardW (3/1/2010)
http://technet.microsoft.com/en-us/library/bb510625.aspx
Because the MERGE statement performs a full table scan of both the source and target tables, I/O performance can be affected when using the TOP clause to modify...
March 1, 2010 at 9:24 am
To be clear, I'm not saying you should avoid UPDATE FROM just because Microsoft may deprecate it. I'm recommending that you should avoid it because MERGE is more efficient, more...
March 1, 2010 at 9:00 am
The Dixie Flatline (3/1/2010)
March 1, 2010 at 7:48 am
I'm with Gail on this. What you choose as a primary key is not important. Candidate keys are the important issue. Just be sure you are enforcing the candidate keys...
March 1, 2010 at 4:26 am
For new code in 2008 I do, yes. The old-style UPDATE with join will likely be officially deprecated in a future version. It is an unpleasant legacy from SQL Server's...
February 28, 2010 at 11:59 am
Viewing 15 posts - 271 through 285 (of 432 total)