Rx_
Nothing In Moderation
- Local time
- Today, 04:09
- Joined
- Oct 22, 2009
- Messages
- 2,803
Here is a set of weekly SQL Server maintenance task.
Does anyone have other suggestions to add to this list?
MyDBNAME is backed up every morning early AM. The backup is restored to a Test DB twice a week to insure the backups work.
It is a full DB backup.
The Recovery Model is "Simple" - idea to save data fast and not worry about Transaction files. My DB has no real batch updates.
Every Friday afternoon - manually run this script and review the results
USE MYDBName;
GO
EXEC sp_updatestats
go
dbcc checkdb
USE model;
dbcc checkdb
use master
dbcc checkdb
use msdb
dbcc checkdb
Does anyone have other suggestions to add to this list?
MyDBNAME is backed up every morning early AM. The backup is restored to a Test DB twice a week to insure the backups work.
It is a full DB backup.
The Recovery Model is "Simple" - idea to save data fast and not worry about Transaction files. My DB has no real batch updates.
Every Friday afternoon - manually run this script and review the results
USE MYDBName;
GO
EXEC sp_updatestats
go
dbcc checkdb
USE model;
dbcc checkdb
use master
dbcc checkdb
use msdb
dbcc checkdb