我正在使用visual-studio-2015创建针对sql-server-2012的ssis软件包。我正在使用KingswaySoft连接到dynamics-crm以读取和更新一些数据。从Visual Studio运行程序包时,程序包可以正确运行。但是,当我将该程序包部署到服务器时,该程序包不再成功运行。我收到多个错误,第一个错误是:
为连接管理器“ Dynamics CRM Connection Manager”指定的连接类型“ DynamicsCRM”无法识别为有效的连接管理器类型。
为什么我会收到此错误,为什么只在部署软件包后才显示此错误?
我尝试重新启动服务器上的Integration Services。
我检查了服务器上的许可证,我注意到尽管我拥有KingswaySoft的终极版,但其中一个许可证管理器没有许可证,并且不会接受我的许可证密钥。也许这是许可问题?
我需要通过kingswaysoft使用SSIS更新CRM中的修改、创建、修改。是否可以?因为现在 kingswaysoft 没有显示这些用于映射的字段。
Kingwaysoft中是否存在一些元数据字段返回的错误null?我有一个大型项目,正在下载所有帐户字段和元数据,除了owneridtype其他几个以外,它们都可以工作。像这样的字段customertypecodename都很好,并且我已经验证了它owneridtype与所有其他字段的映射相同。我的来源是fetchxml查询。
我看到这些帐户字段以及实体regardingobjecttypecode上的问题activitypointer:
owneridtype
donotsendmarketingmaterialname
isprivatename
masteraccountidname
owneridtype
这是我的查询,减去自定义字段。如果需要,我可以添加它们。
<fetch mapping='logical'>
<entity name='account'>
<attribute name='accountcategorycode'/>
<attribute name='accountcategorycodename'/>
<attribute name='accountclassificationcode'/>
<attribute name='accountclassificationcodename'/>
<attribute name='accountid'/>
<attribute name='accountnumber'/>
<attribute name='accountratingcode'/>
<attribute name='accountratingcodename'/>
<attribute name='address1_addressid'/>
<attribute name='address1_addresstypecode'/>
<attribute name='address1_addresstypecodename'/>
<attribute name='address1_city'/>
<attribute name='address1_composite'/>
<attribute name='address1_country'/>
<attribute name='address1_county'/>
<attribute name='address1_fax'/>
<attribute name='address1_freighttermscode'/>
<attribute name='address1_freighttermscodename'/>
<attribute name='address1_latitude'/>
<attribute name='address1_line1'/>
<attribute name='address1_line2'/>
<attribute name='address1_line3'/>
<attribute name='address1_longitude'/>
<attribute name='address1_name'/>
<attribute name='address1_postalcode'/>
<attribute name='address1_postofficebox'/>
<attribute name='address1_primarycontactname'/>
<attribute name='address1_shippingmethodcode'/> …Run Code Online (Sandbox Code Playgroud) 我正在尝试在两个CRM数据库之间迁移数据(动态365),但是在kingswasoft中,每批数量限制为5000.任何人都可以建议一种方法,我可以发送n条记录?