I have made changes to my SSIS package within MS Visual Studio 2019 (MS VS 2019). When I deploy my changed package to the Integration Services Catalog and re-run the job the changes don't appear to have been reflected. The change I made was to add a truncate and re-load to a staging table. I know it's not working because after the job has run the staging table does not have any records. When I manually run the project from within MS VS 2019 it works (i.e. the staging table is populated).
I've tried deploying the project from MS VS 2019, deploying just the package from MS VS 2019 as well as copying the package file from its location on my local machine to the directory on the MS SQL Server machine accessed by the SSIS catalog. None of these seem to work.
Select pkg.* from [internal].[packages] pkg join [internal].[projects] prj on pkg.project_id = prj.project_id and pkg.project_version_lsn = prj.object_version_lsn where pkg.name = <Package_Name>
To check in Visual Studio, right click in the Control Flow area of the package and click on Properties. You will be able to see the build version – Ritika