Forum Replies Created

Viewing 15 posts - 751 through 765 (of 1,415 total)

  • RE: Interview Questions

    Eric M Russell (6/7/2016)


    Luis Cazares (6/7/2016)


    Was I too late for April fools' day?

    This is what happens when you trust a forum to answer questions that you should answer on your...

  • RE: Binary Compare

    Steve Jones - SSC Editor (5/18/2016)


    This is certainly an implementation issue (and a knowing of the standard that is being followed). However, that's part of why I thought it was...

  • RE: Binary Compare

    crmitchell (5/18/2016)


    patrickmcginnis59 10839 (5/18/2016)


    Perry Whittle (5/17/2016)


    Bob JH Cullen (5/17/2016)


    which in any integer expression are irrelevant, surely?

    This is not an integer expression.

    The code first checks the binary values for @a and...

  • RE: Windows 10 - Visual Studio and associated apps

    Lowell (5/18/2016)

    For Q1 &2 ,hope this helps. I recently upgraded my windows 7 laptop to windows 10.

    I have the VS2010/VS2012/VS2013 installed,and use them all depending on which environment i'm supporting.

    that...

  • RE: Binary Compare

    Perry Whittle (5/17/2016)


    Bob JH Cullen (5/17/2016)


    which in any integer expression are irrelevant, surely?

    This is not an integer expression.

    The code first checks the binary values for @a and @b-2, do they...

  • RE: Processing strings.

    Jeff Moden (4/26/2016)


    Solomon Rutzky (4/25/2016)


    Disagree with what, exactly? You started this whole sub-topic of "Tower of Babel" because you mistakenly thought that Sachin was introducing both VB and C#. Since...

  • RE: Processing strings.

    Solomon Rutzky (4/25/2016)

    Disagree with what, exactly? You started this whole sub-topic of "Tower of Babel" because you mistakenly thought that Sachin was introducing both VB and C#. Since that isn't...

  • RE: Format Date Time Function

    Make it a case statement!

    CREATE FUNCTION [dbo].[KDT_FN_FORMATDATETIME](

    @DateFormatvarchar(50),

    @DateDATETIME

    )

    RETURNS VARCHAR(30)

    AS

    BEGIN

    RETURN CASE

    WHEN @DateFormat = 'dd-mm-yyyy' THEN Cast(day(@Date) as varchar(2))+'-'+(substring(datename(m, @Date),1,3))+'-'+cast(year(@Date) as varchar(4))

    WHEN @DateFormat = 'MMM DD YYYY HH:mm Am/pm' THEN CONVERT(VARCHAR(30),@Date,100)

    WHEN...

  • RE: How to convert this procedure as dynamic SQL

    since you're going through the trouble of doing dynamic sql because of changing database names, maybe its worth your while to look at parameters of sqlcmd. Its much more convenient,...

  • RE: include results from table not found in another table

    you'll also have to include the question from the quiz_data table or else you'll be using the same (unselected) answers on all the questions.

    My guess follows, not tested however!

    SELECT Student,...

  • RE: Processing strings.

    Sachin Nandanwar (4/5/2016)


    Few months back I had a situation where I had to create instance of class that supported multiple inheritance(MI).C# does not support MI but C++(CPP) does.C# supports MI...

  • RE: Processing strings.

    was anybody able to get a tally table looking solution to work with the delimiter inside quotes exclusion? its obviously easy with a loop, but was curious about the tally...

  • RE: Processing strings.

    Jeff Moden (4/5/2016)


    patrickmcginnis59 10839 (4/5/2016)


    Theres already a hodgepodge of tech there, its sort of what Microsoft does

    So why make it more of a hodgepodge? Both C# and VB are...

  • RE: Is PowerShell Intimidating?

    chrisn-585491 (3/31/2016)


    Gary Varga (3/31/2016)


    Manic Star (3/31/2016)


    chrisn-585491 (3/31/2016)


    I still write the occasional .bat .cmd file nowadays.

    As do I, since not all clients understand or enable PS or any other advance...

  • RE: Processing strings.

    Jeff Moden (4/4/2016)


    So then you agree that there should be no language barriers and that anyone can bring whatever they're comfortable with to any task, correct? Whether I know...

Viewing 15 posts - 751 through 765 (of 1,415 total)