vote up 6 vote down star
4

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?

flag

Typo of the week! – Steve Jessop Sep 23 '08 at 18:08
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

5 Answers

vote up 8 vote down check

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\mydatabase.bak' WITH FORMAT"

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

link|flag
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 at 14:47
vote up 3 vote down

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|flag
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 at 15:06
@bzlm, Like I said. My blog has details on how to do this outside of SQL Server :) – GateKiller Sep 17 at 15:16
1  
This script doesn't seem to work... – Marnix van Valen Sep 22 at 14:46
show 1 more comment
vote up 2 vote down

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|flag
vote up 1 vote down

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

link|flag
Comments and answers are two different things. – bzlm Sep 16 at 15:05
vote up -5 vote down

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|flag
Do NOT do this if SQL Server is running, even if nothing's using it. – W. Craig Trader Sep 23 '08 at 18:17
Does this even work? – bzlm Sep 16 at 15:05
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. – W. Craig Trader Sep 23 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 at 16:43

Your Answer

Get an OpenID
or

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