Home Forums SQL Server 2008 T-SQL (SS2K8) Recursive Update - Help identifiying Where MAXRECURSION limit is blown RE: Recursive Update - Help identifiying Where MAXRECURSION limit is blown

  • Jeff Moden (11/5/2012)


    Mark-101232 (11/5/2012)


    You don't need to use recursion to find the ranges of 1753s starts and their lengths. Try this instead

    DECLARE @CutOffDate DATETIME = '2009-01-01';

    WITH CTE AS (

    SELECT ID, VisitDate,

    ROW_NUMBER() OVER(ORDER BY ID) -

    ROW_NUMBER() OVER(PARTITION BY CASE WHEN VisitDate < @CutOffDate THEN 1 ELSE 0 END ORDER BY ID) AS rnDiff

    FROM WebRequest)

    SELECT MIN(ID) AS StartID,

    COUNT(*) AS RunLength

    FROM CTE

    WHERE VisitDate < @CutOffDate

    GROUP BY rnDiff

    ORDER BY StartID;

    Nicely done, Mark.

    Many thanks!

    ____________________________________________________

    Deja View - The strange feeling that somewhere, sometime you've optimised this query before

    How to get the best help on a forum

    http://www.sqlservercentral.com/articles/Best+Practices/61537