Error 109
Severity Level 15
Message Text
There are more columns in the INSERT statement than values specified in the VALUES clause. The number of values in the VALUES clause must match the number of columns specified in the INSERT statement.
Explanation
This error occurs when more columns are listed in the INSERT statement than values specified in the VALUES clause. The number of values in the VALUES clause must match the number of columns specified in the INSERT statement.
Do not confuse error 109 with operating-system error 109. Operating-system error 109 means that a named pipe connection has been terminated.
Action
Rewrite the INSERT statement, ensuring that the number of columns specified matches the number of columns in the VALUES clause. For example:
INSERT t1 (col1,col2,col3) VALUES (val1,val2,val3)