Reading the SSIS package file name from within the package (package deployment)

I created the SSIS package in Visual Studio SSDT 2012 using the package deployment model. Is there a way to access the package file name as a variable or the readonly property from the package?

I do not see this being indicated as a system variable, is there a way, possibly through a script task?

+4
source share
1 answer

I think you need to check the system variables in the name [System :: PackageName], if you want to rename the package name, you need to change the Properties. I have added screenshots for reference. Select variables , Properties .

+1
source

Source: https://habr.com/ru/post/1245631/


All Articles