Ok has anyone come up with any good ways to speed up updating in simple applications Not N-tier and such just a simple little application communicating over a network to a database, lets say an access database. Flat but wide file. Updates from the access front end of course take half the time but I have 200 users ;) working on the system and I would just like to speed it up from 20 seconds to 5. I know I would love to go sql but that is for another budget year and the problem is now.
Thanks
Anyone have any workarounds for the slow update issues.
PS Can we add spell check to the post screen please……

Updates are soooo Fun
Jeff King
1- Batch Update -- aggregate changes over a period of time and submit them all at once.
2- Worker Thread -- spin up an alternative thread to manage the update while keeping the UI responsive.
SPotam
I was leery of this for the save because of the instabilities and the fact that the user thinks the record is saved but the application may still be saving the record.
I was also leery of the batch processing do to the fact that you could loose quite a bit of records. I guess I could write them to an xml file temp and then delete that file upon success.
I was hoping for more of a setting that will maybe let the jet engine perform the work and increase the speed by disconnecting the ado.net from the confirmation procedures.
I'm not sure I’m just fishing for ideas keep them coming