In Windows 7 I want to schedule the execution of some DTSX packages. What I've done is to make a CMD file for each DTSX package, and schedule them with Windows Scheduler.
Starting from this article, I write the following code for my CMD files:
@ECHO ON
"C:\Program Files\Microsoft SQL Server\90\DTS\Binn\DTExec.exe" /FILE "C:\MyPath\MyPackage.dtsx" /REP P > "C:\MyPath\MyPackage.txt"
the problem is that in the log saved to the file C:\MyPath\MyPackage.txt
I can see only the progress of Data Flow tasks.
How can I write the progress of all the flow items (for example "Script Tasks", "Execute SQL tasks", ...).