How many maximum recursion level possible for CTE in SQL server? If maximum recursion level is reached then what are the alternative way?
How many maximum recursion level possible for CTE in SQL server? If maximum recursion
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
By default, it’s
100.You can change it on per-query basis by appending a hint:
to the end of the query.
means no explicit limit.
When the recursion limit is reached, an error is raised and the query breaks.