How To Calculate/Compute Space Size To Increase for the Undo Tabspace [message #690250] |
Fri, 24 January 2025 14:34 |
wtolentino
Messages: 422 Registered: March 2005
|
Senior Member |
|
|
SQL> select tablespace_name, sum(bytes) free_space from dba_free_space where tablespace_name like 'UNDO%' group by tablespace_name;
TABLESPACE_NAME FREE_SPACE
---------------------------------------- ----------------
UNDOTBS1 16520052736
In a given table there's about 223,782,314 rows. About 37,194,314 rows will be deleted. I was advised by some of my dba colleagues to somehow increase the size of the UNDO to lessen the burden. Is there a way to calculate or compute the size to increase or added?
Thanks.
Thanks in advance.
[Updated on: Fri, 24 January 2025 14:41] Report message to a moderator
|
|
|
|
|
|