What is the best practice for updating the production database e of the website - I mean for instance if the website database needs to be truncated completely and fresh records inserted regularly - how is this achieved without affecting the uptime
Truncate = no records exist. That's a definite performance-killer.
Instead of truncating, you should do a CRUD routine that inspects the table for records that need to be deleted, added, and updated, and makes the necessary updates. If you have a file-based data system like Access, put a secondary MDB out there with the new data, and run the CRUD routine on the production MDB.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.