May 26, 2010 at 7:25 pm
I have an Execute Process Task within a Foreach Loop Container. The container has a Foreach ADO Enumerator that contains the output file list. In the Execute Process Task in the container, I want to essentially run the following:
wzzip.exe E:\Test_Output_Files\ABC\123\C2A255IN.zip E:\Test_Output_Files\ABC\123\C2A255IN.csv
Should the zipped file and original file names be part of the Arguments section? If not, where do they go? And where might I put the variable that represents the current item from the ADO Enumerator value?
May 26, 2010 at 10:11 pm
For the command line you might reference:
Within the F-E-L I would probably add a script task to actually do the calling. I don't like the Execute Process component very much. Within that script component I would build out the whole command line and then call it.
CEWII
May 27, 2010 at 5:49 pm
What is a good way to learn about the SSIS 2005 Script Task and scripting in general?
May 28, 2010 at 7:37 am
imani_technology (5/27/2010)
What is a good way to learn about the SSIS 2005 Script Task and scripting in general?
In a broader sense, it uses VB.NET, so becoming familiar with the .NET framework and VB syntax is necessary. I have found the Wrox book "Professional SQL Server 2005 Integration Services" by Brian Knight, et al to be very useful, along with BOL and forums like this one.
May 28, 2010 at 7:58 am
I would tend to agree. learning at least a little vb.net or c# is required, and most of that will be usuable in the Script Task.
CEWII
May 28, 2010 at 4:10 pm
Good advice! I have "Professional SQL Server 2005 Integration Services" and hope to look into some VB.Net books.
Viewing 6 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply