Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

undo tablespace utilization (ora -30036)

Aspire_DBAJul 1 2014 — edited Jul 10 2014

Hi,

I got ora-30036 while doing a transaction in database.

The undo tablespace was full.

My undo management is set to AUTO.

SQL> sho parameter undo

NAME                                 TYPE        VALUE

------------------------------------ ----------- -----------------------------

undo_management                      string      AUTO

undo_retention                       integer     900

undo_tablespace                      string      UNDOTBS1

My issue is that the status in DBA_UNDO_EXTENTS  does not seem to change even after a sufficiently long time.

SQL> SELECT STATUS, SUM(BYTES)/(1024*1024) Size_MB, COUNT(*)

         FROM DBA_UNDO_EXTENTS GROUP BY STATUS;

STATUS       SIZE_MB   COUNT(*)

--------- ---------- ----------

UNEXPIRED       1.25         20

EXPIRED            3         48

ACTIVE      1955.625        591

What am I possibly missing? Thanks.

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Aug 7 2014
Added on Jul 1 2014
7 comments
757 views