I have SQL Server 2012. I have several SSIS packages to run every night.
Before running SSIS packages, I would like to read status value of database table.
Table have timestamp and status. Table is updated by another ETL tool, which updates database. When another ETL is ready, we want SSIS to continue.
If timestamp is today and status is "1", we should run first SSIS package.
If previous criteria do not match, then previous statement should be checked after 30min so that SSIS package could be run.
How to do this?
Kenny_I