0

I have the following requirements:

Read selected columns(DetailsId, SentDate, Count) from excel, get data for the respective DetailsId(s) from Oracle database. Show the comparison data from the excel and database in a grid (MVC).

If the data matches do nothing, if there is a mismatch update some database columns with data in the excel.

Any suggestions how this can be done

Thanks

1
  • There are a variety of ways, built into dotnet, to read excel spreadsheet files. The rest of this is typical application programming. Commented Sep 15, 2011 at 11:50

1 Answer 1

1

Convert your excel spreadsheet to CSV format, define an external table in Oracle using the CSV file as the source, then compare the external table values with the actual Oracle table using SQL within C# and display results as required. Update data as needed.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.