SQL Server Cursors Question:

Do you know the cursor optimization tips?

MS SQL Server Cursors Interview Question
MS SQL Server Cursors Interview Question

Answer:

Close cursor when it is not required.
You shouldn’t forget to deallocate cursor after closing it.
You should fetch least number of records.
You should use FORWARD ONLY option when there is no need to update rows.


Previous QuestionNext Question
What is cursor in MS SQL Server?Do you know the cursor types?