I'm trying to save a SSIS package for an export of a query to a .csv file. The problem is that the PackageFormatVersion of said SSIS package is 8 (for SQL Server 2016 onwards) but the instance I'm using is SQL Server 2008 R2.
I have uninstalled the newer instance that I had previously and 2008 is the only one I currently have but it still saves the SSIS package for the newer version, when it should be PackageFormatVersion = "3". Plus, the only way I have of saving the SSIS package is to the file system. If I try to save it to SQL Server it gives me an error saying that the SSIS runtime and the target database should be the same version.
Is there a solution to this?