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!

Tune undo retention value

ANURAG DBA INDIAMay 12 2014 — edited May 12 2014

tell me any impact on live database if change this values

SQL> select sum(bytes/1024/1024) from dba_data_files where TABLESPACE_NAME='UNDOTBS2';

SUM(BYTES/1024/1024)

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

                4739

SQL> show parameter undo

NAME                                 TYPE        VALUE

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

undo_management                      string      AUTO

undo_retention                       integer     10800

undo_suppress_errors                 boolean     FALSE

undo_tablespace                      string      UNDOTBS2

SQL>

SQL>

SQL>

after change

SQL>

SQL> ALTER SYSTEM SET UNDO_RETENTION = 21600;

System altered.

SQL>

SQL> show parameter undo

NAME                                 TYPE        VALUE

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

undo_management                      string      AUTO

undo_retention                       integer     21600

undo_suppress_errors                 boolean     FALSE

undo_tablespace                      string      UNDOTBS2

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jun 9 2014
Added on May 12 2014
3 comments
1,113 views