Simple SQL Server backup script code

Source: Internet
Author: User

In general, we will use the database maintenance plan provided by SQL Server to define the backup.
However, sometimes the maintenance plan of some machine databases cannot be successfully backed up.
The error cause may be different. In this case, we can use a simple SQL Server backup script for backup.
SQL statement for generating a simple SQL Server backup script:
Use master
Select 'backup database' + name + 'to disk = ''' F: \ sqlserver_backup \' + name + '. Bak'' with init 'from sysdatabases
Bytes -------------------------------------------------------------------------------------------------
Backup database master to disk = 'f: \ sqlserver_backup \ master. Bak' with init
Backup database model to disk = 'f: \ sqlserver_backup \ model. Bak' with init
Backup database msdb to disk = 'f: \ sqlserver_backup \ msdb. Bak' with init
Backup database db_app1 to disk = 'f: \ sqlserver_backup \ db_app1.bak 'with init
Backup database db_app2 to disk = F: \ sqlserver_backup \ db_app2.bak 'with init

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.