I am using SQL Server 2008.
I want to select a long list of records and add it to a cursor and iterate through those records to accomplish some task. But I do not know the limitations of this cursor.
Q: Is there a maximum number of records that the cursor can hold. Or is it unlimited and handled internally using some kind of paging technique to handle the records dynamically.
Code:
DECLARE cursor CURSOR FOR
SELECT C1
FROM T1