I have the following process:
- An external process fills a staging table called:
staging_table
. - Something to trigger the SSIS package
- The SSIS package does the business logic and truncates
staging_table
. - Then the process starts again.
The external process does not execute at a specific time, so creating job to run a specific time is not a solution. I want the package to execute when the table is filled. Is it possible to execute an SSIS package when a table is filled? If it is possible, then how would that work and what needs to be done? FYI, this verions of SQL Server is 2008 R2.