Importing excel files having variable headers

This has been documented well in MSDN , running through the steps similar to as @houseofsql mentioned

Step1:

Exclude column names in first row in excel connection, use sql command as data access mode
enter image description here

Step2: Alias column names in output column as matching your destination,

Select * from [Sheet1$A2:I] will select from second row

enter image description here

Finally Add destination as OLEDB destination

enter image description here

Leave a Comment