Viewing 15 posts - 181 through 195 (of 233 total)
So it just ignores the FG2 reference? The fact that it essentially corrects the developer's mistake is great, I guess, but shouldn't the engine inform the developer that it's...
"Beliefs" get in the way of learning.
October 19, 2009 at 7:39 am
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...
"Beliefs" get in the way of learning.
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...
"Beliefs" get in the way of learning.
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...
"Beliefs" get in the way of learning.
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...
"Beliefs" get in the way of learning.
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...
"Beliefs" get in the way of learning.
October 7, 2009 at 3:29 pm
My bad. I forgot that I had turned on "discard results" last week while testing something else.
"Beliefs" get in the way of learning.
October 5, 2009 at 8:19 am
blandry (8/19/2009)
"Beliefs" get in the way of learning.
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...
"Beliefs" get in the way of learning.
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.
"Beliefs" get in the way of learning.
April 21, 2009 at 6:43 am
GilaMonster (4/8/2009)
Robert Frasca (4/8/2009)
"Beliefs" get in the way of learning.
April 8, 2009 at 2:31 pm
GSquared (4/8/2009)
"Beliefs" get in the way of learning.
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...
"Beliefs" get in the way of learning.
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
...
"Beliefs" get in the way of learning.
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
...
"Beliefs" get in the way of learning.
March 11, 2009 at 12:10 pm
Viewing 15 posts - 181 through 195 (of 233 total)