Oracle DB Optimization Question: Download Oracle Database Optimization PDF

Tell me in brief the cursor optimization tips?

Tweet Share WhatsApp

Answer:

The following are few tips for cursor optimization:

- When the cursor is not needed, close the cursor
- Deallocate the cursor after closing it.
- Fetch less number of rows.
- Avoid triggers – because trigger executes whenever data gets updated, leads to overload of the system.
- When the rows are not need to update, use the option FORWARD ONLY
- Use where instead of having clause unless it is essential

Download Oracle Database Optimization PDF Read All 8 Oracle Database Optimization Questions
Previous QuestionNext Question
Do you know what are the ways to code efficient transactions?Tell me what is Index tuning?