SQL Server Cursors Question:

Do you know the cursor types?

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

Answer:

DYNAMIC: It reflects changes happened on the table while scrolling through the row.
STATIC: It works on snapshot of record set and disconnects from the server. This kind doesn’t reflects changes happened on the table while scrolling through the row.
KEYSET: In this kind, new record is not reflected, but data modification can be seen


Previous QuestionNext Question
Do you know the cursor optimization tips?What is Implicit cursors?