Hi there,
I have a migrated job from DW9 to 10. When I run the job directly, it succeeds. However, when ran from a scheduled task using "Import data with custom request" add-in it fails with the following:
2025-09-23 14:48:37.4798|DataIntegration|INFORMATION|reading configuration
2025-09-23 14:48:40.0524|DataIntegration|ERROR|Source table(EcomProducts) has column mappings: ProductVariantCounter that does not exists in the schema
2025-09-23 14:48:40.0527|DataIntegration|ERROR|Source table(EcomProducts) has column mappings: ProductVariantCounter that does not exists in the schema
2025-09-23 14:48:40.0535|DataIntegration|ERROR|Job failed.
My job does not map this column directly, so I am not sure what this error means. I tried refreshing the schema and then looked in the job's XML. The only reference to ProductVariantCounter is this:
<column type="Dynamicweb.DataIntegration.ProviderHelpers.SqlColumn" columnType="Dynamicweb.DataIntegration.ProviderHelpers.SqlColumn"> <name>ProductVariantCounter</name> <type>System.Int32</type> <isNew>False</isNew> <limit>0</limit> <isIdentity>False</isIdentity> <sqlDbType>Int</sqlDbType> <isPrimaryKey>False</isPrimaryKey> </column>
Any idea what I can do about this? Could it be a schema cache? I am not using central schema management yet. Should I?
Imar