Hello,
This weekend I analyzed database by executing
execute DBMS_UTILITY.ANALYZE_DATABASE('COMPUTE');
but I got error messge 'ORA-25153 Temporary Tablespace is Empty'
I checked database and I found that there was a missed file in the temporary tablespace 'TEMP'.
in the same time file exists on the disk. I fixed that problem by executing
ALTER TABLESPACE TEMP ADD TEMPFILE '/home/oracle/oradata/nuance/temp01.dbf' REUSE;
After that I tried to make a full export of database, but export began hanging at the point
of 'exporting views'. And I got an error message of Server Process bellow.
At the same time analyzing database is hanging as well, but I can analyze schema and make an export at user level without problems.
Originally posted by puneet ALTER TABLESPACE TEMP ADD TEMPFILE '/home/oracle/oradata/nuance/temp01.dbf' REUSE;
and not
ALTER TABLESPACE TEMP ADD DATAFILE '/home/oracle/oradata/nuance/temp01.dbf' REUSE;
Is there any other way to kill session in MTS? My dispatcher takes up to 95% CPU, but I can not kill that process, becuase of it will effect on other sessions.
That statement does not really kill session, it is marked for kill several days.
alter system kill session '10,30136'; ORA-00031: session marked for kill
Thanks for any advice.
Originally posted by jbeckstrom Check if you have stats on the "sys" objects, if so delete the stats.
Bookmarks