如何从 C# 中加载的 SSIS 包捕获事件?
我有一个执行多项任务的 SSIS 包。 我在 Business Intelligence Studio 2005 中手动添加了 OnExecStatusChanged 事件的包级别的事件处理程序。
我的问题是,如何在 C# 中添加此事件的处理程序? 我已按照此处的指示加载了包 我还创建了一个继承自 Microsoft.SqlServer.Dts.Runtime.DefaultEvents 的自定义类,它是我的“监听器”:
Microsoft.SqlServer.Dts.Runtime.SqlPackageEventListener sqlListener = new SqlPackageEventListener();
Microsoft.SqlServer.Dts.Runtime.Application sqlPackageLoader = new Application();
Microsoft.SqlServer.Dts.Runtime.Package sqlPackage = sqlPackageLoader.LoadPackage(@"path\MigrateData.dtsx", sqlListener);
sqlPackage.Execute(null, null, sqlListener, null, null);
如果我检查 sqlPackage.EventHandlers.Count 属性,我会得到在商业智能中添加的处理程序的正确编号工作室。
有没有办法在 C# 中处理这些事件?
谢谢。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,我没有找到任何东西,所以我想出了一个解决方法,这样我就会自动回复我:
由于没有办法直接捕获 SSIS 包生成的事件,所以我在 listener:
因此“技巧”是将委托添加到“Listener”对象您将其传递给 Package 对象的 LoadPackage 方法,这样,我们就可以访问侦听器内的“OnError”重写并引发事件。 正如您所看到的,我实现了自己的 EventArguments 类,因此我们可以将重要数据传递给处理程序代码,并查看正在运行的包或从 DefaultEvents 继承时重写方法可以获得的任何其他信息。
当然,我在这里只实现了 OnError,您可以实现 SQL Server 支持的任何其他您喜欢的处理程序,并且可以覆盖它,因为这是我们引发事件的范围。
这样我就可以创建我的 SqlPackageEventListener 对象并使用 sqlListener_OnPackageError 方法处理它的“OnPackageError”事件,并在 SSIS 包的执行导致任何错误时执行我需要的操作。
Well I did not find anything so I came up with a work around so I will auto-respond to me:
Since there is no way to directly catch the events that the SSIS package make then I implemented my own events inside my listener:
So the "trick" is to add a delegate to your "Listener" object that you pass to the LoadPackage method of the Package object, that way, we can access the "OnError" override inside the listener and raise the event. As you can see I implemented my own EventArguments class so we can pass important data to our handler code and see what package is running or any other information that you can get from overriding the methods when you inherit from DefaultEvents.
Of course I only implemented OnError here, you can implement any other handler you like that is supported by SQL Server and that can be overrided since that is the scope where we raise the event.
That way I can create my SqlPackageEventListener object and handle it's "OnPackageError" event with the sqlListener_OnPackageError method and do whatever I need in case of any error that the execution of the SSIS package caused.