Hello CCBSMF,
I suspect that the reason your query is failing on rows 4 and 7 is that in both of those rows (and only these rows), the prd_vndr_part_desc field contains a line break.
I'm not completely sure why this is causing an issue and am unable to reproduce this error myself, but that seems like the most likely culprit.
If it's not important to preserve these line breaks, what I would suggest doing is using the normalize-space() function to turn these line breaks into single spaces when you build the SQL command:
concat("ExecuteSqlQuery /dsname=insert /sql=set implicit_transactions off INSERT INTO [table] (column) VALUES('", normalize-space(field), "' , '", normalize-space(otherField), "')")
If there is a need to preserve the line breaks, I'm sure there is a way to make it work, but it will most likely be considerably trickier.
In any case please try the approach above and let us know if it makes any difference.