I have developed a VB.Net application with SQL Server carrying the data.
This application will be deployed to another business. The application allows the user to generate base and adjusted fees, output in a PDF document. The application interacts with Microsoft Office.
I want the base fees to be protected. The user can adjust their fees through the application interface, but the base fees are to always be specified by me with occasional updates.
-Is there a way to secure SQL Server at their location so even their DBA cannot change data?
-What is the cleanest way to send new data to their installation?
My idea on this was to send a small password protected, time-stamped Access database with the current values. The application would then load the Access fields to the SQL Server database on application startup.
Is this a bad idea?