There are many reason case ORA-01555 Snapshot Too Old error.
In SAP Oracle DB, the most reason is that rollback segment or rollback/undo tablespace is too small.
Try brtools to extend the tablespace PSAPUNDO.
If there is not brtools, you can user below SQL . Make suer your undo tablespace named PSAPUNDO.
alter tablespace PSAPUNDO add datafile '/oracle/xxxx' size 32767M autoextend off
You can use below SQL to identify what undo tablespace named.
show parameter UNDO_TABLESPACE
Comments
Post a Comment