Viewing 15 posts - 181 through 195 (of 231 total)
john.arnott (10/16/2009)
Tom Garth (10/16/2009)
.....I get the feeling that John derived this question from a real world application rather than just for kicks.
Actually, yes. I've been going through a database...
October 16, 2009 at 1:41 pm
I guess I need to learn to read a little more carefully. My apologies. However, I must take one final whack at this dead horse. The fact...
October 16, 2009 at 9:47 am
1. The character set has already been defined in the question so regardless, nchar and nvarchar are out.
I see your point but I'm not really sure I agree with...
October 16, 2009 at 9:14 am
While I like this type of question in theory, apparently, in this example "efficient" is defined only in the context of how many bytes are being stored. When asking...
October 16, 2009 at 7:43 am
Allocating memory doesn't necessarily mean that it will use memory. It simply means that it can. As the data and proc cache fills you will see the amount...
October 7, 2009 at 3:29 pm
My bad. I forgot that I had turned on "discard results" last week while testing something else.
October 5, 2009 at 8:19 am
blandry (8/19/2009)
August 19, 2009 at 6:39 am
I've been out of work for four months although I'm (finally) starting a new job on Monday with a great company. During that four months I've experienced a wide...
August 19, 2009 at 5:42 am
The answer given is incorrect. SQL Server Express does not support reporting services. SQL Server Express Advanced edition does.
April 21, 2009 at 6:43 am
GilaMonster (4/8/2009)
Robert Frasca (4/8/2009)
April 8, 2009 at 2:31 pm
GSquared (4/8/2009)
April 8, 2009 at 11:36 am
"all temp tables are bad" and "all sub-queries are bad"
The temp tables thing comes up a lot.
I was once doing some performance tuning for a client and encountered a query...
April 8, 2009 at 9:15 am
Thanks for everyone's suggestions. As it turned out, it was embarrassingly simple and, as sometimes happens, I was trying to make it harder than it needed to be.
UPDATE TempFactTable
...
March 12, 2009 at 7:13 am
Gianluca Sartori (3/11/2009)
UPDATE TempFactTable
SET CodeID = LookupID
FROM TempFactTable t
INNER JOIN (
SELECT LookupCode, MAX(LookupID) AS LookupID, MAX(OtherCode) AS OtherCode
FROM LookupTable
...
March 11, 2009 at 12:10 pm
Steve Jones - Editor (12/22/2008)
I would agree it is important that we understand what we are talking about and...
December 22, 2008 at 11:01 am
Viewing 15 posts - 181 through 195 (of 231 total)