How many types of cursors are there in SQL Server?
Answer Posted / vikash kumar mishra
There are five type of cursors in SQL server.
1)Base table:- This is lowest level cursor.
2)Static :- This is scrollable query cursor in earlier
versions of SQL Server Compact Edition
3)Forward-only:- The forward-only cursor is the fastest
cursor that you can update, but it does not support
scrolling.
4)Forward-only/Read-only:- Forward-only/read-only cursors,
referred to as forward-only cursors in earlier versions of
SQL Server Compact Edition, are the fastest cursors, but
cannot be updated.
5)Keyset-driven:- The keyset-driven cursor in SQL Server
Compact Edition is a scrollable cursor that you can update.
A keyset-driven cursor is controlled by a set of physical
identifiers known as the keyset.
| Is This Answer Correct ? | 13 Yes | 3 No |
Post New Answer View All Answers
How to recover from sql injection? : sql server security
what is dbcc? : Sql server database administration
How to insert stored procedure result into temporary table?
Is sql server is free?
How can I add Reporting Services reports to my application?
Explain what is meant by replication of database?
What is change tracking in sql server?
What is linked report?
What is model database in sql server?
Does table partitioning improve performance?
What is database dimension? : sql server analysis services, ssas
What is the maximum row of a size?
Can you index views?
What is sparse columns of sql server 2008?
What are difference between Cluster index and Non-Cluster index?