system table space [message #527141] |
Sat, 15 October 2011 11:02 |
vdsk
Messages: 41 Registered: February 2006 Location: India & UAE
|
Member |
|
|
Hi
a newbie dba here..
select TABLESPACE_NAME,
sum(BYTES) Total_free_space,
max(BYTES) largest_free_extent
from dba_free_space
group by TABLESPACE_NAME
/
result output is attached .txt file.
the SYSTEM & USERS table space shows only <10 mb free space.
Is it a bad sign? What I should do ?
|
|
|
|
|
Re: system table space [message #527179 is a reply to message #527141] |
Sun, 16 October 2011 08:30 |
vdsk
Messages: 41 Registered: February 2006 Location: India & UAE
|
Member |
|
|
Thanks for replies..Shall adhere to posting guidelines.
Select tablespace_name, autoextensible from dba_data_files
This solves my query as I find SYSTEM, SYSAUX,USER & UNDOTBS1
are autoextended.
|
|
|
|
Re: system table space [message #527181 is a reply to message #527179] |
Sun, 16 October 2011 09:03 |
John Watson
Messages: 8964 Registered: January 2010 Location: Global Village
|
Senior Member |
|
|
Hello - just one word of advice: generally speaking, you shouldn't rely on autoextend. A good DBA will monitor space usage, and add space in advance. This is particularly important for SYSTEM: you don't want your users to take the pain of delays when SYSTEM is extended. Related to this, if you do have autoextend enabled, check the columns MAXBYTES and INCREMENT_BY in DBA_DATA_FILES. The defaults will let your files grow to the maximum possible which might fill your filesystem, and the increase will be in really small units which is dreadfully inefficient. I usually set the maximum size after asking my sysadmins what file size they are happy with, and set the increment to 1GB so that it won't happen to often.
|
|
|
|
Re: system table space [message #527220 is a reply to message #527207] |
Mon, 17 October 2011 01:34 |
|
Michel Cadot
Messages: 68732 Registered: March 2007 Location: Saint-Maur, France, https...
|
Senior Member Account Moderator |
|
|
Do not put SYSTEM tablespace in autoextend but assure there is at 10% of free space.
Many of us can't or don't want to download files, so post them inline in text mode and post them formatted.
Regards
Michel
|
|
|