What would be the best way to implement a sequence where you would wait for incoming data through a web service and then execute the rest of a package I have been thinking something along the line of setting up a native web service in SQL Server 2005 that stores XML in a table where a trigger starts an SSIS package, since this can't be done in SSIS alone, can it
Regards,
Lars Ronnback

Web Service Listener
Tammy P
Kirk Haselden replied to me and basically it can't be done. Inherently there still has to be an execution of a package at some point in time.
SSIS "pulls" data - you can't "push" data to it.
You can do event based SSIS execution i.e. When something happens, execute a package. You could do that and have it suck data out of your WS.
-Jamie
VBNewStudent
If you but Donald Farmer's book you'll have access to a downloadable chapter that tells you exactly how to do this.
-Jamie
AnuR
The reason for this is that I want to "trickle-feed" an active data warehouse and a push strategy from the systems is more desireable than a pull one, since the timing of delivery is then delegated to the systems in which changes occur.
Thanks!
Lars Ronnback