Forum Replies Created

Viewing 15 posts - 46 through 60 (of 479 total)

  • RE: Script Search

    I use ScriptDb from codeplex.com.

    It does the whole database (tables, views, functions, etc) in one go so you can then just compare with your reference copy.

  • RE: Original Theatrical Release of Star Wars

    As I mentioned elsewhere, I still remember thinking "That's a big spaceship".

    Then Darth's Star Destroyer comes into view, and goes on and on and on and I thought "No! THAT's...

  • RE: Are the posted questions getting worse?

    Lynn Pettis (4/29/2009)


    GilaMonster (4/29/2009)


    Bruce W Cassidy (4/29/2009)


    [font="Verdana"]International Star Wars day... "May the 4th be with you."[/font]

    *groan*

    Hmmm, we were discussing having another Starwars day.....

    Now for something totally the same...

    How many...

  • RE: Matching the conditions by using T-SQL 2005

    josephptran2002 (4/28/2009)


    Hi

    Yes there is a whole bunch of column fields name in where clause. But if you look carefully then it's just repeated columns such as DEClearedDate then DESecondClearedDate or...

  • RE: Performance issue with tally solution

    Bob Hovious (4/23/2009)


    With respect to testing, and I apologize for not having done more, it seems there are at least three or four variables about the test data to consider:

    1....

  • RE: Performance issue with tally solution

    Bob Hovious (4/23/2009)


    Thanks, Flo 🙂

    Derek, please don't feel you have to apologize. That needed to be tested. As usual, the answer is "It depends." ...

  • RE: Performance issue with tally solution

    Hi Bob,

    I did a few more tests (beyond the earlier table) and on my systems, the double-tally acheives better than half CPU time at long executions (.e.g 146 second vs...

  • RE: Performance issue with tally solution

    OK. I ran more tests. It seems that on my systems, tally+charindex performs better on lower numbers but the double tally scales better.

    [font="Courier New"]

                                Tally + CHARINDEX         Double tally        

    Rows in     Rows...

  • RE: Performance issue with tally solution

    Sorry to put a fly in the ointment, but I've tried a variation on your double-barrelled tally solution based on a problem mentioned here (splitting sentences into words at spaces).

    I...

  • RE: SELECT FUN

    SanjayAttray (4/22/2009)


    select NULL,'manoj'union select Null,'1'union select NULL,'manoj'

    order by 2

    or

    select NULL,'manoj'union select Null,'1'union select NULL,'manoj'

    order by 1

    gives you same result.

    NULL1

    NULLmanoj

    I tried on all sql server versions and result is same. ...

  • RE: There Must Be 15 Ways To Lose Your Cursors... part 1, Introduction

    As Jeff indicated, the whole problem of splitting sentences into words can be done by the method he points to.

    However, even if fnWord is treated as a 'black box', the...

  • RE: Performance issue with tally solution

    Phil Factor (4/21/2009)


    http://www.sqlservercentral.com/Forums/FindPost696606.aspx

    Thanks

  • RE: Performance issue with tally solution

    Phil Factor (4/21/2009)


    My Set-based 'quirky update' solution is half way down the page on page 6 of this thread. http://www.sqlservercentral.com/Forums/Topic695508-338-6.aspx

    Not for me it isn't! As far as I'm...

  • RE: T-SQL Operators

    I clicked this as a T-SQL question I'd overlooked. I've never used MDX yet and would join the view that MDX is not T-SQL, so the 'except' operator is not...

  • RE: Performance issue with tally solution

    Of course, when I thought about it, the Perl to split a string would simply be.

    @lines = split('\ n',$string)

    Since I usually need to do more complex matches I immediately thought...

Viewing 15 posts - 46 through 60 (of 479 total)