Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)

  • Reply To: What's Causing the Pushback with DevOps?

    In my experience the most push back against DevOps comes from people that don't understand it. There are a lot of people that think that DevOps has not controls and...

  • RE: How do we access SQL cached data ??

    Usually you use the recorset as it is returned to the calling application. Such as in VB.NET you create your data adapter and your data table. Then when...

  • RE: MaxDate and Second to max date

    How about using a group by and row_number in a join?

    CREATE TABLE #DateTable(Date1 datetime)

    INSERT INTO #DateTable ( Date1 ) VALUES ( '2009-10-26')

    INSERT INTO #DateTable ( Date1 ) VALUES ( '2009-10-26')

    INSERT...

Viewing 3 posts - 1 through 3 (of 3 total)