Forum Replies Created

Viewing 15 posts - 1,291 through 1,305 (of 1,415 total)

  • RE: Are the posted questions getting worse?

    Steve Jones - SSC Editor (7/26/2013)


    Jeff Moden (7/26/2013)


    L' Eomot Inversé (7/24/2013)


    I haven't got enough hair to have bad hair days 🙂

    BWAAA-HAAA!!! I've got tons of hair. I'm just...

  • RE: Accessing MSSQL using a web browser

    octavuslimited (7/19/2013)


    I have seen various posts showing interest in being able to perform simple queries and execute storedprocs on MSSQL using a web browser. I had a similar interest so...

  • RE: Are the posted questions getting worse?

    Grant Fritchey (7/19/2013)


    I was doing some research this morning and got sucked down a rabbit hole (it happens) and landed on a series of sites complaining about Stack Overflow and...

  • RE: Prev and Next Row Without RowNumber

    Khalid Hanif-458693 (7/16/2013)


    patrickmcginnis59 10839 (7/16/2013)


    keebler96 (7/16/2013)


    The order of the previous and the next rows should be ordered just like the SQL has inserted according to the primary keys.

    This is the...

  • RE: Prev and Next Row Without RowNumber

    keebler96 (7/16/2013)


    The order of the previous and the next rows should be ordered just like the SQL has inserted according to the primary keys.

    This is the problem. There is...

  • RE: Prev and Next Row Without RowNumber

    Khalid Hanif-458693 (7/16/2013)


    The columns would be

    prevcostcenter, prevpaymentcode, previnvno, nextcostcenter, nextpaymentcode, nextinvno

    I have tried the rownumber the estimated rows in the execution plan is always the total rows Iin the...

  • RE: Hiring Guitarists

    RobertYoung (7/15/2013)


    patrickmcginnis59 10839 (7/15/2013)


    RobertYoung (7/15/2013)


    patrickmcginnis59 10839 (7/15/2013)


    Vila Restal (7/12/2013)


    That's a sweeping generalisation of 'coders' (or perhaps more respectfully called software engineers or developers). Do you really have so little respect...

  • RE: Hiring Guitarists

    RobertYoung (7/15/2013)


    patrickmcginnis59 10839 (7/15/2013)


    Vila Restal (7/12/2013)


    That's a sweeping generalisation of 'coders' (or perhaps more respectfully called software engineers or developers). Do you really have so little respect for them all,...

  • RE: Hiring Guitarists

    Vila Restal (7/12/2013)


    That's a sweeping generalisation of 'coders' (or perhaps more respectfully called software engineers or developers). Do you really have so little respect for them all, even those you've...

  • RE: Updating SQL table using SSRS

    You could treat the parameters of your report as update requests and send these parameters to a stored procedure.

  • RE: display specic char in sql server

    select substring(name,charindex('gr',name),2)

    from ...

    worked for me!

  • RE: How to get results from an SP into a table.

    ben.brugman (6/11/2013)


    patrickmcginnis59 10839 (6/11/2013)


    I got something similar to work, LOL at the quotes needed, plus it doesn't seem like "Initial Catalog" is any help, but I put it in there...

  • RE: How to get results from an SP into a table.

    I got something similar to work, LOL at the quotes needed, plus it doesn't seem like "Initial Catalog" is any help, but I put it in there anyways:

    SELECT * INTO

    #TMP1

    FROM

    OPENROWSET...

  • RE: how to archive data based on on archive it self?

    The query looked ok to me (well except for the 'count' clause, not sure how thats working in isolation without an accompanying 'group by'). You might want to double check...

  • RE: how to archive data based on on archive it self?

    You need to match the keys in both tables!

    select T1.[History_Key]

    FROM

    LOAD_SCHED as T1

    WHERE NOT EXISTS (SELECT distinct T3.[Archive_Key] FROM Archive_LOAD_SCHED AS T3 where T1.history_key = T3.archive_key)

Viewing 15 posts - 1,291 through 1,305 (of 1,415 total)