In attempting to import an excel sheet with contact data using the DTS, The OCS_ID field is raising a number of problems. The columns in the excel sheet have been named after the fields in the .CONTACTS table for easy mapping. There is no mapping for the OCS_ID field. When I attempt to do nothing with the OCS_ID field, I get the following error:
"Error at Destination for Row number 1. Errors encountered so far in this task: 1.
Insert error, column 1 ('OCS_ID',DBTYPE_GUID), status 10: Integrity violation; attempt to insert NULL data or data which violates constraints.
Unspecified error
"OK"
I have tried performing several transformations, generally in the form
Function Main()
Declare myID as uniqueidentifier
set myID = NEWID()
Destination('OCS_ID') = myID
{followed by the automatically generated destination=source statements.
Do you have any hints or tips, how I can get the contact information imported?