Viewing 15 posts - 151 through 165 (of 222 total)
Not sure if it helps explain the confusion or not, but I initially thought that top 1000 was an incorrect answer becasue it was the one I selected and I...
July 30, 2008 at 9:26 am
Other than the example given in the answer, where the set rowcount is turned on, what would be the situation where the top 1000 in a 10000 row table would...
July 30, 2008 at 7:19 am
From WIKI -
This causal determinism has a direct relationship with predictability. (Perfect) predictability implies strict determinism, but lack of predictability does not necessarily imply lack of determinism. Limitations on...
July 28, 2008 at 7:40 am
Try it this way:
Create Table #Temp
(
UniqueColumn UNIQUEIDENTIFIER DEFAULT NEWID(), Val int
)
Insert Into #Temp (val) values(1)
Insert Into #Temp (val) values(2)
Insert Into #Temp (val) values(3)
Insert...
July 28, 2008 at 5:43 am
The question is a quote from the Microsoft documentation. but has a second purpose here. See the article written by two Microsoft researchers. http://msdn.microsoft.com/en-us/library/cc441928.aspx
Based on the...
July 28, 2008 at 5:06 am
Since SQL Server 2005 did not have Page Compression (as I know it), it wasn't too much of a jump to know this was about 2008 and not 2005. ...
July 25, 2008 at 2:27 pm
You gotta do it by highlighting the object name possibly surrounded by double quotes (if of the form schema.object e.g. "dbo.tableX" ) in a query window for it to work....
July 15, 2008 at 7:26 am
Did anyone else notice the date for this QOTD is a month in the future?
Doc Brown rules!
Was that weird or what!
July 15, 2008 at 7:04 am
That one shines Nick. Probably one of the best queries ever written.
July 11, 2008 at 8:54 am
Possibly trite but finding the sense of humor on these questions can be as adverse as some of the toughest questions. I comment when right and for obvious reasons,...
July 11, 2008 at 8:41 am
but in fact your question was subtle and the answers weren't word-play tricks a-la MCSE questions.
If my meaning was that it was intended to be a trick question, then...
July 10, 2008 at 4:30 pm
if the result set of the cursor won't fit into cache, we shouldn't be using a cursor!
The concept isn't wrong, but a bit too broad. Cursors being cursors,...
July 9, 2008 at 6:52 am
I expected to get this wrong. What a surprise when I saw that STATIC is correct. Then I noticed it was Hugo who posted the question. ...
July 8, 2008 at 9:53 am
Viewing 15 posts - 151 through 165 (of 222 total)