vote up 0 vote down star

If a file system task such as a rename fails, for example if the file does not exist, then this is considered an error by SSIS. This means the whole package fails. I can get around it by using a script task, or setting the maximum errors for the package to more than one. The problem with setting maximum errors for the package to more than one is that if an error occurs somewhere else in the package the package won't fail when it should.

So is there any way to somehow swallow the error and still be able to branch based on success or failure of the file system task? I tried sticking the file task into a sequence container with ForceExecutionResult set to Success, but the package still fails saying maximum error count reached.

flag

47% accept rate

7 Answers

vote up 0 vote down

I've run into this exact problem and I've always used a Script Task. I don't think there's a better solution.

link|flag
Good to hear I'm not alone... – Simon D Jan 29 at 20:41
vote up 0 vote down

I haven't tried this with a FS task, but it works well for dataflows... What about wrapping your filesystem task in a sequence container... If the step fails, the container fails, you could simply output from the container to a success/failure path....

link|flag
Thanks for the suggestion - I tried using a sequence container but the fact there has been an error in the flow means the package reaches its MaximumErrorCount and fails. I guess Rob's right - no way to do this, which makes the file system task pretty brittle. – Simon D Jan 30 at 14:04
vote up 0 vote down

Check the FailPackageOnFailure and FailParentOnFailure properties of the FileSystem task and make sure they are set to False. Also, increase the MaximumErrorCount property of the package.

This combination will allow the task to fail and the package to still complete successfully.

link|flag
FailPackageOnFailure and FailParentOnFailure are false. (As I mention in my question) I can increase the MaximumErrorCount - but this will mean other errors elsewhere in the package go unspotted. It seems the choice is: lax error checking on no FS task. – Simon D Feb 4 at 18:58
If you have other items that are important, you can set FailPackageOnFailure to True for those items. Then the package will fail even with an increased MaximumErrorCount. You can also add error handling tasks to decide weather to fail the package or not based on the error. – Rob Boek Feb 6 at 5:48
vote up 0 vote down

You can use constraint on the connection. Right Click on the connection arrow between SSIS components and you can specify,

Success/Failure and redirect.

link|flag
vote up 0 vote down

prashant_sp answer is the right one, you just have to continue unconditionnally to the next task, by not selecting the "on success" workflow precedence constraint, but the "redirect" one which will always continue, even if your FS task fails (folder does not exist, etc...)

Kind regards

link|flag
vote up 0 vote down

You can always try incorporating the "File Watcher Task" which you can download free at http://www.sqlis.com/post/File-Watcher-Task.aspx and adding this as step prior to your File System Task.

link|flag
vote up 0 vote down

Use a expression and constraint combination on the "precedence constraint" connector. return success always from your previous task (it may be a script looking for the file) and if file found, set a variable. in the expression of the "precedence constraint" check for the variable value and return true or false. If your expression evaluates to false, the package will nto continue and yet you will not see any error. - Mayukh

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.