View Full Version : execute SSIS from Ms Access


neoklis
09-24-2008, 01:16 AM
Hi All,

I am trying to execute a deployed SSIS package, from Ms Access 2003. Is it possible;

thank you

neoklis
09-24-2008, 06:11 AM
I manage to solve the problem by making a job and executing it from Access with sp_start_job. Is there a store procedure that can return the packages are currently running on SQL?

SQL_Hell
09-24-2008, 08:12 AM
Good idea I was going to suggest this....but having a busy few days at the moment.

It's much better to run from job, that way you get the job history and you can always guarantee the SSIS runs under the correct user account.

In terms of checking whats running, look at the follwing tables

msdb.dbo.sysdtspackages90

msdb.dbo.sysjobactivity

neoklis
09-24-2008, 09:46 PM
thank's a lot for your reply and your suggestions :)