如何从自定义日志提供程序中关闭包开始和包结束?

发布于 2024-12-17 08:52:59 字数 218 浏览 0 评论 0原文

在我的 SSIS 包中,我创建了一个自定义日志提供程序,它将所有日志附加到一个 html 文件中。在日志记录详细信息中,我选择仅记录错误和警告。但是,我也收到了开始和结束包日志条目。这违背了仅在错误发生时才能看到错误的目的。有什么建议吗?

我正在运行 SQL 2008 R2。我在网上读到一篇文章,建议在注册表中进行编辑,但这似乎只关闭了 Windows 事件日志中的开始和结束事件的记录,而不是我的记录。

In my SSIS package, I created a custom log provider that appends all my logs into an html file. In the logging details, i selected ONLY errors and warnings to be logged. However, i am getting the Start and End Package log entries as well. This defeats the purpose of being able to see errors only when they happen. Any suggestions?

I am running SQL 2008 R2. I read an article online that suggests to make an edit in the registry, but this seems to have only turned off logging for Start and End events in the Windows event logs, not in mine.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

千纸鹤带着心事 2024-12-24 08:52:59

另一种选择是您可以将错误记录到 SQL Server 数据库,而不是使用自定义日志提供程序。这样您就可以编写简单的查询来根据您想要查看的内容过滤数据。

An alternate option would be that you can log the errors to SQL Server database instead of using custom log provider. That way you can write simple queries to filter the data based on what you would like to view.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文