Reputation: 35
I want to remove a few columns from my flat file as I want to load in SQL server Data Warehouse using SSIS, How I can achieve this transformation using SSIS, see attachment for description. For e.g. I don't want %Salary
and Address
in my transformation.
Upvotes: 0
Views: 2065
Reputation: 37313
Even if the provided approach will work fine, why you should load all useless columns into your data pipeline to ignore them at the end. You can simply uncheck them from the Flat File Source editor.
Upvotes: 1
Reputation: 12959
You can follow the below steps:
Yes
.Now, point to your empty destination file. If you go to columns tab, only specific columns will be present.
Now, connect the Flat file source to Flat file destination. Now, only specific columns will be mapped as given below:
6.Now, you run the package, only specific columns will be loaded.
UPDATE: Sorry. I misunderstood destination as Flat File Destination. If you are having SQL Server Data Warehouse as the destination, you need to follow below steps.
Upvotes: 1