Viewing 15 posts - 31 through 45 (of 74 total)
Stefan Krzywicki (6/9/2010)
SELECT E.EmployeeID, E.LastName, E.FirstName, D.DepartmentID, D.Department,
P.Project, P.ProjectID, PD.ProjectDetailID, PD.ProjectDetail PD.Comments
FROM Employee E
INNER JOIN Department D
ON E.DepartmentID = D.DepartmentID
INER JOIN ProjectInterim PRI
ON PRI.EmployeeID = E.EmployeeID
INNER JOIN...
June 9, 2010 at 9:46 am
To simply state "That is the problem of the developer" sets up an adversarial relationship.
On the contrary, using "TableNameId" for the PK column is harder for the developer not easier...
June 8, 2010 at 3:55 pm
While it may be "more logical", it isn't really within your power to ensure the developers code things your way. One of the main reasons for aliases is to keep...
June 8, 2010 at 9:29 am
I agree with most of the article except for this statement:
"The instant you start writing queries that join tables together ID, name and description are taken outside of their context...
June 7, 2010 at 11:26 pm
Aaron Cabrele (10/31/2009)
October 31, 2009 at 2:44 pm
The original article states that you cannot use an identity column but says nothing about adding columns in general. Doesn't the entire issue come down to uniquely identifying each row?...
October 30, 2009 at 9:25 pm
Jason Whitney (10/1/2009)
October 12, 2009 at 11:26 pm
Unfortunately, the article glossed over quite a bit. The Devil in these details is a much bigger beast. For example, including the effective dates as part of the primary key...
October 12, 2009 at 11:19 pm
These are my 2 cents are the OA:
RE Capitalizing keywords
IMO, this is an outdated suggestion. Back in the day when people used monochrome editors, it made sense. It might even...
September 27, 2009 at 5:46 pm
I must say that from a maintenance point of view, one of the hardest skills to teach developers is the skill of removing obsolete code. Many developers simply comment old...
June 22, 2009 at 7:52 am
If the idea of the article is present set-based solutions to common cursor implementations, I have one that I'd like to see. It is the simple list result. I want...
April 27, 2009 at 8:34 am
Heh... that's a heck of a switch
in gears from the "intuitive" stance
you took just a couple of posts ago.
Actually, it goes directly to my point. Unlike DBA purists,...
April 16, 2009 at 9:45 pm
It is clear that you gentlemen are missing the point. That developers should strive to refine their craft is obvious. No one disputes that. That set-based solutions are preferred in...
April 16, 2009 at 3:14 pm
Jeff,
Look at features you need to know to write the while loop vs. the cross Join. In the case of the while loop, you need to know about the while...
April 15, 2009 at 11:31 pm
Oh, and as it turns out I didn't waste ANY hours coming up with this one. In fact it took me less than a minute. That's because I,...
April 15, 2009 at 11:06 pm
Viewing 15 posts - 31 through 45 (of 74 total)