Group: StrataFrame Developers
Posts: 6.6K,
Visits: 6.9K
|
It is extremely important that you do three things when maintaining your database. You need to backup, shrink, and flush the logs. An exampe of this is one of our databases that we had missed to flush the logs. The database was 800MB and the log file was 25 GB. After we backed up and added the TRUNCATE LOG the log file wen to 1.5 MB. So it is very important to do this. Your database will also expand with deleted records, so it is good to SHRINK the database relatively often to prevent bloating. And backup is an obvious one, but be sure to add the SHRINK and TRUNCATE LOG to your backups.
|