Skip to main content
Solved

"Column name....not match table definition" error when generating definition

  • March 23, 2022
  • 2 replies
  • 46 views

MtHoen
Apprentice

Hi,

I’m currently getting the following error on generation step “Execute: create_log_tables” in the Generate Definition step of my creation:
 

Error message
Error line


I don't know what could have caused this, is anyone able to give me a suggestion as to how to solve this?

Thanks in advance.

Best answer by Mark Jongeling

Hi,

The procedure 'create_log_tables’ (presumably a Dynamic model procedure) is doing an insert on the Ref table but is missing a column or a value. To solve this, make sure to list the columns you would like to Insert into and match the number of values with the number of columns😁

This topic has been closed for replies.

2 replies

Mark Jongeling
Administrator
Forum|alt.badge.img+23
  • Administrator
  • Answer
  • March 23, 2022

Hi,

The procedure 'create_log_tables’ (presumably a Dynamic model procedure) is doing an insert on the Ref table but is missing a column or a value. To solve this, make sure to list the columns you would like to Insert into and match the number of values with the number of columns😁


MtHoen
Apprentice
  • Author
  • March 23, 2022

Thanks a million, @Mark Jongeling , I wasn't aware of any changes made in our dynamic model, and didn't think to check there. Thank you!