I modified my row to use names that exactly match my schema.
The schema matches the table and is defined like this :
protected override void PrepareSchema()
{
Schema["Customer_ID"] = typeof(string);
Schema["Data_Source"] = typeof(string);
Schema["First_Name"] = typeof(string);
Schema["MI"] = typeof(string);
Schema["Last_Name"] = typeof(string);
Schema["Address1"] = typeof(string);
Schema["Address2"] = typeof(string);
...
}
ctor is
public InsertCustomerBulkOperation( string
configStringName ):base(configStringName,"dbo.Cust_Master")
If I register the OnFinishedProcessing event, the statistics indicate
0 rows ( and db concurs). The OnRowProcessed never occurs.
GetAllErrors has none.
The schema is easy, all fields are varchar() except 2 dates, which are
reflected in the schema and row;
The PK is Customer_Id + Data_Source. These are in the row and are
unique.
The table was truncated before load.
Any ideas here? How can I troubleshoot this?
Thanks again.
--
You received this message because you are subscribed to the Google Groups
"Rhino Tools Dev" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/rhino-tools-dev?hl=en.