Erik Sampsell


I have a package that does an FTP and some File System Tasks. It runs perfectly fine in BIDS but doesn't want to run via SQL Agent. Is the SQL Server Edition the problem


Re: Will FTP and File System Tasks run in Workgroup Edition?

Phil Brammer


I suppose it could be. But then do you have any error messages






Re: Will FTP and File System Tasks run in Workgroup Edition?

TheViewMaster

Another problem might be that your Package Protection level is set to "EncryptSensitiveWithUserKey" (default option) - and your Job runs under administrator account - in which case it is not able to decrypt FTP connection User/password

The solution I use is to set the ProtectionLevel to DontSaveSensitive and provide User/pass from config file.






Re: Will FTP and File System Tasks run in Workgroup Edition?

Erik Sampsell

The error message is:

The task "Get CMP File - FTP Task" cannot run on this edition of Integration Services. It requires a higher level edition.





Re: Will FTP and File System Tasks run in Workgroup Edition?

Phil Brammer

Erik Sampsell wrote:

The error message is:

The task "Get CMP File - FTP Task" cannot run on this edition of Integration Services. It requires a higher level edition.



Yes, you'll need to move to SQL Server Standard or Enterprise editions.

http://www.microsoft.com/sql/prodinfo/features/compare-features.mspx





Re: Will FTP and File System Tasks run in Workgroup Edition?

TheViewMaster

Or you could try to use FTP component in script task

Or you could try to create batch file and execute that





Re: Will FTP and File System Tasks run in Workgroup Edition?

Erik Sampsell

Yeah that's what I did...I have a vbscript that creates a dynamic ftp script (necessary because the files I need contain the date) and then I execute a bat file that executes the ftp with the script.

I then use vbscript to do my file archiving and deletions.