Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

logging dts steps and results

Status
Not open for further replies.

OhioSteve

MIS
Mar 12, 2002
1,352
0
0
US
Okay, I have developed the most brilliant dts package in the history of the universe. It will run each day, and my users will rejoice.

I want to see how each step executes on each day. It would be nice to store this information in a text file or in a db table. For example, an entry might read "step 16 complete. tableA contains 100 records".

Does dts include anything like that already? I don't want to reinvent the wheel.
 
You can turn on Package Logging, right click the dts window and go to properties and enable package logging but it doesn't contain this level of detail.

Package logs will tell you what steps started, completed and their run-time, I belive.

To do this, to the level of granularity you describe, you would have to have each task log itself to a table using T-SQL upon completion and then create the text file, thus, re-inventing the wheel. Have fun Mr. Goodyear... :)

Andy
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top