Article ID: 316043 - Last Review: January 12, 2004 - Revision: 3.5 HOW TO: Log Data Transformation Services Package Execution to a Text FileThis article was previously published under Q316043 On This PageSUMMARY
SQL Server can log information about package execution and the detailed step level execution in a package to a text file. You can use the text log file to troubleshoot both package level and step level errors. This article describes how you enable logging to a text file. SQL Server 2000 Steps to Enable Logging to a Text File
SQL Server 7.0 Steps to Enable Logging to a Text File
TroubleshootingThe path specified for the error log file must exist and the proper permissions to the folder, the drive, and path must be set to make sure that the error log file is written. The permissions you must have are dependent on where the DTS package executes. For additional information about permissions related to DTS packages, click the article number below to view the article in the Microsoft Knowledge Base:269074
(http://support.microsoft.com/kb/269074/EN-US/
)
INF: How to Run a DTS Package as a Scheduled Job
The error log file is appended to each time the DTS package runs. The error file will include each step even if the step is not run. This is different from logging to SQL Server, which does not insert a row into the sysdtssteplog system table if the step does not run.
You can use the error log to learn which step stopped responding and why it stopped responding.
REFERENCES
SQL Server Books Online; topics: "DTS Package Properties (Logging Tab)";
"Using DTS Package Logs" | Article Translations
|
Back to the top
