I have a procedure that uses a cursor. I want to use this procedure to build a table based on the cursor. How can I dynamically generate a table the will contain the results. I plan on executing this procedure to populate this table every week.
Thanks...create procedure...
declare my_cursor cursor for
select ...
open my_cursor
fetch next ... into <variables list>
while @.@.fetch_status = 0 begin
insert <table_name> values (<variables list>)
fetch next ... into ...
end
close my_cursor
deallocate my_cursor
returnsql
No comments:
Post a Comment