There are xlsxb files and each of these consists of varying number of sheets (consists of upto 9 sheets) .All the sheets are of different structure.The requirement is to laoad a specific named sheet data into corresponding table.The specific named sheet may or may not appear in all the xlsb files.
Example:
1st xlsb file consists of 9 sheets(
sh1,sh2,...,sh9)
2nd xlsb file consists of 6 sheets(sh1,sh5,sh6,sh7,sh9,sh2)
3rd xlsb file consists of 3 sheets(sh5,sh7,sh9)
The idea is all sh9 to be colleted in on table called Table_sh9.All sh5 has to
be in Table_sh5
What SSIS design pattern can be followed for this.