How to reduce the the burden/main memory on database if i am using refcursor to hold large data to increase performance.

Showing Answers 1 - 6 of 6 Answers

Unlike tables ref cursors do not store data. They act like mold to hold data during the execution of the piece of code so proper coding and use of bind variables can help decrease the burden of processing.

If the data is large then processing will surely consume more resources. You could try to partition the table from which the cursor is deriving its data and see if it helps.

gauravy

  • Jul 5th, 2017
 

Use pipeline functions

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions