Forum Replies Created

Viewing 15 posts - 4,741 through 4,755 (of 8,753 total)

  • RE: Are the posted questions getting worse?

    Lynn Pettis (8/12/2015)


    I try very hard to be respectful and professional and help people even if it seems like they don't want the help; but I am not going to...

  • RE: Are the posted questions getting worse?

    GilaMonster (8/12/2015)


    Lynn, I think that may have been unnecessarily antagonistic.

    Agree, given the shortage of Silver Spoons since the last shipment hasn't arrived end yet.

    😎

    Edit: speech to text bug.

  • RE: Today's Random Word!

    Ed Wagner (8/12/2015)


    Steve Jones - SSC Editor (8/12/2015)


    broke

    Spending

    spree

  • RE: charindex/substring to replace varying amounts of '/'

    WayneS (8/12/2015)


    Eirikur,

    Since you're doing a performance test, how does this compare?

    Close to identical to the CTE version in performance and funny enough the QUERYTRACEON 8607 output tree differs only in...

  • RE: Today's Random Word!

    Ed Wagner (8/12/2015)


    djj (8/12/2015)


    Ed Wagner (8/12/2015)


    Eirikur Eiriksson (8/12/2015)


    Revenant (8/11/2015)


    SQLRNNR (8/11/2015)


    dearth

    sincerity

    naïve

    Clueless

    Valley Girl

    1980s

    Orwell

  • RE: XML export from a denormalised table

    Quick solution, similar to Kutang Pan's but slightly more flexible

    😎

    USE tempdb;

    GO

    SET NOCOUNT ON;

    DECLARE @SAMPLE_DATA TABLE

    (

    Campaign CHAR(2) ...

  • RE: DBCC FREEPROCCACHE impact on performace

    thbaig (8/12/2015)


    Hi,

    A strange issue is reported in production where one of stored proc is executing in variable time. Sometime with the same input it takes 5 sec and sometime more...

  • RE: Today's Random Word!

    Revenant (8/11/2015)


    SQLRNNR (8/11/2015)


    dearth

    sincerity

    naïve

  • RE: charindex/substring to replace varying amounts of '/'

    For giggles here is yet another slightly modified version. The difference doesn't look much but it is an improvement over the first one of roughly 20% and 5-10% over Luis's...

  • RE: PRINT bug ?

    mar.ko (8/11/2015)


    WHILE @@FETCH_STATUS = 0

    BEGIN

    FETCH NEXT FROM C_tables INTO

    @ColName

    ,@ColOrdPosit

    ,@TabSchema

    ,@TabName

    ,@ColDataType

    ,@ColDefaultVal

    ;

    PRINT @ColName + ' ' +STR(@ColOrdPosit) + ' ' +@TabSchema + ' ' +@TabName + ' ' + @ColDataType +...

  • RE: SSIS Job Fails for No Reason

    Michelle-138172 (8/11/2015)


    I have a job that runs an SSIS package. The job seems to be able to run through the package successfully, but at the end it errors out saying...

  • RE: Are the posted questions getting worse?

    Didn't think I was geeky or nerdy but 30min after "just looking at few things", this was the MRU list

    😎

  • RE: Are the posted questions getting worse?

    SQLRNNR (8/11/2015)


    Just curious if anybody knows what a "SPAM DIG" happens to be? Is that like a clam dig?

    In simple terms, blacklisting

    😎

  • RE: Pull top 3 max values for each account

    Sean Lange (8/11/2015)


    maria.witkowski (8/11/2015)


    Not sure which is more efficient?? The table has about 40k rows in it. But I will try both! Thank you again!

    I don't think that Eirikur...

  • RE: Use of Default keyword as the parameter default - what value is it ?

    mar.ko (8/11/2015)


    @pvColumnName??VARCHAR(100) = Default,??

    However, I am unable to determine what is the value for Default.

    Is it '' ?

    Default is not permitted as a constant - below fails to parse:

    WHERE t2.TABLE_TYPE...

Viewing 15 posts - 4,741 through 4,755 (of 8,753 total)