2012-04-25 34 views
5

WITH table ASCURSOR लूप में परिणाम कैसे प्राप्त करें? कैसे मेरे तालिकासंग्रहित प्रक्रिया चलाने के लिए कर्सर लूप के भीतर तालिका के साथ कैसे उपयोग करें

How to read all records recursively and show by level depth TSQL

;with C as 
(
    definition ... 
) 

मैं कर्सर पाश जहाँ मैं table

declare @id int, @parent int 
declare cur cursor local fast_forward 
for 
    select id, parent from C 
open cur 
fetch next from cur into @id, @parent 
while @@fetch_status = 0 
    begin 
    exec storedProcedure @[email protected], @[email protected] 
fetch next from cur into @id, @parent 
end 
close cur 
deallocate cur 

में सभी परिणामों के लिए विशिष्ट संग्रहीत प्रक्रिया चलाना चाहते हैं बनाया है से पुनरावर्ती परिणाम पाने के लिए मैं पहले के बारे में पूछा है समस्या यह है कि CURSOR AS परिणाम के साथ table नहीं जानता है।

Invalid object name 'C'. 

उत्तर

3

आप सीटीई क्वेरी द्वारा लौटाई गई पंक्तियों को पकड़ने के लिए एक टेम्प तालिका या तालिका चर बना सकते हैं और फिर आप उस तालिका को अपने कर्सर के स्रोत के रूप में उपयोग कर सकते हैं।

declare @T table 
(
    id int, 
    parent int 
) 

;with C as 
(
    select 1 as id, 2 as parent 
) 
insert into @T 
select id, parent 
from C 

declare cur cursor for select id, parent from @T