I am getting this error "..User::Records does not contain a valid data object..."
The variable User:Records is set to the datatype object. This works fine on my laptop (DEV) but when I compile the SSIS and move it to the server it give the following error.
Any thoughts?
I think it has something to do with the proxy user. When I set it to the default SQlAgent User when running the job then everything works fine. When I create a proxy user and exeucte it then it erorrs out.
The Data Flow imports a csv file and then assign it to a RecordSet. (All this is setup correctly since it works on my dev and also works on the server if I use the correct user for execution). I will see if the config file is not being loaded correctly because of the user permisssions.
User::Recordsto a particular object type and the code/task that initializes it is not firing---perhaps it's loading a recordset with the results of a query but there are no records to be found in the server environment. Code defensively---induce the worst case on your laptop/DEV environment (folder does not exist, no records found, etc) in an effort to reproduce the issue. Otherwise, please update the ticket with information about how the object is populated and consumed. – billinkc Feb 13 '12 at 15:11