我在服务器上安装了Oracle数据库10G,System.DBF文件tablepse中的DBF文件非常快速地填充

发布于 2025-02-13 19:20:44 字数 248 浏览 0 评论 0原文

我在服务器上安装了一个Oracle数据库10G,迟到了,系统表空间中的 system.dbf 文件非常快速地填充。 System01.dbf文件在10年内完全填充(32GB尺寸),然后今年5月,我们创建了System02.DBF文件,但它填充得如此之快,并且在3个月内已满。现在,我们创建了另一个System03.DBF文件,并且每天都填充了几乎1GB的空间。这样,我将在几天之内用完空间。任何帮助将不胜感激。我真的是Oracle数据库管理的新手。

I have an Oracle database 10g installed on my server, off late, the system.dbf file in the SYSTEM tablespace is filling up very quicky. System01.dbf file filled up (32Gb size) completely in 10 years, then this year on May, we created system02.dbf file but it filled up so fast and it is full within 3 months. Now we created another system03.dbf file and everyday it fills up almost 1GB of space. This way I will run out of space within a few days. Any help will be appreciated. I am really new to Oracle database administration.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

荒芜了季节 2025-02-20 19:20:45

您可以在表空间“系统”中检查对象。
例如,tableSpace_name ='System'中的SQL前10个大对象

select * from (select owner,
                      segment_name, 
                      segment_type, 
                      bytes/1024/1024 mb 
                 from dba_segments 
                where tablespace_name='SYSTEM'
                order by bytes/1024/1024 desc) 
 where rownum <= 10;

You can check objects inside tablespace 'SYSTEM'.
For example SQL Top 10 large objects in tablespace_name='SYSTEM'

select * from (select owner,
                      segment_name, 
                      segment_type, 
                      bytes/1024/1024 mb 
                 from dba_segments 
                where tablespace_name='SYSTEM'
                order by bytes/1024/1024 desc) 
 where rownum <= 10;
浮华 2025-02-20 19:20:45

由于我们不需要,我们已经停止了审核步道。没有进一步的空间。感谢大家。

we have stopped the audit trail as we do not need it. There are no further filling up of space. Thanks to all of you.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文