-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bulk collect or FOR Loop to generate huge data #56
Comments
You can create cells one by one within the loop by calling What do you mean by |
put*Cell is very very slow and consuming huge resources. counter. i am referring as TOTAL PROCESSED RECORDS within the loop. which i need to display on the front end for the user to how much has been processed so far. is there any way to get the processed records from within the refcursor, using your technique? this below PROCESSED RECORD, i need it to get it from your refcusor somehow. BEGIN |
No, it's not possible to monitor the progress. Conceptually, displaying a progress would also require knowing the total amount of work (i.e. rows) in the first place, which is not possible using a cursor. |
How can we create an Excel file using bulk collect or a straightforward for loop instead of a ref cursor?
I need to handle large data files by utilizing values directly from the loop. The current procedure doesn't allow to retrieve the counter value effectively with a ref cursor.
The text was updated successfully, but these errors were encountered: