I have many excel files with fixed format. I want to read these files and insert the data into SQL server using SSIS 2008.
excel sheet format excel sheet
I want to load only the yellow cells in SQL server. in the format:
name col1 col2 col3 col4
john 0 1 2 3
john 0 1 2 3
john 0 1 2 3
...
I'm done loading the columns but I cant get the name "john" from the sheet. also I want to repeat the same name for all the data loaded from that excel file ( because each excel file has a different name) then insert it into the SQL server.
Can anyone help me or give me a hint !?