Viewing 7 posts - 676 through 682 (of 682 total)
I totally agree with the article, and all subsequent comments.
I'd like some debate, however, so I'd like to state 2 extremes, and ask where people's tradeoffs are?
1. Critical system,...
January 21, 2003 at 4:27 am
Convert(Varchar(10),CompetitorID) fails to order CompetitorIDs propery (because you'll get 1, 10, 2 etc..)
I tried it out and chrhedga's solution worked for me, but not Antares686's first part (as chrhedga suggested).
Here's...
September 17, 2002 at 8:08 am
Mohamed,
I'd be interested to know how fast it is if you use a table variable instead of a temporary table (assuming you can)...
DECLARE @rows int
DECLARE @subrows int
SET @rows = 12
SET...
May 9, 2002 at 10:45 am
Good article - it's interesting to see someone elses naming convention. Thanks Steve.
What about DTS packages and jobs? Does anyone have any naming conventions for those? We're...
May 9, 2002 at 3:55 am
I guess you could change your FROM situation to a WHERE situation by creating a view of the union of your similar tables (together with a flag to indicate where...
May 2, 2002 at 10:20 am
Good article. For case 1 you could use a function in sql 2000 to simplify the static sql to...
select * from authors WHERE au_lname IN (SELECT * FROM list_to_table('white,green'))
where...
March 6, 2002 at 7:43 am
Good article. I have 1 question...
Can someone please tell me what's wrong with this?
select
State,
UserCount = count(distinct c.UserID),
ComponentCount = count(u.LocationID)
from
...
February 4, 2002 at 9:08 am
Viewing 7 posts - 676 through 682 (of 682 total)