zoukankan      html  css  js  c++  java
  • Automate SQL database backups using Maintenance Plans

    Automate SQL database backups using Maintenance Plans

         In this article, we are going to learn how we can automate the backup of the SQL database using database maintenance plans. Data is one of the most important assets of any organization, and as a database administrator, it is our prime responsibility to protect it. There are various tools available that can be used to back up the data. These tools use state of the art technology to protect the data, and some of them are very costly. Instead of using these costly tools, some organizations prefer to use SQL native backups. These backups of SQL database can be automated by SQL Server Agent Jobs or Windows’ task scheduler.

    The SQL Server provides the predefined maintenance tasks that can be used to perform database maintenance. These tasks are called database maintenance plans. The maintenance plans can be used to perform maintenance on the local and the remote SQL Server instance.

    In this article, I am going to show how we can automate the database backups using SQL Server database maintenance plans. This article is based on a use case, and the details are the following:

    1. The Full, Differential, and Log backup of all user and system SQL databases must be taken. Schedules are following
      1. Full Backup: Every Sunday at 1 AM
      2. Differential Backup: Every day except Sunday at 2 AM
      3. Log Backup: Every 15 minutes
    2. The backup must be encrypted, and once the backup completes, the backup’s integrity must be checked.
    3. The backup location must be the following:
      1. Full Backup: \192.168.0.103BackupsFull Backup
      2. Differential Backup: \192.168.0.103BackupsDifferential Backup
      3. Log Backup: \192.168.0.103BackupsLog Backup
    4. The backup set must be expired in 10 days

    The backup process should be created as follows 

  • 相关阅读:
    记一次dba面试
    MySQL登陆 socket 问题
    推荐一些MySQL的博文(持续更新)
    MySQL 参数调优工具--tuning-primer
    当扫描的数据超过了全表的17%就不使用索引
    MySQL 5.7 新增参数
    MySQL 5.7 和 MySQL 5.6参数默认值比较
    MySQL创建的用户无法从本地登陆
    含有IN的子查询
    索引大小对语句执行速度的影响
  • 原文地址:https://www.cnblogs.com/chucklu/p/14899821.html
Copyright © 2011-2022 走看看