ORA-38901: column “string” of table “string” must be one of the first “string” columns
Cause: Mandatory information column of error logging table is present, but must be at the beginning of the row.
Action: Create the error logging table correctly. Consult ORACLE documentation for the correct format of an error logging table.
ORA-38901错误是由于操作中涉及到的表或列不在指定的第一列中。
ORA-38901: 列”string”表”string”必须是首先”字符串”列中的一个
指定表或查询中用到的列必须在可查询列中,而不能在其他地方。是使用SQL语句错误定义。
此错误一般发生在执行索引操作时。由于表中某个列不在首列中,导致此错误的发生。
1.确定错误涉及的列是哪一个,检查SQL语句中是否正确使用该列;
2.确定指定的表或查询中的列是否正确;
3.正确的使用表或查询中的列;
4.如果使用的是多表查询,请确保多表关联正确。