This is just an idea and not a full developed solution, but you can use OleDb to reach your excel file and read its contents like it was a database table.
Then it's up to you to connect to your main database (SqlServer) and apply the logic required to 'merge' one data source into the other one
DataTable myTable = new DataTable();
string con = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=D:\temp\test.xls;" +
"Extended Properties='Excel 8.0;HDR=No;'";
using(OleDbConnection c = new OleDbConnection(con))
{
c.Open();
string selectString = "SELECT * FROM [Sheet1$]";
using(OleDbCommand cmd1 = new OleDbCommand(selectString))
{
cmd1.Connection = c;
using (OleDbDataReader myReader = cmd1.ExecuteReader())
{
myTable.Load(myReader);
}
}
}
Now all your data from the first excel sheet file is loaded in memory inside a datatable object