Viewing 8 posts - 1 through 8 (of 8 total)
Synergyx,
Use this in SQL 2008:
Imports System
Imports System.Data
Imports System.Math
Imports Microsoft.SqlServer.Dts.Runtime
<System.AddIn.AddIn("ScriptMain", Version:="1.0", Publisher:="", Description:="")> _
<System.CLSCompliantAttribute(False)> _
Partial Public Class ScriptMain
Inherits Microsoft.SqlServer.Dts.Tasks.ScriptTask.VSTARTScriptObjectModelBase
End Class
Enum ScriptResults
Success = Microsoft.SqlServer.Dts.Runtime.DTSExecResult.Success
...
January 15, 2010 at 6:05 am
SSC-Enthusiastic ,
I actually used the WInZip command line tool to do the zipping. I used a Foreach Loop Container to list all the files in a folder, with a VB...
January 8, 2010 at 6:28 am
justpiyushmittal-1127780, check out this link also. It has some useful tips.
January 4, 2010 at 12:04 pm
Add a switch to your execute command to run the zipping in the background.
Sandor
January 4, 2010 at 11:57 am
If you run it from the file, you have to make sure that your SQLServerAgent account has permission to the path containing the package. Also this user account has to...
January 4, 2010 at 11:13 am
Did you save a copy to the server or are you running it from file? Do you have a proxy account set up to execute the package? Do you use...
January 4, 2010 at 8:01 am
First of all, nice article.
I worked on a similar project before, and I also used an Execute Process task with WinZip to handle the zipping part. However, I didn't use...
January 4, 2010 at 7:57 am
I had similar flexibility problem with the Send Mail task, but I used a different approach to overcome it. I used a SQL query and redirected the result to a...
June 8, 2009 at 12:21 pm
Viewing 8 posts - 1 through 8 (of 8 total)