i have a SSIS package where it reads the file names from the directory and store the file names in SSIS variable called System object.
the System object variable will be pass to for each loop and apply the some logic and process the files.
Hoeever if i run the package maynually it is working fine. however same package if i deply and run using SQL job it is not working. Following is the error message i am facing.
Error:
Microsoft (R) SQL Server Execute Package Utility Version 10.50.2500.0 for 64-bit Copyright (C) Microsoft Corporation 2010. All rights reserved. Started: 2:35:00 PM Error: 2012-09-06 14:35:00.94 Code: 0x00000003 Source: FELP_Loop through Employee files Description: Variable "User::FeedFilesSortedTable" does not contain a valid data object End Error DTExec: The package execution returned DTSER_FAILURE (1). Started: 2:35:00 PM Finished: 2:35:00 PM Elapsed: 0.61 seconds. The package execution failed. The step failed.
Please help me