YourSQLDba的翻译(四)

YourSQLDba的翻译(四)

 

YourSQLDba的每个东西都存储在一个叫 “YourSQLDba”的数据库里

包括:存储过程,内部表(日志,跟踪信息)

YourSQLDba使用SQLSERVER 代理来运行维护作业

有两个作业在创建的时候使用相同的存储过程但是使用不同的参数

一个是每日维护任务(完整性检查 dbcc checkdb,更新统计信息,重组或重建索引,完整备份)
一个是日志备份

当数据库事务日志超过给定的临界值的时候,备份事务日志会重设日志大小

数据库邮件能通知操作员或DBA或负责人

How it does it ?
  

Updated : 2009-02-25

Everything is stored in a database named YourSQLDba
Stored procedures
Internal table (logs, and informational tracking info)
It uses SQL Server Agent to run maintenance job
Two job are created that use the same procedure with different parameters
One for daily maintenance (integrity test, update statistics, reorganize or rebuild, full backups)
One for log backups
Job backups reset log size that grow beyond a given threshold
It communicates to operator or Dba or whatever else is responsible (SQL Agent operator) through database mail

你可能感兴趣的:(sql)