Hi,
I have a question about cursors.
A "Forward_Only" cursor reflects changes to the underlying data, and does not use tempdb.
A "Static" cursor does *not* reflect changes to the underlying data and *does* use tempdb.
So, my question is, if you declare a cursor as:
CURSOR LOCAL FORWARD_ONLY...