Forum Replies Created

Viewing 15 posts - 2,821 through 2,835 (of 4,820 total)

  • RE: Converting Numbers to Letters

    Another option for you:

    Create a custom function to do both the split and the translation at the same time and add a quick query around it.   Here's...

  • RE: how to get image type in nvarchar to be excuted in exec/sp_execute command

    rajemessage 14195 - Tuesday, February 21, 2017 10:20 AM

    Eirikur Eiriksson - Saturday, February 18, 2017 2:18 AM

  • RE: TSQL query help

    Just so folks are aware, pietlinden's solution will work, but may have incorrect results if that script fails to run on a given day.  If that fact is detected and...

  • RE: Create dynamique cases from a column values

    Not sure exactly what you are looking for here.   Your words didn't explain in much detail what you are looking for, so I made a guess based on what I...

  • RE: Derived Column Problems

    Zososql - Saturday, February 18, 2017 12:49 PM

    OK thanks... again the problem lies with each unique customerID has to produce a result...

  • RE: Turning Cols into Rows

    rjjh78 - Friday, February 17, 2017 2:18 PM

    Hi Steve, Thank you for your reply!

     

  • RE: Mulitiple Data Sets

    maria.lindquist - Thursday, February 16, 2017 12:21 PM

    I'm getting ready to go through some tutorials on Report Data Sets. So hopefully I'll...

  • RE: Connection managers in package XML

    I have not, but I wonder if maybe they exist at your project level instead of the package level, so they might be located in one of the project's XML...

  • RE: Turning Cols into Rows

    That kind of depends.  If you know in advance the largest possible number of locations in a region, it's easiest with what is referred to as a CROSSTAB query.   Of...

  • RE: Upgrade to 2016 questions

    As for the choice of intermediate version, I'd go with 2008 R2 over 2005.   The reason is because I was reading an MS site on upgrading to 2016, and that...

  • RE: High Disk Queue length

    TheSQLGuru - Tuesday, February 14, 2017 5:07 PM

    Admingod - Tuesday, February 14, 2017 10:24 AM

  • RE: CTE Recursive Query

    robertopmorris - Friday, February 17, 2017 12:25 PM

    Steve:

    Would you be available for a remote session in a couple of hours or some...

  • RE: Derived Column Problems

    Zososql - Friday, February 17, 2017 9:49 AM

    Im needing to create a derived column that takes unique customerids and sums up the...

  • RE: Linking rows based on matching fields

    Nice query, Peter.   Only 2 scans and 2 logical reads.  Here's a slightly modified version that can also tell you what field pairs were involved:


    WITH ColumnValues AS...

  • RE: CTE Recursive Query

    robertopmorris - Friday, February 17, 2017 11:32 AM


    IF OBJECT_ID('TempDB..#mytable','U') IS NOT NULL DROP TABLE #mytable
    CREATE TABLE #mytable (
    ParentWO varchar(50),
    PProduction_Qty float,
    PQty_Complete float,
    ChildWO...

Viewing 15 posts - 2,821 through 2,835 (of 4,820 total)