up vote 25 down vote favorite
12
share [g+] share [fb]

I've been too lax with performing DB backups on our internal servers.

Is there a simple command line program that I can use to backup certain databases in SQL Server 2005? Or is there a simple VBScript?

link|improve this question

Typo of the week! – Steve Jessop Sep 23 '08 at 18:08
2  
Personally, I have far better luck with order lemon applications and instruction orange utilities. Command lime programs are way more trouble than they're worth. – Jim Sep 23 '08 at 18:11
:-) Stupid iPhone. – Frank Krueger Sep 23 '08 at 18:12
feedback

8 Answers

up vote 34 down vote accepted

To backup a single database from the command line, use osql or sqlcmd.

"C:\Program Files\Microsoft SQL Server\90\Tools\Binn\osql.exe" 
    -E -Q "BACKUP DATABASE mydatabase TO DISK='C:\tmp\db.bak' WITH FORMAT"

You'll also want to read the documentation on BACKUP and RESTORE and general procedures.

link|improve this answer
1  
There's a good script to backup all user databases in one go here: mssqltips.com/tip.asp?tip=1070 – Marnix van Valen Sep 22 '09 at 14:47
Use SQLBackupAndFTP. Check "Backup all databases". Even databases created later will be backed up. – user333822 Jul 18 '11 at 14:53
feedback

Schedule the following to backup all Databases:

Use Master

Declare @ToExecute VarChar(8000)

Select @ToExecute = Coalesce(@ToExecute + 'Backup Database ' + [Name] + ' To Disk =     ''D:\Backups\Databases\' + [Name]   + '.bak'' With Format;' + char(13),'')
From
Master..Sysdatabases
Where
[Name] Not In ('tempdb')
and databasepropertyex ([Name],'Status') = 'online'

Execute(@ToExecute)

There are also more details on my blog: how to Automate SQL Server Express Backups.

link|improve this answer
Can you elaborate on how to schedule? – Frank Krueger Sep 23 '08 at 18:11
Please read my Blog Post. It details everything you need to know. – GateKiller Sep 23 '08 at 18:16
I think the question asks for something that runs outside of SQL Server. – bzlm Sep 16 '09 at 15:06
@bzlm, Like I said. My blog has details on how to do this outside of SQL Server :) – GateKiller Sep 17 '09 at 15:16
1  
This script doesn't seem to work... – Marnix van Valen Sep 22 '09 at 14:46
show 1 more comment
feedback

I user ExpressMaint.

To backup all user databases i do:

C:>ExpressMaint.exe -S (local)\sqlexpress -D ALL_USER -T DB -BU HOURS -BV 1 -B c:\backupdir\ -DS

link|improve this answer
Meixger, I can't find a single reason to use ExpressMaint, when SQLBackupAndFTP beats it in every imaginable scenario – user333822 Jul 11 '11 at 13:44
feedback

MS SQL Database Backup via VBScript @ http://www.joshcook.net/2008/07/ms-sql-database-backup/

link|improve this answer
feedback

The mentioned command line utility osql is replaced by sqlcmd in Microsoft SQL Server 2005.

link|improve this answer
2  
Comments and answers are two different things. – bzlm Sep 16 '09 at 15:05
feedback

for simple one click backup you could also use this tool: www.sqldog.com

link|improve this answer
feedback

@GateKiller - your script always misses the first database matching your select because @ToExecute has not been initialized and is NULL

You need to add

SELECT @ToExecute = ''

BEFORE the SELECT

link|improve this answer
feedback

If you can find the DB files... "cp DBFiles backup/"

Almost for sure not advisable in most cases, but it's simple as all getup.

link|improve this answer
1  
Do NOT do this if SQL Server is running, even if nothing's using it. – Craig Trader Sep 23 '08 at 18:17
Does this even work? – bzlm Sep 16 '09 at 15:05
3  
The odds of using this method to successfully backup and restore a database are very slim. It will only work IF, during both the backup and restore: no SQL Server processes are running, you identify and copy ALL of the binary files involved, you're running EXACTLY the same version and patch-level of SQL Server (and/or Windows). The backup file format is designed to be cross-version portable; the binary database files are NOT. This is true of ALL databases, not just SQL Server. Just don't do it. REALLY. DO NOT DO THIS. – Craig Trader Sep 23 '09 at 15:33
This answer is 98.7% a joke. OTOH if you will only be restoring to the exact same setup (a.k.a restoring/reverting) and it can be shut down (a.k.a. it's a local dev server) and probably a few other things... – BCS Sep 23 '09 at 16:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.