Hi.
I have a VB.Net app that imports data from one database into another. Some data alterations a re performed during the import. What i am doig is this:
1. Fill a table with data from source using tableadapter_source.fillby method
2. Iterate through each row in the source table, make some changes and then insert the row into the destination table using table_destination.rows.add method.
3. Save changes to destination table using tableadapter_destination.update method.
When i perform the update i receive the following error:
conversion failed when converting the varchar value '0.0165000' to data type int.
I am trying to find the source of this error. The value '0.0165000' is never even loaded into the source table and when i look at the destination table prior to updating the value isn't in there either.
Is there any way that i can see the actual row that is failing during the update as opposed to a general error statement about the entire update process.
Thanks for the help.
I have a VB.Net app that imports data from one database into another. Some data alterations a re performed during the import. What i am doig is this:
1. Fill a table with data from source using tableadapter_source.fillby method
2. Iterate through each row in the source table, make some changes and then insert the row into the destination table using table_destination.rows.add method.
3. Save changes to destination table using tableadapter_destination.update method.
When i perform the update i receive the following error:
conversion failed when converting the varchar value '0.0165000' to data type int.
I am trying to find the source of this error. The value '0.0165000' is never even loaded into the source table and when i look at the destination table prior to updating the value isn't in there either.
Is there any way that i can see the actual row that is failing during the update as opposed to a general error statement about the entire update process.
Thanks for the help.