救急啊,朋友们,表空间不能扩展了?

[复制链接]
查看11 | 回复9 | 2013-7-18 13:55:12 | 显示全部楼层 |阅读模式
ORA-1691: unable to extend lobsegment pacs.SYS_LOB0000187046C00002$$ by 128 in tablespace
pacsLOB
表空间是自动扩展的,为什么会出这样的问题呢?请高手解释解释
在线等
回复

使用道具 举报

千问 | 2013-7-18 13:55:12 | 显示全部楼层
表空间是自动扩展的?
回复

使用道具 举报

千问 | 2013-7-18 13:55:12 | 显示全部楼层
去查看下当前的物理空间够没?
回复

使用道具 举报

千问 | 2013-7-18 13:55:12 | 显示全部楼层
df -h
看看是不是文件系统满了.
回复

使用道具 举报

千问 | 2013-7-18 13:55:12 | 显示全部楼层
原帖由 zhu_124 于 2009-8-12 10:27 发表
去查看下当前的物理空间够没?

物理空间还有很多啊。
回复

使用道具 举报

千问 | 2013-7-18 13:55:12 | 显示全部楼层
表空间打到上限了吧?
回复

使用道具 举报

千问 | 2013-7-18 13:55:12 | 显示全部楼层
看看maxsize
回复

使用道具 举报

千问 | 2013-7-18 13:55:12 | 显示全部楼层
原帖由 ysping 于 2009-8-12 10:32 发表
表空间打到上限了吧?

朋友,你能否给我详细说说,个人觉着你的考虑是对的,具体该如何查啊
回复

使用道具 举报

千问 | 2013-7-18 13:55:12 | 显示全部楼层
set pagesize 200
column "表空间名称" format a18
column "占用率(%)" format a12
column "容量(M)" format a12
column "空闲(M)" format a12
column "使用(M)" format a12
column "最大容量(M)" format a15
column "可扩充容量(M)" format a15
column "采样时间" format a20
select a.tablespace_name "表空间名称",
to_char(100-round((nvl(b.bytes_free,0)/a.bytes_alloc)*100,2)) "占用率(%)",
to_char(round(a.bytes_alloc/1024/1024,2)) "容量(M)",
to_char(round(nvl(b.bytes_free,0)/1024/1024,2)) "空闲(M)",
to_char(round((a.bytes_alloc-nvl(b.bytes_free,0))/1024/1024,2)) "使用(M)",
to_char(round(maxbytes/1024/1024,2)) "最大容量(M)",
to_char(round(maxbytes/1024/1024,2)-a.bytes_alloc/1024/1024) "可扩充容量(M)",
to_char(sysdate,'yyyy-mm-dd hh24:mi:ss') "采样时间"
from (select f.tablespace_name,
sum(f.bytes) bytes_alloc,
sum(decode(f.autoextensible,'YES',f.maxbytes,'NO',f.bytes)) maxbytes
from dba_data_files f
group by tablespace_name) a,
(select f.tablespace_name,
sum(f.bytes) bytes_free
from dba_free_space f
group by tablespace_name) b
where a.tablespace_name = b.tablespace_name
order by to_number("可扩充容量(M)") asc;
结果贴出来
回复

使用道具 举报

千问 | 2013-7-18 13:55:12 | 显示全部楼层
达到操作系统对单个文件大小的上限了吧?
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

主题

0

回帖

4882万

积分

论坛元老

Rank: 8Rank: 8

积分
48824836
热门排行