ORA-26018: Column string in table string does not exist ORACLE 报错 故障修复 远程处理
文档解释
ORA-26018: Column string in table string does not exist
Cause: Column specified in the loader control file does not exist.
Action: Make sure the column exists and that you have privileges on it. Correct the loader control file if it is wrong.
ORA-26018:表明该表中不存在指定的列。
官方解释
ORA-26018: column string in table string does not exist
Cause: The column of the specified table does not exist.
Action:Specify the correct column name.
常见原因:
1、程序编写出错,导致引用了不存在的列。
2、由于删除或者修改某些表时,出现了「列不存在」的错误。
3、通过sqlloder,table中多了某些字段,就可能出现这种错误。
一般处理方法及步骤
1、请检查程序中是否引用了不存在的列。
2、检查相关的操作,查看字段是否存在。
3、检查sqlloder中对应的字段是否正确对应表中字段。