I want to backup SQL express. I have management studio 2008 installed and although there is an option to backup the DB I cannot find any where to run this on schedule.
While running a manual backup I select script and it outputted the script it was running which reads
BACKUP DATABASE [stock] TO DISK = N'D:\Stock_DB_Backup\Stock_Nov_11_2013' WITH NOFORMAT, NOINIT, NAME = N'Stock-Full Database Backup', SKIP, NOREWIND, NOUNLOAD, STATS = 10
GO
I want to automate this process to have a full backup. I want each backup to have a filename that increments 01-02-03 as oppose to overwriting the previous days backup.
If someone can tell me specifically what I need to do without sending me to a technet link : )
Microsoft SQL Server 2008Storage Software
Last Comment
Sid_F
8/22/2022 - Mon
joriszwaenepoel
I could copy and paste the text from the following article (Microsoft support) , but I won't do that.
In the Microsoft link it refers to step A to create a stored procedure. I am unsure how to do this and also if and what I need to edit in the text of step A.
Lets say I want to backup a database called master once a day and save it to d:\backups
Sorry for the basic steps but I am new to this!
Step A: just copy and paste the code into a new query window in the SQL Server Management studio (I suppose you installed Management Studio Express?), and run it. I don't think you need to edit anything here.
Step B: use Example 1 to have the most complete backup (all databases, full backup) or Example 4 for a single database.
"Master" already exists as a database name in every SQL Server instance. So I hope you didn't put all your tables in the existing master database. You should create a new database for your application.
To make it easier If I try to run a manual backup, setting all the parametres for filename location type etc and then select the option "script action to file" I can then save a file with a .sql extention with these details. I put this in task scheduler but I believe I am missing a step as it does not run until I open management studio
Éric Moreau
check steps 8 and 9 of my last link
Sid_F
ASKER
Everything seems to be in place but it still does not work. If I run the backup directly from the studio console it works fine with the below parametres but it does not work through task scheduler even when I select to "run" manually.
The task scheduler is running with my local admin account details and the option for run with highest privilages is checked. It seems to start but then sticks on "running" The history shows
I have selected to start a program
"C:\Program Files\Microsoft SQL Server\100\Tools\Binn\SQLCMD.EXE"
with add arguments entered as -i "c:\script\backup.sql"
The contents of the backup.sql are
BACKUP DATABASE [master] TO DISK = N'C:\script\mybackup' WITH NOFORMAT, INIT, NAME = N'master-Full Database Backup', SKIP, NOREWIND, NOUNLOAD, STATS = 10
GO
I tried the same on my server and this worked fine so some issue with my test laptop. One final question when the backup runs how can I tell it to create a new backup file each day and ideally append the date to the name of the backup. At the moment each time I run it it overwrites the existing file even though its set to append. Thanks.
Éric Moreau
if you are using the last link I gave you, make sure you set these parameters:
@dbretainunit = 'days',
@dbretainval = 5,
Sid_F
ASKER
I entered those parameters exactly as above on a line on their own but the backup no longer runs. I presume they need to go in in a specific format?
>>I entered those parameters exactly as above on a line on their own but the backup no longer runs. I presume they need to go in in a specific format?
just to be sure, you are using the script contained in that link?
Sid_F
ASKER
The steps I have done so far are copy the details below into a notepad document, change the name of the database from verba to my database name. I have also created c:\backup and C:\reports folder. I have saved the noted document as backupscript.sql and saved it to c:\backup .
In task scheduler I have selected to start a program
"C:\Program Files\Microsoft SQL Server\100\Tools\Binn\SQLCMD.EXE"
with add arguments entered as -i "c:\backup\backupscript.sql"
When I run this task manually it does not create a file. I am doing something wrong
try to run your command from SSMS and see if there is an error.
did yo run the sql_express_maintanance.sql to install the sp on your server?
are you sure you have read the warning section: "In order to run expressmaint stored procedure, the following options have to be enabled in the Surface Area Configuration:"?
Perfect I can see expressmaint procedure did not install correctly. I ran the stored procedure instead of the exe and everything worked perfect. Thank you very much.
How to schedule and automate backups of SQL Server databases in SQL Server Express
http://support.microsoft.com/kb/2019698