错误:无法读取关系1663/16384/16564的块4707:成功

时间:2011-08-01 08:13:22

标签: postgresql

我在Glassfishserver上使用psql 8.1.18。我有这样的查询:

select ip,round((select sum(t1.size) from table t1)) 
from table 
where date > '2011.07.29' 
and date < '2011.07.30' 
and ip = '255.255.255.255' 
group by ip;

当我运行此查询时出现此错误:

ERROR:  could not read block 4707 of relation 1663/16384/16564: Success

但是这个查询工作正常:

select ip,round(sum(size)/175) 
from table 
where date > '2011.07.29' 
and l_date < '2011.07.30' 
and ip = '255.255.255.255' 
group by ip;

我认为这可能是数据库错误,我需要从备份中恢复表。但首先我需要了解这些损坏的数据存在的位置。有谁知道如何找到1663/16384/16564关系?还是4707块?

编辑: 我试过这段代码:

select relname , relfilenode from pg_class where  relname in ('1663','16384','16564');

但它返回:

relname | relfilenode 
---------+-------------
(0 rows)

1 个答案:

答案 0 :(得分:10)

看起来表或索引中存在坏块。

要查找错误数据,也许您可​​以查询pg_class视图;

从pg_class中选择oid,relname,其中oid = 1663或oid = 16564;

看看结果是什么!

如果结果是索引,只需重新创建损坏的索引;

如果结果是一个表,则表示该表的某些数据已损坏, 您可以通过传递那些损坏的数据或将参数“zero_damaged_pa​​ges”设置为on 从最近的备份集恢复表!

有关参数“zero_damaged_pa​​ges”的更多信息 http://www.postgresql.org/docs/9.0/static/runtime-config-developer.html