jump to navigation

Why is my SYSTEM Tablespace so Big? August 3, 2009

Posted by mwidlake in internals, VLDB.
Tags: , ,
trackback

How big is your SYSTEM tablespace? 512M? 1GB? 4GB? Bigger? Is it bigger than the whole of the first critical database you ever looked after? Why has the SYSTEM tablespace got so big?

You can easily check the size of the SYSTEM tablespace with any oracle development/admin GUI or with this script.

@dbf_lst
Enter value for ts_name: system
old   8: where tablespace_name like upper('&ts_name'||'%')
new   8: where tablespace_name like upper('system'||'%')
continue> 

FILE_NAME                                  F_ID  TS_NAME         SIZE_M   THOU_BL
----------------------------------------- ----- ---------------- -------- -------
+DISCG/sid/datafile/system.272.596722817      1 SYSTEM             24,920   3,190

That is 24GB. It is not the biggest one I have seen, but it is up there in the top 3.

Not so many versions ago, it was not unusual to have a system tablespace of less then 128MB in size. In fact, if you did not use stored PL/SQL this was probably the case up to and through 8i and into 9i. So – it’s PL/SQL causing the bloat? No, probably not. Ahhh, what about all that AWR automatic real-time monitoring gubbins you hear so much about? Nope, that goes into SYSAUX.

No, it’s probably down to one or both of two internal tables, SYS.AUD$ and SYS.HISTGRM$.

Let’s check out what are the biggest objects in this particular SYSTEM tablespace:

select owner,segment_name,segment_type
 ,bytes/(1024*1024) size_m
 from dba_segments
 where tablespace_name = 'SYSTEM'
 and    bytes/(1024*1024) >1
 order by size_m desc

OWNER        SEGMENT_NAME         SEGMENT_TYPE         SIZE_M
------------ -------------------- ------------------ --------
SYS          C_OBJ#_INTCOL#       CLUSTER              13,313
SYS          AUD$                 TABLE                 5,688
SYS          I_H_OBJ#_COL#        INDEX                 1,863
SYS          I_AUD1               INDEX                 1,606
SYS          HIST_HEAD$           TABLE                   311
SYS          SOURCE$              TABLE                   224
SYS          IDL_UB1$             TABLE                   224
SYS          C_FILE#_BLOCK#       CLUSTER                 208
SYS          INDPART$             TABLE                   160
SYS          OBJ$                 TABLE                   144
SYS          I_HH_OBJ#_COL#       INDEX                   128
SYS          I_HH_OBJ#_INTCOL#    INDEX                   128
SYS          I_OBJ2               INDEX                    80
SYS          I_FILE#_BLOCK#       INDEX                    62
SYS          TABPART$             TABLE                    57
SYS          I_OBJ1               INDEX                    49
{snip}

To be a little obtuse, I’ll start with the second largest object, SYS.AUD$, which you can see is getting close to 6GB in size {Oh, and SYS.I_AUD1, the fourth largest object, is the PK index on AUD$}.

AUD$ is the underlying table that holds all of the system auditing information that is turned on and off with the SQL AUDIT command. You can use AUDIT to monitor particular users, changes to system priveleges, access on key tables or particular activity like table changes. Go check the SQL manual if you want to know more.
The records for this captured activity all go into this table. On this particular system a few key priveleges and logons by certain users are the only things being audited, but the data has built up over 3 or 4 years.

On version 9 and 10 the options for managing this table are…poor. Bascially, you have to do it yourself. I think I am right to say that it is the only SYS-owned table that Oracle Corp say it is OK for you to move into another tablespace yourself and that you are allowed to delete and truncate data from. If you AUDIT a lot of things or activities you probably need to delete some data. {If you AUDIT a lot of things or activities and you don’t delete any of the data, you probably did not turn on AUDIT very long ago or have not checked the size of your SYSTEM tablespace for a while…}.

Oh, and one final thing on the AUD$ table. It is lacking indexes – it has only one {ignoring LOB indexes}. This is a good thing as indexes slow down inserts quite significantly {I use a rule of thumb that if it takes “N“ms to insert a record into a table, it will take “2.2*N“ms if there is an index on the table, “3.4*N“ms if there are two indexes, “4.6*N“ms if there are three… Get the idea? However, I have not checked this for real in years. Treat this statement as a potential myth}. I would recommend you do not add further indexes to AUD$. If you need to investigate the information in there, I would strongly suggest you extract what you want into a new table with a CTAS statement, then index that copy table and do your work on that. You do not want to slow down further everything that is already slowed down a little by being audited.

What about the largest thing in the SYSTEM tablespace? It’s SYS.C_OBJ#_INTCOL# nd is over 13GB in size. I said it would be SYS.HISTGRM$ didn’t I?

Well, SYS.C_OBJ#_INTCOL# is a cluster. Clusters are structures, segments, that hold one or more tables. All records for the same key across all those tables are held together, in the same block or blocks. The key is either a normal index or a hash. The idea is that it speeds up selecting records from different tables with the same key – they are all in the same block or blocks. It does work too, but they seem to have fallen out of favour with Oracle designers, but are worth considering.

In this particular cluster there is only one table, SYS.HISTGRM$:

select owner,table_name
from dba_tables
where cluster_name='C_OBJ#_INTCOL#'

OWNER                          TABLE_NAME
------------------------------ ------------------------
SYS                            HISTGRM$
1 row selected.

So, SYS.HISTGRM$ is the only table in the cluster. It {and it’s cluster index, on columns OBJ# and INTCOL#} are hiding in this cluster segment. It IS the biggest thing in this particular SYSTEM tablespace. The only index, other than the cluster index, on the table SYS.HISTGRM$ is I_H_OBJ#_COL# and is the third largest object in the SYSTEM tablespace.

--ind_cols
select
INDEX_OWNER                 ind_owner
,INDEX_NAME                  ind_Name
,TABLE_NAME                  tab_Name
,substr(column_position,1,3) Psn
,COLUMN_NAME                 Col_Name
from dba_ind_columns
where table_name like upper(nvl('&tab_name','WHOOPS')||'%')
order by 3,1,2,4,5
--eof
@ind_cols
Enter value for tab_name: histgrm$

IND_OWNER   IND_NAME           TAB_NAME           PSN       COL_NAME
----------- ------------------ ------------------ --------- --------------
SYS         I_H_OBJ#_COL#      HISTGRM$           1         OBJ#
                                                  2         COL#
2 rows selected.
Elapsed: 00:00:02.07

-- you find the cluster index by looking on DBA_INDEXES and
--DBA_IND_COLUMNS where the "TABLE_NAME" is the name of the cluster
@ind_cols
Enter value for tab_name: C_OBJ#_INTCOL#

IND_OWNER   IND_NAME           TAB_NAME           PSN       COL_NAME
----------- ------------------ ------------------ --------- --------------
SYS         I_OBJ#_INTCOL#     C_OBJ#_INTCOL#     1         OBJ#
                                                  2         INTCOL#
2 rows selected.
Elapsed: 00:00:00.93

What is HISTGRM$? Do you think it looks like it could be something to do with column Histograms? Well it is, it’s the underlying data dictionary table that holds column histograms. It started to become common to see a large HISTGRM$ table with Oracle 9 systems with many partitions {and of course subpartitions, if used}, where statistics were gathered on these partitioned tables aggressively and included a METHOD_OPT clause that causes column statistics to be collected. eg FOR ALL INDEXED COLUMNS SIZE 200 or FOR ALL COLUMNS SIZE 100.

Where most people have seen it balloon in size though is with Oracle 10 and the introduction of…the Automated Stats gathering job {so, there is a connection to previous recent posts 🙂 }.
Every night, every weekend, any partition or sub-partiton that is 10% or more different to last time stats were gathered, get stats gathered. The automatic job gathers states with METHOD_OPT=AUTO. Which means your Oracle software decides which columns to gather histogram stats on and how many buckets it collects.

Whoever wrote that part of the stats gathering feature really liked to gather information.

If you have lots of partitions {or sub-partitions} and gather stats with the METHOD_OPT=AUTO, the two factors added together result in a massive HISTGRM$ table and thus a massive cluster.

Is space important? No, of course not, disc acreage is cheap, just buy bigger discs ;-). {That, of course, was a highly questionable suggestion}.
Being serious, I’m personally not too concerend about my SYSTEM tablespace being that big, after all compared to the size of databases that use thousands of partitions, 32GB is usually not a major concern, but I know of people who did not expect their system tablespace to get that big and have issues with simple running out of strage available to them.

I am more concerned about the impact on parse times and general data dictionary perforance of such large objects. I’ve found the data dictionary can be very slow for some queries when there are large numbers of extents, objects, columns…Histograms are just in there with the mix. I’ve had to work around such slow data dictionary access several times in the past and I suspect {though have not had time to in any way support this with evidence} that parsing is slowed down by unneccessary histograms. As an example of this, which actually has nothing to do with SYS.HISTGRM$, if you look back up this post at the code listing the indexes on the cluster and table, the code took between a second and two seconds to run. Normally it takes less than 1/10 of a second.

Can you do anything about the size of these objects? Well, with SYS.AUD$ Oracle allow you to delete from it and move the table to a new tablespace. If you use the SQL AUDIT command, you should include housekeeping the SYS.AUD$ table in your overall implementation.

SYS.C_OBJ#_INTCOL# and SYS.HISTGRM in it are slightly trickier. It is not easy to reduce the space used by these objects and thus the SYSTEM tablespace once they have grown large, but you can stop them getting bigger by collecting fewer column histogram statistics on your partitioned tables. Obviously that is not as simple as it sounds, but many sites with large numbers of objects do turn off the automated stats gathering and run their own code.

Comments»

1. coskan - August 3, 2009

Nice explanation Martin.
I think this post deserves an addition from Tanel Poder about SYSTEM tablespace access speed.

Oracle hidden costs revealed, Part2 – Using DTrace to find why writes in SYSTEM tablespace are slower than in others

2. mwidlake - August 3, 2009

Hi Coskan,

I’m not so sure Tanel looks my way very often, but I’d love to have some input from him. I figure I should spend a few days checking out slow data dictionary speed but it’s just going to have to be added to my TDO list for now!

Martin

3. Amit - August 4, 2009

Martin,

I believe that your environment is having partitions which are getting added regularly as a result , the cluster SYS.C_OBJ#_INTCOL# size is increasing in size. .. With respect to stats gathering, instead of stopping gather_stats_job, I think we can disable the histogram collection by modifying the job ..

Cheers
Amit

mwidlake - August 4, 2009

Hi Amit

Well, yes, an active system with thousands of partitions is going to be gaining partitions as time goes by and new partitions are created or split off to hold the new data. That is part of why the HISTGRM$ table and it’s cluster increase in size over time.

You can change change the default value for METHOD_OPT with the DBMS_STATS.SET_PARAM funtion, which will change it for every segement analysed by the automated stats job and for any DBMS_STATS.GATHER_XXX where you do not state it explicitly. It’s hard to see a single other fixed value that will work for the whole database, especially if it is large and complex, which is why “FOR ALL COUMNS SIZE AUTO” is the default – but it is not a good solution for these big and/or complex databases.

Sadly, the only good option is to look at the database system as a whole and decide on a stats gathering methodology that works for your system, which I admit is not a trivial job. It’s just one of the long list of tasks that a modern DBA had to fit in 🙂

4. Surachart Opun - August 4, 2009

Great Martin,
thank you for article.
On our database 10g, we move AUD$ table + I_AUD1 index to new tablespaces before “alter audit_trail”.

Or delete AUd$ every 90 days. or after made report.

About another object… C_OBJ#_INTCOL# cluster, we don’t use much space. But hope to know how reduce it…

Cheer!

Amit - August 5, 2009

Surachart,

Only supported way to reduce C_OBJ#_INTCOL# size is to Recreate database 😉

Cheers
Amit

Surachart Opun - August 5, 2009

Hi Amit,

Bad News for me…
By the way, this object no problem with me 😉

Thank You

mwidlake - August 5, 2009

Thanks Amit. Yes, Oracle say you have to do the little task of recreating the database! One wonders why you can’t copy the table, drop the original and rename the copy. Maybe the cluster makes that tricky or oracle makes use of internal pointers (even rowids) somewhere inside or some other internal trick means it just does not work. But it doesn’t matter, if Oracle don’t support it you should not be doing it!

Kamus - July 19, 2012

If you really want to decrease C_OBJ#_INTCOL# cluster size instead of recreate database, try below:
1. alter system set event=’38003 trace name context forever, level 10′ scope=spfile;
2. restart database
3. truncate cluster c_obj#_intcol#;
4. remove the 38003 event from spfile and restart database again
5. gather the column histogram you really need

on your own risk 😀

Kamus - July 19, 2012

Forgot to say, never do it on your production system.

5. B. Polarski - August 6, 2009

In order to avoid the block checksum of System tablespace, we intend to move the AUD$ and FGA_LOG$ onto sysaux. We would like to partition AUD$ as it seems normal to manage big tables with drop partitions rather than huge delete. However FGA_LOG$ cannot be partitioned due to a Long (col PLHOL). Thanks Oracle corps, now we are forced into millions of row delete.

wonder if somebody as experience with AUD$ partitioned?

mwidlake - August 6, 2009

Funny you should mention partitioning AUD$ Bernard. Yesterday, I was talking to a client about relocating AUD$ and putting in place some housekeeping and they suggested partitioning AUD$. I said I would rather not partition it as I don’t like the idea of doing anything to an internal table that I don’t have to do.
But as all that oracle does is write to AUD$, would partitioning on timestamp# {which is a DATE, Thanks Larry E} be a sensible thing to do? It should not slow down the inserts that much.
You know, I think FUD {Fear, Uncertainty nd Doubt} will probably result in me suggesting what I have done before.

Move SYS.AUD$ to a different tablespace
Create a new table called something like “CORPNAME_AUDIT” in a suitable schema, partitioned by date
Pull all the $AUD data into the new table (which has a couple of indexes on it) on a regular basis
Trim the $AUD table on a regular but less frequent basis

If you do decide to partition AUD$ Bernard, I’d love to know how you get on.

BTW “Block checksum of system tablespace”. Can you expand, I don’t know what you mean by this.

6. Blogroll Report 31/07/2009 – 07/08/2009 « Coskan’s Approach to Oracle - August 12, 2009

[…] Martin Widlake- Why is my SYSTEM Tablespace so Big? […]

7. Dejan Topalovic - September 1, 2009

I had same problem last year, when my SYSAUX tablespace growth from 3 GB to 30 GB in just one day!!!

In my case, I collected histograms on a few big partitioned tables (each was over 50 GB). Lately I tried to remove unnecessary data from WRH$ and other tables with infos about histograms, so I can resize the SYSAUX datafile, but I got an error, there are some objects which belongs to XDB component. So I needed to clean up everything (and to relocate XDB component), to be able to resize the SYSAUX datafile …

8. mwidlake - September 2, 2009

Hi Dejan,

Thanks for the comment.

Collecting histogram data could have bloated the SYSTEM tablespace (you might want to check it if you have not already), whereas gathering stats would probably have bloated the SYSAUX tablespace, especially if you gathered stats several times on the same object. Each time you gather stats, Oracle automatically puts the old values into some of the WRI$ tables – WRI$_OPTSTAT_* to be more accurate. I thought I’d blogged about them but I think I’ve only presented on them. I’ll add it to my list of “blogs to write”!

9. Usn - March 30, 2011

That’s great information, explains why a growing archive DB of mine grows its SYSTEM tablespace day by day. We are collecting many histograms there. Good to know…

Thanks
Martin “Usn” Klier

10. Auditing vs. Performance in the Oracle Database « Julian Dontcheff's Database Blog - May 11, 2011

[…] I would recommend this article by Martin Widlake: Why is my SYSTEM Tablespace so Big?! The 3rd SYSTEM table after SYS.AUD$ and SYS.HISTGRM$ that I have seen to grow up is […]

11. fabio - October 21, 2011

nice article.
good work!

12. Franklin F. - December 13, 2011

Good post!! Love it.

13. Oracle Interview Questions - December 14, 2011

We had this issue when the system tablespace got full. We had raw devices and we couldn’t add new raw devices right away and needed and this def helped because we needed to clear up some space in the system tablespace.

14. Keshav - January 3, 2012

Hi,
I m getting this error in alert log file
ORA-1654: unable to extend index SYS.I_HH_OBJ#_COL# by 62 in tablespace SYSTEM……..

Please help me in resolving this issue…
Provide me the steps..
we are on oracle 9i on solaris machine…….Pleas help me…

Regards,
Keshav Gupta

mwidlake - January 3, 2012

Hi Keshav,

At a guess I would say you need to either add a new datafile to the system tablespace as the current one (or ones) are all at maximum size, or the datafiles are not set to autoextend and you need to make them autoextend. Check out the admin guide about datafiles, it will tell you everything you need to know.

Regards,

Martin

15. Saroj Mahanta - January 20, 2012

In my case, my UAT env has system tablespace grows upto 10GB. And below is the output of the maximum space consuming object,
SOURCE$ TABLE 3,319
IDL_UB1$ TABLE 1,776
I_SOURCE1 INDEX 1,620
IDL_UB2$ TABLE 823
ARGUMENT$ TABLE 725

Now, i want to know, why SOURCE$ table is having 3+ GB size. What does it contains ?

mwidlake - January 20, 2012

PL/SQL stored procedure, packages and functions? 🙂

mwidlake - January 21, 2012

Being more helpful, if you look at the view text for dba_source you can see that it is based on SYS.SOURCE$. I think Saroj that you might have a lot of old versions of code in your UAT system or just a huge amount of PL/SQL – but that is an enormous volume. Maybe as an alternative reason you have had some process that has bloated the PL/SQL store. Here is the view text:

OWNER VIEW_NAME TEXT_LENGTH
—————————— —————————— ———–
TEXT
——————————————————————————-
SYS DBA_SOURCE 626
select u.name, o.name,
decode(o.type#, 7, ‘PROCEDURE’, 8, ‘FUNCTION’, 9, ‘PACKAGE’,
11, ‘PACKAGE BODY’, 12, ‘TRIGGER’, 13, ‘TYPE’, 14, ‘TYPE BODY’,
22, ‘LIBRARY’, ‘UNDEFINED’),
s.line, s.source
from sys.”_CURRENT_EDITION_OBJ” o, sys.source$ s, sys.user$ u
where o.obj# = s.obj#
and o.owner# = u.user#
and ( o.type# in (7, 8, 9, 11, 12, 14, 22) OR
( o.type# = 13 AND o.subname is null))
union all
select u.name, o.name, ‘JAVA SOURCE’, s.joxftlno, s.joxftsrc
from sys.”_CURRENT_EDITION_OBJ” o, x$joxscd s, sys.user$ u
where o.obj# = s.joxftobn
and o.owner# = u.user#
and o.type# = 28

I hope that helps Saroj


Leave a reply to Amit Cancel reply