Regular automatic backup of SQL Server databases

Source: Internet
Author: User
Backup of server data is troublesome. manual backup is a pain point if you need to back up data on a daily or regular basis. Here I will introduce a method for creating automatic backup through SQL Server Job Scheduling:
1. Choose Enterprise Manager> Manage> SQL Server proxy> job;
2. Create a job and obtain the job name as needed. For example, for data backup, select SA as the owner. You can also select another user, provided that the user has the permission to execute the job;
3. Click the step tab to go to the step panel. Create a step. You can enter the step name as needed, such as step 1. The default type and database do not need to be modified. Write the following statement in the command:
Backup database [database name] to disk = n' F: \ data \ Database Backup 'with noinit, nounload, name = n' Database Backup', noskip, stats = 10, noformat
Note: The Database Name, disk = (here you need to enter the path and the name of your database backup), and the name = can be entered at will.
4. Click the scheduling tab to go to the scheduling panel. Create a scheduling task and enter the name as needed. Click "show" and select "Schedule" for the task to be executed. Such as every day, every 2 days, every week, and every month. Set as needed;
5. Do not forget one thing after you confirm it. Right-click the job you just created and start the job. If there is no problem with your job, a message indicating that the job is successfully executed will be displayed, corresponding backup files appear on your disk;
6. Another important problem is that your SQL Server Agent server has been started.

if we need to generate a new backup based on the daily date, we can differentiate the backup files. At this time, we need to modify the SQL statement just now. Reference instance: declare @ filename nvarchar (100) set @ filename = 'f: \ addin \ backup \ data' + convert (char (10), getdate (), 112) print @ filename backup database [addin] to disk = @ filename with noinit, nounload, name = n 'addin backup ', noskip, stats = 10, if you have any questions about noformat, I hope you can leave a message to communicate with me.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.