An internal error has occurred in the program xla_ae_lines_pkg.AccountingReversal. ORA-01555: snapshot too old: rollback segment number 32 with name “$TEMPUNDOSEG” too small
Β
ERROR
———————–
XLAACCUP: Accounting Program
+—————————————————————————+
Current system time is 19-APR-2025 04:21:18
+—————————————————————————+
[19-APR-2025 04:21:18]: **Starts**
[19-APR-2025 04:21:45]: **Ends**
An internal error occurred. Please inform your system administrator or support representative that:
An internal error has occurred in the program xla_ae_lines_pkg.AccountingReversal. ORA-01555: snapshot too old: rollback segment number 32 with name “$TEMPUNDOSEG” too small.
An internal error occurred. Please inform your system administrator or support representative that:
An internal error has occurred in the program xla_ae_lines_pkg.AccountingReversal. ORA-01555: snapshot too old: rollback segment number 32 with name “$TE
Β
Β
π§ Solution 1: Check UNDO Retention and Space
If your system is experiencing issues due to insufficient UNDO space or retention settings, follow the steps below:
β Step 1: Increase UNDO Tablespace
Ensure the UNDO tablespace has adequate space by adding a new datafile:
β Step 2: Adjust UNDO Retention
Increase the undo retention time to avoid premature overwriting of undo data:
π‘ Consider increasing the value to 3600 seconds based on workload requirements.
π§ Solution 2: Parameter Adjustments for Oracle 19c
If you recently upgraded the database from 11g or 12c to 19c, ensure that initialization parameters align with Oracleβs best practices. Refer to Oracle Note 396009.1Β – Database Initialization Parameters for Oracle E-Business Suite Release 12.
π Steps to Apply:
-
Edit the Initialization File (
init<SID>.ora
) -
Update/Add the Following Parameters:
-
For 12c only:
-
For 19c, do not set
OPTIMIZER_ADAPTIVE_FEATURES
. -
Common Parameters:
-
-
Remove the Following Parameters (for both 12c and 19c):
-
_sqlexec_progression_cost
-
optimizer_features_enable
-
-
Save Changes
-
Bounce (Restart) the Database
-
Re-test the Issue
Β
Β