Best way of logging in SSIS

本秂侑毒 提交于 2020-01-03 11:01:54

问题


There are 5 different types of logging in SSIS

  1. Event Log
  2. Text File
  3. XML File
  4. SQL Server
  5. SQL Server Profiler

I am in a production environment where developers do not have access to production systems.

Which logging method should be my poison of choice, and why?


回答1:


If you're not going to have access to the production server, then SQL Server logging is your best bet by far. You'll have plenty of ways of viewing the logged information, for example via custom SSRS reports or web pages, or direct access to the tables if your DBA allows it. Also, the logs will be easier to search and filter when in a table.




回答2:


Personally I prefer logging to SQL Server.

I think this is because it puts the data in a form which I can immediately access and process. For example, I can then slice and dice the data, export it to another server, setup agent jobs to monitor the logs and email alerts etc.




回答3:


Have you looked at BI xPress from Pragmaticworks. They have serious auditing feature for SSIS

SSIS Logging And Auditing, Notification, Deployment using BI xPress



来源:https://stackoverflow.com/questions/1197646/best-way-of-logging-in-ssis

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!