Forum Replies Created

Viewing 15 posts - 6,721 through 6,735 (of 8,760 total)

  • RE: Are the posted questions getting worse?

    Ed Wagner (10/21/2014)


    Luis Cazares (10/21/2014)


    Eirikur Eiriksson (10/21/2014)


    Ed Wagner (10/21/2014)


    Eirikur Eiriksson (10/21/2014)


    Luis Cazares (10/21/2014)


    Eirikur Eiriksson (10/21/2014)


    spaghettidba (10/21/2014)


    Ed Wagner (10/21/2014)


    Parma, Venice...these cities are making me think of authentic Italian food. I...

  • RE: Are the posted questions getting worse?

    Luis Cazares (10/21/2014)


    Eirikur Eiriksson (10/21/2014)


    Ed Wagner (10/21/2014)


    Eirikur Eiriksson (10/21/2014)


    Luis Cazares (10/21/2014)


    Eirikur Eiriksson (10/21/2014)


    spaghettidba (10/21/2014)


    Ed Wagner (10/21/2014)


    Parma, Venice...these cities are making me think of authentic Italian food. I cook and...

  • RE: Are the posted questions getting worse?

    LutzM (10/21/2014)


    spaghettidba (10/21/2014)


    Ed Wagner (10/21/2014)


    Parma, Venice...these cities are making me think of authentic Italian food. I cook and am a HUGE fan of real Italian, so now I'm hungry....

  • RE: Are the posted questions getting worse?

    Ed Wagner (10/21/2014)


    Eirikur Eiriksson (10/21/2014)


    Luis Cazares (10/21/2014)


    Eirikur Eiriksson (10/21/2014)


    spaghettidba (10/21/2014)


    Ed Wagner (10/21/2014)


    Parma, Venice...these cities are making me think of authentic Italian food. I cook and am a HUGE fan...

  • RE: Are the posted questions getting worse?

    Luis Cazares (10/21/2014)


    Eirikur Eiriksson (10/21/2014)


    spaghettidba (10/21/2014)


    Ed Wagner (10/21/2014)


    Parma, Venice...these cities are making me think of authentic Italian food. I cook and am a HUGE fan of real Italian, so...

  • RE: Are the posted questions getting worse?

    spaghettidba (10/21/2014)


    Ed Wagner (10/21/2014)


    Parma, Venice...these cities are making me think of authentic Italian food. I cook and am a HUGE fan of real Italian, so now I'm hungry. ...

  • RE: How to get error from SQLCMD

    Quick thought, redirect the stderr to the output using 2>&1

    😎

  • RE: Replacing a CASE statement in an update with table-driven logic

    Phil Parkin (10/21/2014)


    Eirikur Eiriksson (10/21/2014)


    I strongly belief that dynamic SQL solutions should be avoided if possible, it normally doesn't take much of an additional complexity to render them useless or...

  • RE: Query logic help please

    Jeff Moden (10/21/2014)


    Eirikur Eiriksson (10/20/2014)


    Some code refactoring on the previous set based solution to fulfil all the requirements, several orders of magnitude faster than string manipulation although it has not...

  • RE: Replacing a CASE statement in an update with table-driven logic

    I strongly belief that dynamic SQL solutions should be avoided if possible, it normally doesn't take much of an additional complexity to render them useless or at least very hard...

  • RE: Implicit conversion from data type nvarchar to varbinary is not allowed. Use the CONVERT function to run this query.

    Hi and welcome to forum. Quick note, you should post this question in the appropriate forum depending on your SQL Server version.

    The answer is actually in the question, look up...

  • RE: increment numbers in sql

    Good point Luis! It is also around 30% faster,

    Quick comparison

    😎

    USE tempdb;

    GO

    SET NOCOUNT ON;

    DECLARE @INT_BUCKET INT = 0;

    DECLARE @CHAR_BUCKET CHAR(7) = '';

    DECLARE @TIMING_RESULTS TABLE

    (

    ...

  • RE: Stored Procedure output has junk character at the beginning of the file

    byanaman1 (10/20/2014)


    I have SP that generates the output in XML format. The file is generated correctly with all tags. However, at the beginning of each file I see couple of...

  • RE: call a stored procedure within a stored procedure

    Another important aspect is the use of SQL code modules as a means for code modularisation, nudging the SDLC more towards SOLID so to speak, something that is immensely beneficial...

  • RE: Query logic help please

    Some code refactoring on the previous set based solution to fulfil all the requirements, several orders of magnitude faster than string manipulation although it has not been tested on very...

Viewing 15 posts - 6,721 through 6,735 (of 8,760 total)