views:

730

answers:

1

Hi anyone can suggest best Zip/Unzip Task for SSIS. We want to zip several GB files.

I just found a product called TaskFactory looks very promising but wondering if anyone used it http://www.pragmaticworks.com/Products/Business-Intelligence/Taskfactory

Thanks

+1  A: 

You could use a script task to and use .NET to zip files within the control flow of your package. You can use the built in class gzip (gzip) or you can use this free class library from codeplex which I heard works well called dotnetzip (dotnetzip)

rfonn
I don't know taskFactory. I do know that a number of people use DotNetZip within SSIS packages.
Cheeso