Peter,
Thanks for the response.
For your questions:
1. Our application have to be based on various user roles. There are three different levels of users who can access the application. Of which the three level users can do inserts/updates.
2. Transaction question:
Transaction control - Are your transactations complex with mandatory roll back. your DB is taking 1 sql transaction about every .6 seconds, IMO that is light traffic. If your transactions are simple insert, select, update, delete to a single database then you do not need transactional control.
We have numerous selects,inserts,updates.
They are to a single database right now but in the future we have to consider mirroring too. But there are conditions when one insert call/update call interacts with multiple tables.
Thanks