I want to create a log file in SSIS. I know how to create through management studio, but I wanted to run my SSIS package through Command Prompt.
Can you help me find the Windows commands for that?
I want to create a log file in SSIS. I know how to create
Share
You need to set up the a new connection string inside of Business Intelligence Development Studio (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
instead of
we cant specify a direct path after DTS.LogProviderTextFile…because of that only i got error…
Thank you very much for the suggestions…