Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|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

8 Answers

up vote 50 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.

share|improve this answer
2  
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
1  
The documentation says that WITH FORMAT formats the storage medium: "The FORMAT option invalidates the entire media contents, ignoring any existing content." Make sure this is what you want. – alexg May 10 '12 at 9:30
that's pretty dangerous! – Tjaart Jul 6 '12 at 10:02
1  
@Tjaart, That's why I said to read the documentation first. If you don't use WITH FORMAT and you choose an existing backup file, then the new backup will be appended to the existing backup(s) in the file, which may not be what you want. – Craig Trader Jul 20 '12 at 17:39

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.

share|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

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

share|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

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

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

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

share|improve this answer
The link is broken. – Yaron Feb 13 at 7:10

I'm using tsql on a Linux/UNIX infrastructure to access MSSQL databases. Here's a simple shell script to dump a table to a file:

#!/usr/bin/ksh
#
#.....
(
tsql -S {database} -U {user} -P {password} <<EOF
select * from {table}
go
quit
EOF
) >{output_file.dump}
share|improve this answer

@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

share|improve this answer

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.

share|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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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