Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

what is the cursor

Answer Posted / om shivaya namaha

Cursors are used to fetch the records row by row data in a
table but get the data very fast by using the cursors it is
very useful if the table contains few records in a table but
will create a performance isses if the table contain lot of
records

create cursor cursorName for
select EmpId,EmName from Employees
open cursor
while (@@FetchStatus==0)
begin
fetch next from cursorName into @EmpId , @EmName
select * from Employee where empid=@empid
end
close cursor

Is This Answer Correct ?    24 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How tooltip is set through code-behind in ASP.NET?

1141


What does asp.net stand for?

1206


what cut off mark for po's,what questions they asked for interview?

1914


What are the event handlers that we can have in global.asax file?

1014


What is the mvc framework?

1059


In order to get assembly info which namespace we should import?

1049


Can you explain one critical mapping? Performance issue which one is better? Whether connected lookup tranformation or unconnected one?

1319


How do you deploy your asp.net application?

1102


What is the difference between mvc (model-view-controller) and mvp (model-view-presenter)? : asp.net mvc

1076


In the Repeater control which way you can edit?

1148


What is Bundling and Minification in MVC?

1076


What are the uses of list view control in Asp.net?

1094


What is difference between cookies and cache?

1095


How to implement Authentication and Authorization?

1114


What is difference between asp state management and asp.net state management?

1148