I have a SSRS (2008 R2 64 bits) report where i want to expose data from an Access (Office 2010 32 bits) DB, both in an 64bit OS.
After searching, it seemed the proposed solution would be to use a SSIS package as a middle man.
After implementing everything in BIDS, it worked, but not when I deployed in SSRS (error in the datasource: "The package failed to validate.").
To be sure the package was ok, I deployed it, and ran using DTEXEC in the command line, result:
Using the 32bit DTEXEC - it worked
Using the default 64bit DTEXEC - the same error appeared
That's how I conclude the problem is in the "bits"...
Supposedly, since in SSRS, the connection string of the SSIS extension is basically invoking DTEXEC, one should be able to use the "/X86 switch to enable the 32 bit runtime mode" stated here (in the end), but it didn't work...
So, now what, I ask...any ideas...?
Thanks in advance!