Dear All,
I hope this post save your time, If you need to make the scheduled for daily backup in SQL please follow the following steps:
Steps for Generate the SQL Script for backup
1) Right click on the Database
2) Click on Task
3) Click on Backup
4) Click on the Script Button
5) Once you click you will get the script like that
BACKUP DATABASE [DNNFrsh] TO DISK = N'Drive:Path\databaseName.bak' WITH NOFORMAT, NOINIT, NAME = N'databaseName-Full Database Backup', SKIP, NOREWIND, NOUNLOAD, STATS = 10GO
6) Right Click on SQL Server Agent
7) Click on the New Job
8) Fill the required name and other field
9) In Step section Paste the Backup query that you generated in the above step
10) After that set the scheduled timings and save it
Your schedule is ready now!
Regards
Rashid Imran Bilgrami
http://www.bestvisualization.com
I hope this post save your time, If you need to make the scheduled for daily backup in SQL please follow the following steps:
Steps for Generate the SQL Script for backup
1) Right click on the Database
2) Click on Task
3) Click on Backup
4) Click on the Script Button
5) Once you click you will get the script like that
BACKUP DATABASE [DNNFrsh] TO DISK = N'Drive:Path\databaseName.bak' WITH NOFORMAT, NOINIT, NAME = N'databaseName-Full Database Backup', SKIP, NOREWIND, NOUNLOAD, STATS = 10GO
6) Right Click on SQL Server Agent
7) Click on the New Job
8) Fill the required name and other field
9) In Step section Paste the Backup query that you generated in the above step
10) After that set the scheduled timings and save it
Your schedule is ready now!
Regards
Rashid Imran Bilgrami
http://www.bestvisualization.com
Comments
Post a Comment
Thanks for the Comments , Your review will display soon