I will get data in excel sheets.I want load data from excel sheet to SQL server database using SSIS tool, in my excel sheet some columns are empty, this empty columns are loaded has null values into sql server (as shown in below (also see attached file),newly add columns have all rows are nulls, but excel sheet, this null are not there).
In excel data is like:
CountryName1 ActorName ActorGender
United States Adam Sandler Male
United States Adrien Brody Male
United States Alan Rickman Male
United States Albert Finney Male
United States Alec Baldwin Male
After loading into sql server, few columns are added with null values. in sql server table , as shown below
NULL Country Name Actor Name Actor Gender NULL NULL
NULL United States Adam Sandler Male NULL NULL
NULL United States Adrien Brody Male NULL NULL
NULL United States Alan Rickman Male NULL NULL
NULL United States Albert Finney Male NULL NULL
NULL United States Alec Baldwin Male NULL NULL
NULL United States Andy Garcia Male NULL NULL
NULL United States Andy Serkis Male NULL NULL
NULL United States Angelina Jolie Female NULL NULL
NULL United States Anthony Daniels Male NULL NULL
Please, give solution, how Remove null columns as shown in image while loading data and to load columns which has data ?
Mark as Answer if its helpful to you
---
Srihari