SSIS: script task (vs15) not work when deploy on sql server 2014

This worked for me: Install SSDT-BI for Visual Studio 2013. Open your solution in Visual Studio 2015. Select your SSIS Project in the Solution Explorer. In the Project menu select Properties. In the Property Pages dialog select Configuration Properties -> General Under Deployment Target Version change the Target Server Version to “SQL Server 2014.” Clean … Read more

SSIS 2012 – Insert new rows, ignore existing rows

Between your source and destination component, add a Lookup Component. Configure the Lookup to Redirect to No Match Output for unmatched rows. In your lookup source, write a query like SELECT T.PK1, T.PK2 FROM dbo.MyTable T where you only pull back the primary keys and then compare you input data to the target table’s. What … Read more

To run a SSIS package outside of SQL Server Data Tools you must install Move File to Archive of Integration Services or higher

Just to give future visitors something to look on, in my case issue was I had two different version of SSIS installed on same machine. One was for 2005 and another for 2014. And oddly enough even I was explicitly pointing to newer version (as shown in later part of post) in my command, it … Read more

How to replace double quotes in derived column transformation?

I think you have almost got the expression correct except for the additional slash in the replacement string. Here are the expressions that might work for you. Expression #1: Removes all double quotes within a given string. REPLACE(COLA, “\””, “”) Expression #2: Replaces all double occurrences of double quotes with single occurrence of double quotes. … Read more