I got ” ORA-32593: database supplemental logging attributes in flux ” error in Oracle database during add supplemental log on Oracle database.
ORA-32593: database supplemental logging attributes in flux
Details of error are as follows.
SQL> ALTER DATABASE ADD SUPPLEMENTAL LOG DATA; ALTER DATABASE ADD SUPPLEMENTAL LOG DATA * ERROR at line 1: ORA-32593: database supplemental logging attributes in flux SQL>
Database supplemental logging attributes in flux
This ORA-32593 error is related with the lots of active transactions or blocking session.
To solve this error, shutdown database if it is possible and add supplemental log.
STARTUP MOUNT ALTER DATABASE ADD SUPPLEMENTAL LOG DATA; ALTER DATABASE OPEN;
Or Find the blocking session and kill it. You can use the following post to get the related Blocking session and lock scripts.
ALTER SYSTEM KILL SESSION '1453,2463,@1';
Do you want to learn more details about RMAN, then Click this Link and read the articles.
RMAN Tutorial | Backup, Restore and Recovery Tutorials For Beginner Oracle DBA