Forum Replies Created

Viewing 15 posts - 3,181 through 3,195 (of 8,753 total)

  • RE: Are the posted questions getting worse?

    Now where is that crystal ball again?

    😎

  • RE: finding max value between dates

    Here is a quick suggestion

    😎

    USE TEEST;

    GO

    SET NOCOUNT ON;

    IF OBJECT_ID(N'dbo.TBL_SAMPLE_DATA_1818603') IS NOT NULL DROP TABLE dbo.TBL_SAMPLE_DATA_1818603;

    create table dbo.TBL_SAMPLE_DATA_1818603

    (

    dates datetime

    ,customer int

    ,ind_1 smallint

    ,ind_2 smallint

    ,ind_3 smallint

    ,ind_4 smallint

    )

    insert into dbo.TBL_SAMPLE_DATA_1818603

    ...

  • RE: finding max value between dates

    Quick question, why is the latest date in the sample set 2015-03-01? This means that the data is all excluded by the requirements.

    😎

  • RE: Are the posted questions getting worse?

    This weekend is the Open House weekend in London, just wondering if SSC is participating in something similar like Open Spam:pinch:

    😎

  • RE: CTE multiple in a stored procedure

    sqlfriends (9/16/2016)


    I have a developer wrote code using a lot of CTEs in a stored procedure.

    Basically, one CTE call another CTE call another CTE.

    CTE is sometimes easy to understand, but...

  • RE: Are the posted questions getting worse?

    TomThomson (9/16/2016)


    Sean Lange (9/16/2016)


    Eirikur Eiriksson (9/16/2016)


    ThomasRushton (9/16/2016)


    Thom A (9/16/2016)


    ThomasRushton (9/16/2016)


    Sean Lange (9/16/2016)


    BWFC (9/16/2016)


    jasona.work (9/16/2016)


    Thom A (9/16/2016)


    ThomasRushton (9/16/2016)


    These posts offering ways to get rid of weight loss? What? Eat...

  • RE: Generate XML file base on XSD from sql server table

    latitiacasta (9/16/2016)


    HI,

    It's done. I have added tables with auto incremental id and foreign key to create dummy nodes. Once again Thanks for your help πŸ˜›

    Good job and thanks for...

  • RE: Are the posted questions getting worse?

    Phil Parkin (9/16/2016)


    Jacob Wilkins (9/16/2016)


    Sean Lange (9/16/2016)


    Eirikur Eiriksson (9/16/2016)


    Sean Lange (9/16/2016)


    Eirikur Eiriksson (9/16/2016)


    ThomasRushton (9/16/2016)


    Thom A (9/16/2016)


    ThomasRushton (9/16/2016)


    Sean Lange (9/16/2016)


    BWFC (9/16/2016)


    jasona.work (9/16/2016)


    Thom A (9/16/2016)


    ThomasRushton (9/16/2016)


    These posts offering ways to get rid...

  • RE: Are the posted questions getting worse?

    Jacob Wilkins (9/16/2016)


    Sean Lange (9/16/2016)


    Eirikur Eiriksson (9/16/2016)


    Sean Lange (9/16/2016)


    Eirikur Eiriksson (9/16/2016)


    ThomasRushton (9/16/2016)


    Thom A (9/16/2016)


    ThomasRushton (9/16/2016)


    Sean Lange (9/16/2016)


    BWFC (9/16/2016)


    jasona.work (9/16/2016)


    Thom A (9/16/2016)


    ThomasRushton (9/16/2016)


    These posts offering ways to get rid of weight...

  • RE: Are the posted questions getting worse?

    Sean Lange (9/16/2016)


    Eirikur Eiriksson (9/16/2016)


    ThomasRushton (9/16/2016)


    Thom A (9/16/2016)


    ThomasRushton (9/16/2016)


    Sean Lange (9/16/2016)


    BWFC (9/16/2016)


    jasona.work (9/16/2016)


    Thom A (9/16/2016)


    ThomasRushton (9/16/2016)


    These posts offering ways to get rid of weight loss? What? Eat more...

  • RE: Are the posted questions getting worse?

    ThomasRushton (9/16/2016)


    Thom A (9/16/2016)


    ThomasRushton (9/16/2016)


    Sean Lange (9/16/2016)


    BWFC (9/16/2016)


    jasona.work (9/16/2016)


    Thom A (9/16/2016)


    ThomasRushton (9/16/2016)


    These posts offering ways to get rid of weight loss? What? Eat more SPAM. Eat more...

  • RE: Convert Columns to Rows

    tripleAxe (9/15/2016)


    Here is the UNION ALL query using a temp table so that we can have one pass at the input table as suggested by The Dixie Flatline in an...

  • RE: Convert Columns to Rows

    There is another way of getting a single scan plan and that is to use an inline tally table, here are two harnesses, 5 and 50 columns respectfully.

    😎

    5 column harness

    USE...

  • RE: Convert Columns to Rows

    Here is a 50 column test harness and the results on my old laptop (2nd Gen i5)

    😎

    USE TEEST;

    GO

    SET NOCOUNT ON;

    --http://www.sqlservercentral.com/Forums/FindPost1817858.aspx

    -- TEST HARNESS

    DECLARE @timer TABLE (

    T_TXT...

  • RE: Introduction to Microsoft R Services in SQL Server 2016

    Thank you TomaΕΎ for this nice write-up, very good indeed!

    😎

Viewing 15 posts - 3,181 through 3,195 (of 8,753 total)