Forum Replies Created

Viewing 15 posts - 7,246 through 7,260 (of 13,876 total)

  • RE: Are the posted questions getting worse?

    Steve Jones - SSC Editor (4/14/2016)


    Well, apparently I don't write good questions to teach these people things.

    Maybe some of you should write some questions to help people learn how to...


  • RE: Order by a CASE statment order

    Hugo Kornelis (4/14/2016)


    Phil Parkin (4/14/2016)


    Why are you continuing with the implicit conversion from int to string?

    Actually, int has a higher precedence than string, so the implicit conversion should be from...


  • RE: Order by a CASE statment order

    ZZartin (4/14/2016)


    Your order by isn't working because you are trying to sort by a alphanumeric field that doesn't sort in the order you want. Did you try this,

    ORDER BY...


  • RE: Can not get results to insert into table

    Jeffery Williams (4/14/2016)


    The script is working except I can not insert into a table the results that are returned.

    Both Drew and I have explained the problem. Please take the time...


  • RE: Can not get results to insert into table

    You have a construction like this

    INSERT ...

    SELECT ... FROM

    (INSERT ...

    SELECT ...

    )

    INSERT SELECT does not return a result set, so your outer INSERT...


  • RE: Order by a CASE statment order

    Kazmerelda (4/14/2016)


    Had a brainwave as this will be an SSRS report I could do conditional sorting on it in there versus in the query itself.

    Although I am a dog with...


  • RE: Can not get results to insert into table

    Jeffery Williams (4/14/2016)


    P.S. I tried an insert in the sample below but is says I need a FOR OUTPUT and this is where I am stuck, don't know where...


  • RE: Can not get results to insert into table

    Jeffery Williams (4/14/2016)


    If someone could help that would be great. I have this script that thrown the results to the screen but I need to insert the results into a...


  • RE: Order by a CASE statment order

    ZZartin (4/14/2016)


    You can put a case statement in the order by, so something like for the order by.

    ORDER BY

    case when [No Of Applications] = '1' then 1

    when [No Of...


  • RE: Order by a CASE statment order

    Why not just order by Number of Applications? Should have the same net effect.

    Note that your range names are misleading and overlapping. '06-10' should be '06-09', '10-20' should be '10-19'...


  • RE: Understand Sharepoint

    How do I deal with this situation?

    Use a product that works properly, instead? :w00t:

    Sorry, couldn't resist.


  • RE: Print Object Explorer panel?

    I was assuming that the requirement was for some sort of printed report, not just for ways of copying all or part of the screen as an image. But perhaps...


  • RE: SSIS : script task

    Nikku (4/13/2016)


    Hi Phil,

    Cell A Cell B Cell C Cell...


  • RE: Actually need to use ? in Where clause

    Sergiy (4/13/2016)


    Are you sure those are actually question marks?

    Those might be characters not from your default code page.

    Because you import some sort of unicode strings into varchar columns those characters...


  • RE: Excel Source file problem running in SQL Agent

    In SQL Agent, edit the job step.

    Click on the Configuration tab and then the Advanced tab. Check that the '32-bit runtime' check box is selected.


Viewing 15 posts - 7,246 through 7,260 (of 13,876 total)