Sales Automation Blog



             


Wednesday, March 12, 2008

Microsoft CRM Integration: Siebel Email Attachments Import - C# and MS Transact SQL example

Microsoft CRM CRM answer from Microsoft Business Solutions has aggressive pricing, going down and making it affordable for small companies. We see cases when Microsoft CRM replaces such traditional CRM systems as Siebel. It is not necessary, that clients decided to replace it themselves they may be victims of their systems the example: Great Plains had alliance with Siebel several years ago and we saw multiple clients with Great Plains Siebel tandem. Now Great Plains integrates with MS CRM.

This article is for programmer, who needs data to be migrated from Siebel or other CRM to MS CRM.

Todays topic is Siebel emails, stored in the files, import into MS CRM database. Each message exists in the form of separate file in the import directory. We will use custom SQL table, created in MS SQL Server 2000:


if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[CrmAttachImporter]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)drop table [dbo].[CrmAttachImporter]GO#BREAK#

Labels: , , , ,