I'm wondering if the functionality exists within SQL to achieve the following:
I have an excel spreadsheet which users update DAILY with information something like the following:
workbook, Type, account Reference, Company Name, Booking Type, Type of Client, Type of Work, Product Code, Value of appointment,
Jan KPI.xlsx, Sales, SA1326, company1, Questionnaire, Current, Ad Hoc, Q1, £18.00
Jan KPI.xlsx, Sales, SA1327, company 2, Home visit, Current, Ad Hoc, MR7, £325.00
Jan KPI.xlsx, Sales, SA1328, company 2, home visit, Current, Ad Hoc, MR6, £0.00
Using the first column which defines the name of the worksheet (and will change every month) I want to import this information to a table, overwriting any existing data from the current spreadsheet but leave anything from any other spreadsheet previously uploaded.
The end result being that we hold and can report on all historical data whilst also bing able to view the current work as well.
I understand the import could be done using SSIS but I have no experience with that side of SQL.
Thanks.