简体   繁体   English

将所有活动从一条记录移动到另一条记录,SSIS 或 C#?

[英]Moving all activities from one record to another, SSIS or C#?

We've recently installed Field Service on to our CRM.我们最近在我们的 CRM 上安装了 Field Service。 This means we are now using Service Accounts(Accounts) and prior to this we used a Custom entity.这意味着我们现在使用服务帐户(帐户),在此之前我们使用自定义实体。 I want to move all activities over from this Custom entity to the new Service Account.我想将所有活动从这个自定义实体转移到新的服务帐户。 What's going to be the best way to do this?最好的方法是什么? SSIS or writing a C# Console App perhaps? SSIS 或编写 C# 控制台应用程序?

Many thanks, Christopher.非常感谢,克里斯托弗。

This question is generic and subjective.这个问题是笼统的和主观的。 Let me try to add my 2 cents.让我试着加上我的 2 美分。 There might be someone with more expreice who can add more details to your questions.可能会有更有经验的人可以为您的问题添加更多详细信息。

You asked specifically for 2 options您专门要求 2 个选项

  1. SSIS: Do you have license for any of SSIS product. SSIS:您是否拥有任何 SSIS 产品的许可证。 If yes I would prefer this option.如果是,我更喜欢这个选项。 Reason: You will have connections already available and most of the SSIS products have drag and drop flows which will perform most of the generic logic.原因:您将有可用的连接,并且大多数 SSIS 产品具有拖放流程,可以执行大部分通用逻辑。 I have some experice with Scribe and I found it easy to use and faster to perform CURD operation.我对 Scribe 有一些经验,我发现它易于使用且执行 CURD 操作的速度更快。
  2. C# Console APP: I do code most of my time and I am quite comfortable with C# code. C# 控制台应用程序:我大部分时间都在编写代码,我对 C# 代码非常满意。 Here the main drawback is you have to write most of the code may it be from connection to Dynamics to get records, perform all the CURD operation and write few lines of code.这里的主要缺点是您必须编写大部分代码,可能是从连接到 Dynamics 以获取记录、执行所有 CURD 操作并编写几行代码。 The more line of code the more chances of making mistake.代码行越多,出错的机会就越大。 It takes also some time to write code and test it.编写代码和测试它也需要一些时间。 But main advantage is you have all the control and can perform most of the operations as you want.但主要优点是您拥有所有控制权,并且可以根据需要执行大部分操作。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 c#在UWP中将数据从一个xaml移到另一个xaml - c# Moving data from one xaml to another xaml in UWP C#将一个记录从一个字典复制到另一个 - C# Copy one record from one dictionary to another 将文件夹从一个目录移动到另一个目录。 在C#中 - Moving a folder, from one directory to another. in c# C#GDI将椭圆从一个点移动到另一个点再返回 - C# GDI Moving an ellipse from one point to another and back 将文件从一个文件夹移动到另一个文件夹 - Moving files from one folder to another C# C#将日期时间选择器从Winform移到另一个 - C# moving a datetimepicker from a winform to another 如何从Gridview中更新SQL中的数据,从ASP中的一行移动到另一行,C# - how to update data in SQL from Gridview moving from one Row to another in ASP,C# C#并非所有数据都从一种形式传递到另一种形式 - C# Not all data passes from one Form to another 使用C#将文档库项目从一个文件夹移动到另一个文件夹,包括版本历史记录 - Moving a document library item from one folder to another including version history using c# 实体框架C#-将数据从一个数据库移动到结构相似的另一个数据库 - Entity Framework C# - Moving data from one database to another with similar structure
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM