Problem:
You recently upgraded to Oracle 12c and your SYSAUX tablespace continues to grow in size. This may be happening because there is a default Unified Audit policy called ORA_SECURECONFIG.
ORA-31693: Table data object "HR"."EMP" failed to load/unload and is being skipped due to error:
ORA-02354: error in exporting/importing data
ORA-01426: numeric overflow
|
--Create Temporary Tablespace Temp2
CREATE TEMPORARY TABLESPACE TEMP2 TEMPFILE
'/oradata/testdb/temp02.dbf' SIZE 500M;
--Move Default Database temp tablespace
ALTER DATABASE DEFAULT TEMPORARY TABLESPACE temp2;
--Drop temp tablespace
DROP TABLESPACE temp INCLUDING CONTENTS AND DATAFILES;
--Recreate Tablespace Temp
CREATE TEMPORARY TABLESPACE TEMP TEMPFILE
'/oradata/testdb/temp01.dbf' SIZE 500M;
--Move Tablespace Temp, back to new temp tablespace
ALTER DATABASE DEFAULT TEMPORARY TABLESPACE temp;
--Drop temporary for tablespace temp
DROP TABLESPACE temp2 INCLUDING CONTENTS AND DATAFILES;
|
boris@testdb> select file_name from dba_temp_files
select file_name from dba_temp_files
*
ERROR at line 1:
ORA-01187: cannot read from file 1043 because it failed verification tests
ORA-01110: data file 501: '/oradata/testdb/temp01.dbf'
|
ORA-12012: error on auto execute of job "SYS"."BSLN_MAINTAIN_STATS_JOB"
ORA-06502: PL/SQL: numeric or value error
ORA-06512: at "DBSNMP.BSLN_INTERNAL", line 2073
ORA-06512: at line 1
|
ORA-12012: error on auto execute of job 41042
ORA-04063: package body "DBSNMP.BSLN_INTERNAL" has errors
ORA-06508: PL/SQL: could not find program unit being called:
"DBSNMP.BSLN_INTERNAL"
ORA-06512: at line 1
|
SQL> startup nomount
ORA-27102: out of memory
Linux-x86_64 Error: 28: No space left on device
|