Dear All ,
I'm facing a really boring problem with SSIS :
I have a data flow procedure that imports CSV File from ftp server , import them into staging table , it process the data and clean the ftp servers from the files . . .
All the flow is divided in 5 SSIS Package . . . When I manually run they from a "parent" SSIS that run they in cascade it works properly but if I run the parent SSIS into a SCHEDULED SQLSERVER JOB , i get the following error :
DOMISO\s010pqdmclu. ...9.00.4035.00 for 64-bit Copyright (C) Microsoft Corp 1984-2005. All rights reserved.
Started: 9:05:08 AM Error: 2011-03-31 09:05:24.37 Code: 0xC0014054 Source: Import FTP UEP
************************************************************
Description: Failed to lock variable "User::ImportOnlyQM" for read access with error 0xC0010001 "The variable cannot be found.
This occurs when an attempt is made to retrieve a variable from the Variables collection on a container during execution of the package,
and the variable is not there.
The variable name may have changed or the variable is not being created.".
End Error Error: 2011-03-31 09:05:24.37 Code: 0xC0014054 Source: Import FTP SET
Description: Failed to lock variable "User::ImportOnlyQM" for read access with error 0xC0010001 "
The variable cannot be found. This occurs when an attempt is made to retrieve a variable from the Variables collection on a container
during execution of the package, and the ...
The package execution fa... The step failed.
************************************************************
I used the variable ImportOnlyQM before during the developing but now I'm sure that the variable does not exist anymore because it
has been substiduted by ImportQM variable.
If I try so search in all solution coda I can find any occurence of ImportOnlyQM variable . . .
PLEASE HELP !!!