美文网首页
ORA-01187: cannot read from file

ORA-01187: cannot read from file

作者: Reiko士兵 | 来源:发表于2020-02-07 11:40 被阅读0次

ogg进程无法启动,查看$OGG_HOME/dirrpt目录下进程的日志,发现如下错误。

2016-10-14 08:35:14  ERROR   OGG-00664  Oracle GoldenGate Capture for Oracle, Capture1.prm:  OCI Error creating temporary LOB to retrieve default LOB chunk size (status= 1187-ORA-01187: cannot read from file  because it failed verification tests
ORA-01110: data file 2514:  ‘/u01/oracle/oratemp/fs01/temp1_07.dbf’).

解决方案

1. drop掉报错的临时文件
alter database tempfile ‘/u01/oracle/oratemp/fs01/temp1_07.dbf’ drop;
2. 添加新的临时文件
alter tablespace temp1 add tempfile ‘/u01/oracle/oratemp/fs01/temp1_07.dbf’ size 10G reuse;

这里的临时表空间temp1以及文件大小请根据自己的实际情况做调整,然后ggsci重新拉起ogg进程就好。

相关文章

网友评论

      本文标题:ORA-01187: cannot read from file

      本文链接:https://www.haomeiwen.com/subject/cakmxhtx.html