Forum Replies Created

Viewing 15 posts - 55,606 through 55,620 (of 59,067 total)

  • RE: need help

    I agree... in SQL Server 2005, you could probably do it with a recursive CTE... But not in 2K.  Might be able to do it using a recursive UDF, but...

  • RE: Rank Sequence by Group

    You bet... thanks for the feedback, Matt.

  • RE: Querying the max row length

    Ya do pretty darned well yourself, Lowell! You made a very useful tool.  I'm in the process of tweaking it for my own use and thought...

  • RE: Querying the max row length

    Nicely done, Lowell... you might want to check the ##Tmp table, though... the numeric datatypes always end up having a MaxActualLength of "0" and I think that's probably not right....

  • RE: Rank Sequence by Group

    This will not produce the results you expect if there is a tied date for any give Job/Status combo... nor is it very good on really large tables.  But it...

  • RE: Recurring values

    Sure... can be done in any language... I just got bogged down at work.

  • RE: Weirdest interview question?

    A woman's sister dies of supposedly natural causes. The woman goes to her sister's funeral. During the funeral, she sits next to a man who consoles her quite nicely...

  • RE: Using bit flags in large tables

    "One measurement is worth a thousand speculations"

    Mathew,

    Index Scans are NOT always a bad thing... here's proof (and a couple o' tricks)...

    First, let's make a million row test table...

    --=====...

  • RE: help for table scan

    Recommend rewriting the following using a derived table with a proper join instead of the correlated sub-query that you have...

    and sc.CONF_id =

    (select max(sc2.CONF_id)

    from sep_CONF sc2 , main_score es2...

  • RE: Hard at Work

    quoteI have a great job. I tend to work a 40-45 hour week, flexible, at all hours of...
  • RE: Problem with Date

    Thanks, Gail

  • RE: Confused by article in sqlservercentra.com ?

    Ah... I see what you're getting at...

    Yes, in that case, if the inserted row size is greater that than free size remaining on the target page due to a clustered...

  • RE: Stop the madness

    Nah... this one...   One individual had a devil of a good time leading others on just for the sake of a good bar room brawl.  I rather enjoyed...

  • RE: The Joy of Numbers

    Cool... thanks, Michael. 

    Yeah, clearing the cashe didn't seem to matter in my testing so I didn't include it in my code.  And, I very much like the idea of using...

  • RE: Database name with special character(Urgent)

    quoteIn other words, who are we to tell someone else the proper way to do their job, especially...

Viewing 15 posts - 55,606 through 55,620 (of 59,067 total)