In the msdn SQL server document(http://msdn2.microsoft.com/en-us/library/aa172573(SQL.80).aspx), it states:
Transact-SQL cursors can specify the FAST_FORWARD clause on DECLARE CURSOR. This opens an optimized forward-only, read-only cursor.
But in the following section 'Implicit Conversion of Fast Forward-only Cursors', it states:
If a fast forward-only cursor is not read-only, it is converted to a dynamic cursor.
Now I am confused: is it possible to make a fast forward-only cursor 'not read-only'(updatable)
A fast forward-only cursor by definition is read-only. Am I wrong
Thanks,
Baihao Yuan