Shum
Shum

Reputation: 41

How to get ssis package execution information during running process using ssisdb

I need to get package execution information from ssis db during runtime to log that information in my custom logging table. Is it possible to insert execution information during ssis package running on deployment?

Upvotes: 3

Views: 2541

Answers (1)

Hadi
Hadi

Reputation: 37368

I think you are looking to read from SSISDB.catalog.executions and SSISDB.catalog.execution_component_phases tables.

TO move these rows to a custom logging table in real-time you may use triggers, i don't know if you can create triggers on SSISDB logging tables, but i think this is the only way to copy data in real-time.

Upvotes: 1

Related Questions