Please help me to get SSIS package details based table name.
Eg: I have a table A
which is update based on ssis package. so i would like to name of that package.
Is there any query i can get it from back end.
Please help me to get SSIS package details based table name.
Eg: I have a table A
which is update based on ssis package. so i would like to name of that package.
Is there any query i can get it from back end.
SSIS packages are basically just XML-files, so you can open it in some text editor and then use the editors Find-function to locate references to your table.
If there is no Log files, or an audit table created to store these informations, you cannot find the package that updated a specific table.
There is a workaround that you can do, is to search the packages that contains the table name. if you are interested in this approach, you can read my answer @ Automate Version number Retrieval from .Dtsx files