In general, we will use SQL Server's own database maintenance plan to define the backup.
Sometimes, however, some machine database maintenance plans do not successfully implement backups.
The reason for the error may vary, and we can use a simple SQL Server backup script to do the backup.
SQL statement that generates a simple SQL Server backup script:
Use master
Select ' Backup database ' +name+ ' to disk= ' F:\sqlserver_backup\ ' +name+ '-bak ' with init ' from sysdatabases
-------------------------------------------------------------------------------------------------
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
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