tablespace UNDOTBS1 almost full, Any help [message #218667] |
Fri, 09 February 2007 04:16 |
simcheetong
Messages: 3 Registered: February 2007
|
Junior Member |
|
|
Hi.. when I enter this following SQLplus command, I found my tablespace UNDOTBS1 is almost full, it left 1Mb only. Any cause of concern ? What can we do to free up the space ? Please help me.
SQL> select tablespace_name, sum(bytes)/1024/1024 from dba_free_space group by tablespace_name;
TABLESPACE_NAME SUM(BYTES)/1024/1024
------------------------------ --------------------
IDX_02 23.9375
SYSAUX 87.125
SYSTEM 7.8125
UNDOTBS1 1.4375
UNDOTBS2 397.6875
USERS 364
XML_IDX_01 210.9375
XML_TBS_01 29232.875
8 rows selected.
|
|
|
|
Re: tablespace UNDOTBS1 almost full, Any help [message #218887 is a reply to message #218730] |
Sun, 11 February 2007 22:42 |
simcheetong
Messages: 3 Registered: February 2007
|
Junior Member |
|
|
The UNDO Retention is set to default 900sec. Does it mean that i have a chance to get error?
What is the command to get what is the size of the UNDOTBS1, Free space of UNDOTBS1 is 1.43Mb
By the way, the free space of system tablespace is only 7.8Mb, any cause of concern? How can we increase more free space for it or do we need to increase the tablespace. (By the way, it is set to auto extend the tablespace.
|
|
|
|
Re: tablespace UNDOTBS1 almost full, Any help [message #219004 is a reply to message #218959] |
Mon, 12 February 2007 09:07 |
clioteux
Messages: 5 Registered: February 2007 Location: algiers
|
Junior Member |
|
|
Hi,
check if the files are autoextensibles; if so, There will be no problems generated; Oracle will extend the files if necessary.
Select file_name, autoextensible from dba_data_files;
To check the autoextensible property of the datafiles.
And then :
Alter database datafile file_name autoextend on next n[k|m] maxsize [unlimited|n[k|m]];
SY;
|
|
|