‎2009 Oct 29 4:38 AM
Dear All ,
Can the performance of the select query be improved with the help of Database Cursor?
Please Suggest.
Regards,
Nikhil
‎2009 Oct 29 8:27 AM
I dare say no, it is a sort of database internal pointer to the rows of the result set of your query, something you normally need not worry about as a programmer using Open SQL in ABAP (unless you illegally interrupt it...). Better concentrate on reading less data with more efficient index usage.
Actually what is the practical relevance of your question?
Thomas
‎2009 Oct 30 1:48 PM
what should be the help of the cursor ... do you want to guide it?
Don't get confused by the cursur column in the SQL-trace, it is only the reference to the cursor cache, the place where
the execution plan is stored.
‎2009 Oct 30 1:59 PM