> Isn't there a way to interface to CRM from SSIS? Has anyone written
> an SSIS CRM destination object?
>
> "Alex" wrote:
>
>> Hello Allan,
>>
>> it just tryes to load NULL in the leadid field because the field
>> leadid it has the identity property set (in the database CRM of SQL
>> Server) to No
>>
>> this property is disabled in the database for the security of CRM, so
>> you can't change the identity to Yes in a directly way,
>>
>> so we have choised to forget the DTS SSIS way, because it seems so
>> complicated to get it work completly,
>>
>> we'll keep loading CRM data with web services of the CRM SDK,
>> although is slower in their execution,
>>
>> thanks for your help,
>>
>> Alex
>>
>> "Allan Mitchell" <allan@no-spam.sqldts.com> escribió en el mensaje
>> news:b067a62514fe8c944474e19ac5c@news.microsoft.com...
>>
>>> Hello Alex,
>>>
>>> In the LeadBase table it sounds as though it will not allow NULLs
>>> and you are trying to load it with NULLs. Is this the case? Use a
>>> Data Viewer to find out what the data looks like before insertion
>>>
>>> --
>>>
>>> Allan Mitchell
>>>
http://wiki.sqlis.com |
http://www.sqlis.com |
http://www.sqldts.com >>> |
>>>
http://www.konesans.com >>>> Hello,
>>>>
>>>> we need to execute a DTS in SQL Server 2005 that allows to migrate
>>>> data from Excel to the entity lead by CRM 3.0
>>>>
>>>> there are a lot of records and columns so we don't want to use web
>>>> services,
>>>>
>>>> i have done 2 ssis dts with the purpose to insert records filling
>>>> firstname and lastname to lead entity,
>>>>
>>>> First Option LeadBase table
>>>>
>>>> i have created a DTS that access directly with the LeadBase table
>>>> but when i execute the DTS i got an error that says leadid can't be
>>>> filled with NULL
>>>>
>>>> Second Option Lead View
>>>>
>>>> i have created a DTS that access directly with the Lead view but
>>>> when i execute the DTS i got an error that says the view is not
>>>> updatable because affects to other base tables and gets in conflict
>>>> with the SystemUserBase,
>>>>
>>>> What can I do?
>>>>
>>>> Alex
>>>>