在 informix 中更新行时如何修复错误 -245
How to fix error -245 while updating row in informix
-245 无法通过索引在文件中定位。
当我想更新 table 中的一行时出现此错误。
table 上有 8 个索引,table 有大约 30000 行。
这是此错误的完整描述
The database server encountered an error when it attempted to look up
a row through an index. Check the accompanying ISAM error code for
more information. The table file or the index file might have been
corrupted. Unless the ISAM error code or an operating-system message
points to another cause, run the oncheck utility (secheck with IBM
Informix SE or tbcheck with IBM Informix OnLine) to check and repair
table and index.
我们需要 ISAM 错误才能正确回答这个问题。
通常这是由于锁定、查看应用程序锁定策略和隔离级别以及 DML 的访问计划。
-245 无法通过索引在文件中定位。
当我想更新 table 中的一行时出现此错误。 table 上有 8 个索引,table 有大约 30000 行。
这是此错误的完整描述
The database server encountered an error when it attempted to look up a row through an index. Check the accompanying ISAM error code for more information. The table file or the index file might have been corrupted. Unless the ISAM error code or an operating-system message points to another cause, run the oncheck utility (secheck with IBM Informix SE or tbcheck with IBM Informix OnLine) to check and repair table and index.
我们需要 ISAM 错误才能正确回答这个问题。
通常这是由于锁定、查看应用程序锁定策略和隔离级别以及 DML 的访问计划。