Forum Replies Created

Viewing 15 posts - 226 through 240 (of 8,416 total)

  • RE: Why doesn’t ISNUMERIC work correctly? (SQL Spackle)

    Usman Butt (9/17/2012)


    SQL Kiwi (9/17/2012)


    In any case, the assumption must be that TRY_* will only be used where necessary, and (relatively) slow as the intrinsic functions may be, it will...

  • RE: Why doesn’t ISNUMERIC work correctly? (SQL Spackle)

    Lisa Slater Nicholls (9/17/2012)


    However... if they implemented the TRY_* functions via an internal error catch as I said before I think there might be a performance penalty for using it....

  • RE: Why doesn’t ISNUMERIC work correctly? (SQL Spackle)

    I think I have read all the comments (from all the times this article has been published) but I haven't seen anyone mention the new T-SQL conversion functions in SQL...

  • RE: Are the posted questions getting worse?

    Steve Jones - SSC Editor (9/17/2012)


    FYI, if you're attending the Summit, we have a networking dinner set up again: http://networkingdinnerpasssummit2012.eventbrite.com/

    Depending on jet-lag status, I might pop in.

  • RE: Are the posted questions getting worse?

    Grant Fritchey (9/17/2012)


    Seriously considering dropping 2005 from my list of forums to monitor. Any driving reason why I shouldn't? I dropped 2000 a long time ago.

    There's a 2005 forum? 😉

  • RE: Using Print, will it slow down procedure?

    CptCrusty1 (9/17/2012)


    I don't know whether or not to be proud or embarrased... the answer to my question has taken on a life of it's own....:blink:

    I would go with 'proud'...

  • RE: Using Print, will it slow down procedure?

    GSquared (9/17/2012)


    I'd need to see some evidence pointing to comments being RAM-resident.

    You can check which pages of sys.sysobjvalues are in the buffer pool and view the page contents using DBCC...

  • RE: Backups

    Divine Flame (9/17/2012)


    SQL Kiwi (9/17/2012)


    Good question, I guess, though I would have preferred it without the INIT trap.

    Thanks for the feedback Paul. Many of us (including me until I didn’t...

  • RE: Backups

    Good question, I guess, though I would have preferred it without the INIT trap.

  • RE: UPDATE when the values are the same

    L' Eomot Inversé (9/16/2012)


    If the query processor figures out that it is not going to update the row (this is decided on the basis of where clause and on clause)...

  • RE: UPDATE when the values are the same

    Sergiy (9/16/2012)


    Basically no difference comparing to yours one, Paul, except I used REPLICATE to easily and synchronously change from char(200) to char(50) or char(8000).

    I chose a literal string rather than...

  • RE: UPDATE when the values are the same

    Sergiy (9/16/2012)


    I figured out why you built the test this way and I have no argument about the point:

    comparing binary content of pages is and will always be more effective...

  • RE: UPDATE when the values are the same

    Sergiy (9/16/2012)


    I don't think so.

    Even if no rows are updated the tables are still created.

    SQL Server still allocates pages for the tables, names all the columns, etc.

    They have nothing in...

  • RE: UPDATE when the values are the same

    Sergiy (9/16/2012)


    Actually, you did. Trigger is executed after UPDATE. If SQL Server figures out that the values are the same and does not proceed with writing to the pages then...

  • RE: UPDATE when the values are the same

    Sergiy, I should add that the fun in the example was in working out *why* that particular case gave the performance results it did. With a long string of...

Viewing 15 posts - 226 through 240 (of 8,416 total)