help regarding cursor
what is mean by cursor in sql server.explain with a simple example.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
SenthilkumarPosted Apr 27, 2012, 4:25 AM
MuthuMari MPosted Apr 27, 2012, 4:21 AM
Cursor is used for row-by row operations. The cursor is so named because it indicates the current position in the resultset.
A cursor is a set of rows together with a pointer that identifies a current row.
In other word, Cursor is a database object used by applications to manipulate data in a set on a row-by-row basis, its like recordset in the ASP and visual basic.
pls refer this url
http://www.sqlinfo.in/2011/04/sql-server-cursor-simple/
http://www.mssqlcity.com/Articles/General/UseCursor.htm
thanks
If this post is useful then mark it as "Accepted Answer"