Forum Replies Created

Viewing 15 posts - 151 through 165 (of 222 total)

  • RE: TOP and TABLESAMPLE

    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...

  • RE: TOP and TABLESAMPLE

    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...

  • RE: Deterministic Functions

    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...

  • RE: Deterministic Functions

    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...

  • RE: Deterministic Functions

    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...

  • RE: Page Compression

    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. ...

  • RE: XML Storage

    Excellent question.

  • RE: Short cut key

    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....

  • RE: Short cut key

    Did anyone else notice the date for this QOTD is a month in the future?

    Doc Brown rules!

    Was that weird or what!

  • RE: Name Spaces

    Awesome syntax!

  • RE: Reformat via query?

    That one shines Nick. Probably one of the best queries ever written.

  • RE: Reformat via query?

    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,...

  • RE: HierarchyID

    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...

  • RE: Cursor optimization

    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,...

  • RE: Cursor optimization

    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. ...

Viewing 15 posts - 151 through 165 (of 222 total)