Quantcast
Channel: CTE - Recursive SQL
Viewing all articles
Browse latest Browse all 12

CTE - Recursive SQL

$
0
0

> Thank you both for pointing me in the right direction. I've updated my question a little bit. Now i understand how to write the CTE query, but i'm running into issues with maxrecursion of 32767. Does any of you have an idea how to bypass that?

If you hit that limit, there is either an error in your query, or you have cycles in the data. I tried the table, the INSERT statements and the query in your first post, and it completed successfully. I did not try the .Net code you had.

That said, usually when you traverse a tree, you have an initial condition, for instance to start at the top level:

WITH CategoryRecursive AS
    (SELECT CategoryId, ParentCategoryIdFROM Category--->          WHERE  ParentCategoryID IS NULLUNIONALLSELECT CR.CategoryId, C.ParentCategoryIdFROM Category AS C INNERJOIN CategoryRecursive AS CRON C.CategoryId = CR.ParentCategoryId
    )SELECT * FROM CategoryRecursive AS CR2ORDERBY CR2.ParentCategoryId, CR2.CategoryId

Note: in your sample you had ParentCategoryId = 0 for the root, but it's more common to use NULL.

Then again, you mentioned about aggregation on all levels, and that may call for a different model to query the tree, but I don't think you have come that far yet.


Erland Sommarskog, SQL Server MVP, esquel@sommarskog.se
Links for SQL Server Books Online:
SQL 2008: http://msdn.microsoft.com/en-us/sqlserver/cc514207.aspx
SQL 2005: http://msdn.microsoft.com/en-us/sqlserver/bb895970.aspx
SQL 2000: http://www.microsoft.com/sql/prodinfo/previousversions/books.mspx

Viewing all articles
Browse latest Browse all 12


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>