ORA-01747: invalid user.table.column, table.column, or column specification

前端 未结 11 2445
旧巷少年郎
旧巷少年郎 2021-01-04 01:27

Get the above error when the execute immediate is called in a loop

Update CustomersPriceGroups set  1AO00=:disc  Where cuno=:cuno
    Parameters:   disc=66 c         


        
11条回答
  •  感情败类
    2021-01-04 02:30

    For me, the issue was due to use to column name "CLUSTER" which is a reserved word in Oracle. I was trying to insert into the column. Renaming the column fixed my issue.

    insert into table (JOB_NAME, VERSION, CLUSTER, REPO, CREATE_TS) VALUES ('abc', 169, 'abc.war', '1.3', 'test.com', 'test', '26-Aug-19 04.27.09.000000949 PM')
    Error at Command Line : 1 Column : 83
    Error report -
    SQL Error: ORA-01747: invalid user.table.column, table.column, or column specification
    

提交回复
热议问题