ORA-02031: no ROWID for fixed tables or for external-organized tables
Cause: An attempt is being made to access rowid from a fixed table or from a external-organized table.
Action: Do not access ROWID from a fixed table or from a external-organized table.
?
ORA-02031错误是由于ORACLE发现无法为固定表或外部组织表生成ROWID时引发的。
(1)为该表添加可以作为唯一ROWID的字段。
(2)尽量使用索引字段去查询该表数据。
(3)尝试使用替代方案来实现与ROWID相同的功能,比如ROWNUM。