In our web application, we have 18 screens in the module. Our user wants all the data from 18 screens to be on one page so that they can print all the data at once.
So, I wrote an Oracle procedure that retrieves data from all 18 screens (from 20 to 22 tables). This Oracle procedure returns 13 cursors to my Java program.
The performance of the page is good, and I get the desired result.
However, would it return that many cursors for Java pose any problems?
source share