Forum Replies Created

Viewing 15 posts - 4,426 through 4,440 (of 5,393 total)

  • RE: Stored procedure performance tuning

    Very simple: avoid looping. Almost every problem can be solved with set based code. You provided very little information, I suggest that you take a look at the article linked...

    -- Gianluca Sartori

  • RE: Transpose Single column into Multiple column

    You could also create the split function separately, as it comes handy very often:

    CREATE FUNCTION [dbo].[fSplit]

    (

    @Parameter VARCHAR(8000),

    ...

    -- Gianluca Sartori

  • RE: Reserved word WITH

    From SQL2005 the keyword WITH denotes a common table expression (CTE) that can be used in the query as an "inline view" to make code more readable or to achieve...

    -- Gianluca Sartori

  • RE: Understanding and Using APPLY (Part 2)

    Always great stuff from you, Paul.

    Well done.

    -- Gianluca Sartori

  • RE: Are the posted questions getting worse?

    Tom.Thomson (4/19/2010)


    lmu92 (4/19/2010)


    Hi,

    anybody of you folks influenced by the volcano eruption on Iceland?

    I haven't been hit by it yet, but I'm supposed to be flyin from ACE to MAN...

    -- Gianluca Sartori

  • RE: Aggregate query help

    I don't understand where your "10 / (10 + 20)" comes from.

    -- Gianluca Sartori

  • RE: Are the posted questions getting worse?

    anthony_merriwether (4/19/2010)


    If you do not see name caling, I suggest you read up a couple replies...things like 'Troll'. Last time I looked this is a noun by definition. ...

    -- Gianluca Sartori

  • RE: Are the posted questions getting worse?

    Jeff Moden (4/16/2010)


    Heh.... famous last words would be... [font="Arial Black"]AHHHHH CRAP![/font]

    Just so you guys know... remember I said that I changed my cteTally code to use Gianluca's wonderful idea of...

    -- Gianluca Sartori

  • RE: Are the posted questions getting worse?

    The Dixie Flatline (4/16/2010)


    That's okay, Gianluca. I sometimes feel like my IQ is dropping when I do get the jokes.

    ROTFL! :hehe:

    -- Gianluca Sartori

  • RE: Triggers Atomicity property

    Have you tried handling errors in the triggers with TRY/CATCH?

    You could ignore errors in the catch block.

    -- Gianluca Sartori

  • RE: Are the posted questions getting worse?

    Thanks Jack! Sometimes I feel dumb when I don't understand your jokes...

    -- Gianluca Sartori

  • RE: Are the posted questions getting worse?

    jcrawf02 (4/16/2010)


    Can you imagine how tough your life would be if you didn't know Jack?I'll bet he's sick of that joke, but I thought it was funny :hehe:

    I'm sure I'll...

    -- Gianluca Sartori

  • RE: Are the posted questions getting worse?

    Lynn Pettis (4/16/2010)


    Gianluca Sartori (4/16/2010)


    Luke L (4/16/2010)


    So is there a good way to search within a thread specific thread? Looking for information from earlier in this thread. Someone...

    -- Gianluca Sartori

  • RE: Are the posted questions getting worse?

    Luke L (4/16/2010)


    So is there a good way to search within a thread specific thread? Looking for information from earlier in this thread. Someone suggested using Milk as...

    -- Gianluca Sartori

  • RE: remove partitions

    You have to switch off the partitions you don't want any more with ALTER TABLE {table_name} SWITCH PARTITION {partition number} TO {destination table}. Thereafter you can drop the table if...

    -- Gianluca Sartori

Viewing 15 posts - 4,426 through 4,440 (of 5,393 total)