Forum Replies Created

Viewing 15 posts - 331 through 345 (of 1,241 total)

  • RE: How can I convert SQL correct date format in RDL("dd-MMM-yyyy")

    Newbi - Friday, January 13, 2017 3:27 AM

    The culprit is some datatype conversion inside my query. 
    Thanks Thom, for trying to helping me out....

    ----------------------------------------------------

  • RE: How can I convert SQL correct date format in RDL("dd-MMM-yyyy")

    Not sure what you mean by "the language of your SQL". You mean if it is ANSI compliant? Is your data source something other than SQL Server?

    ----------------------------------------------------

  • RE: Conver varchar date to date only

    adonetok - Thursday, January 12, 2017 5:45 AM

    Sergiy - Wednesday, January 11, 2017 6:59 PM

    adonetok (1/11/2017)


    One...

    ----------------------------------------------------

  • RE: How to import json from http request into SQL table by using SSIS 2008

    Since you are pulling from a URL, have you tried studying the Web Services task in SSIS 2008? I have not touched it in a while so don't want to...

    ----------------------------------------------------

  • RE: How can I convert SQL correct date format in RDL("dd-MMM-yyyy")

    Thom A - Thursday, January 12, 2017 1:29 PM

    Newbi - Thursday, January 12, 2017 10:56 AM

    ----------------------------------------------------

  • RE: replace null with another column

    It is as far as the end result being deterministic and resulting in NULL. I thought that was the scope here since your/our statement(s) will not even execute in SQL...

    ----------------------------------------------------

  • RE: replace null with another column

    Hmm, which is why you have to read the context. If people are blindly pulling code they don't understand, then they are the ones choosing to take risk. If they...

    ----------------------------------------------------

  • RE: replace null with another column

    Brandie Tarvin (1/10/2017)


    MMartin1 (1/10/2017)


    drew.allen (1/10/2017)


    MMartin1 (1/9/2017)


    You forgot the NOT.

    SELECT CASE WHEN NULL IS NOT NULL THEN NULL ELSE NULL END;

    How about

    SELECT CASE WHEN NULL IS NOT NULL THEN NOT NULL...

    ----------------------------------------------------

  • RE: replace null with another column

    drew.allen (1/10/2017)


    MMartin1 (1/9/2017)


    You forgot the NOT.

    SELECT CASE WHEN NULL IS NOT NULL THEN NULL ELSE NULL END;

    How about

    SELECT CASE WHEN NULL IS NOT NULL THEN NOT NULL ELSE NULL END

    ...

    ----------------------------------------------------

  • RE: SSRS 2016 Error

    Is this a dev or prod environment? If dev is it possible others could be publishing then removing the reports as modifications go?

    ----------------------------------------------------

  • RE: replace null with another column

    You forgot the NOT.

    SELECT CASE WHEN NULL IS NOT NULL THEN NULL ELSE NULL END;

    How about

    SELECT CASE WHEN NULL IS NOT NULL THEN NOT NULL ELSE NULL END

    ?

    same logical...

    ----------------------------------------------------

  • RE: Long running data flow task

    If you are using a OLE DB destination adapter in the data flow then you can also tinker with the "Rows per patch:" or the "Maximum insert commit size:" options...

    ----------------------------------------------------

  • RE: Using a variable in CTE Select statement

    SELECT

    tbl1.Date,

    tbl1.ID,

    tbl1.Order_Amount,

    tbl2.StoreNum,

    COUNT(tbl1.id) over(partition by tbl1.id) as count

    FROM tbl1 right join tbl2

    ON tbl1.ID = tbl2.ID

    I always cringe a bit when I see those right joins.

    Let us...

    ----------------------------------------------------

  • RE: ssrs 2010 font size issue

    wendy elizabeth (1/8/2017)


    Is there a way to know where a line number and position numbers are when working is visual studio 2010? How can you setup line numbers and/or character...

    ----------------------------------------------------

  • RE: ssrs 2010 font size issue

    wendy elizabeth (1/8/2017)


    Is there a way to know where a line number and position numbers are when working is visual studio 2010? How can you setup line numbers and/or character...

    ----------------------------------------------------

Viewing 15 posts - 331 through 345 (of 1,241 total)