devxlogo

Processing of Large Batch Transactions in Oracle

Processing of Large Batch Transactions in Oracle

At some point, you must have encountered a “Snapshot too old” error when running a huge batch transaction. Then you find that you may have to restart the process all over again when 80 percent of the transaction was complete when the error occurred.

Ask your DBA to create a large rollback segment for these large batch-oriented transactions. But in order for your long-running transaction to use this “large” rollback segment, you have to explicitly specify it prior to the start of the transaction. Use the DBMS_TRANSACTION package to specify the rollback segment:

 DBMS_TRANSACTION.USE_ROLLBACK_SEGMENT('RBS_BIG'); 

In this case, RBS_BIG is the name of the large rollback segment.

See also  Why ChatGPT Is So Important Today
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist