码迷,mamicode.com
首页 > 其他好文 > 详细

system表空间空间不足解决办法

时间:2017-06-07 19:42:33      阅读:272      评论:0      收藏:0      [点我收藏+]

标签:format   data-   sql   字典   add   decode   shu   lines   scope   

场景描述:

系统表空间空间不足,导致应用无法正常连接!!!

环境描述:

ORACLE 11G

查看当前表空间的整体使用情况,以及有没有开启自动扩展,以及扩展的最大限制!!!

---tablespace status 表空间使用情况
set pages 12222 lines 132
set serveroutput on size 1000000
col tablespace_name format a30
col autoextensible format a7
select a.tablespace_name,
       round(a.s,2) "CURRENT_TOTAL(MB)",
       round((a.s - f.s),2) "USED(MB)",
       f.s "FREE(MB)",
       round(f.s / a.s * 100, 2) "FREE%",
       g.autoextensible,
       round(a.ms,2) "MAX_TOTAL(MB)"
  from (select d.tablespace_name,
               sum(bytes / 1024 / 1024) s,
               sum(decode(maxbytes, 0, bytes, maxbytes) / 1024 / 1024) ms
          from dba_data_files d
         group by d.tablespace_name) a,
       (select f.tablespace_name, sum(f.bytes / 1024 / 1024) s
          from dba_free_space f
         group by f.tablespace_name) f,
       (select distinct tablespace_name, autoextensible
          from DBA_DATA_FILES
         where autoextensible = ‘YES‘
        union
        select distinct tablespace_name, autoextensible
          from DBA_DATA_FILES
         where autoextensible = ‘NO‘
           and tablespace_name not in
               (select distinct tablespace_name
                  from DBA_DATA_FILES
                 where autoextensible = ‘YES‘)) g
 where a.tablespace_name = f.tablespace_name
   and g.tablespace_name = f.tablespace_name order by "FREE%";

 

系统表空间正常情况下只存放了数据字典之类的东西,所以占用的空间一般在500M以下。如果你的系统表空间占用比较多的空间,可能有以下几方面的原因:
1)没有为用户明确指定默认表空间,导致system系统表空间作为用户默认表空间
2)开启了审计,请检查此表的大小AUD$
   
可以运行以下查询来检查一下系统表空间哪些表比较大:
    SQL> select * from (select SEGMENT_NAME,sum(bytes)/1024/1024 sx from dba_segments
                where tablespace_name=‘SYSTEM‘ group by segment_name)
                where sx>100 order by sx desc;

 查看该表纪录数
   select count(*) sum from AUD$;

解决方法大概可分为以下几种:
一、为system表空间另外新增一个数据文件。
     alter tablespace system add datafile ‘D:\oracleXE\oradata\XE\system_01.dbf‘ resize 1024M;

二、更改system表空间的数据文件SYSTEM.dbf分配空间。
  1. alter database datafile ‘D:\oracleXE\oradata\XE\system_01.dbf‘ autoextend on;  
  2. alter database datafile ‘D:\oracleXE\oradata\XE\system_01.dbf‘ resize 1024M;
三、truncate掉AUD$表并关闭审计功能(我是使用的这种,效果立竿见影,不过如果不关闭此功能, 需要定期清理此表):
             SQL> alter system set audit_trail=none scope=spfile;
             SQL>shutdown immediate;
             SQL>startup;
四、将AUD$默认表空间由system移出。 

 

 

 

system表空间空间不足解决办法

标签:format   data-   sql   字典   add   decode   shu   lines   scope   

原文地址:http://www.cnblogs.com/hellojesson/p/6958604.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!