vote up 0 vote down star

Hi

I want to create a Log file in SSIS... I know hoe to create through management studio.but i wanted to run my SSIS package through Command Prompt... can you help me to get the DOS commands for that?

flag

3 Answers

vote up 2 vote down

You can use the /L option, as documented here; however, you can also set Logging up in a much easier and finer way through the SSIS>Logging menu in Visual Studio.

Cheers,
Eric

link|flag
yes i used dtexec /f "C:\\Package.dtsx" /l "DTS.LogProviderTextFile;D:\Sample_Examples\Log.log" like this... but i am getting two errors like 1. The connection "D:\Sample_Examples\Log.log" is not found. This error is thrown by connections collection when the specific connection element is not found 2. connection manager is nt found any idea on this? – sona Apr 30 at 6:45
vote up 2 vote down

In your SSIS you need to create and configure an SSIS Log provider before you can use it. Look into link text for more info.

link|flag
Yes i have check the link but in that they are explaining how to enable Logging thorugh BIDS... I wanted to create the Logging using DOS commands... any idea on this? – sona May 4 at 5:57
vote up 0 vote down check

You need to set up the a new connection string inside of BIDS. where you have to specify the path of Log file...i mean here path will be D:\Sample_Examples\Log.log... and name of the connection manager will be Log.log so now the command prompt will get changed into dtexec /f "C:\Package.dtsx" /l "DTS.LogProviderTextFile";"Log.log" instead of dtexec /f "C:\Package.dtsx" /l "DTS.LogProviderTextFile;D:\Sample_Examples\Log.log" we cant specify a direct path after DTS.LogProviderTextFile...because of that only i got error...

Thank you very much for the suggestions...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.