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?
|
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?
| |||||||||
feedback
|
|
To backup a single database from the command line, use osql or sqlcmd.
You'll also want to read the documentation on BACKUP and RESTORE and general procedures. | |||||||
feedback
|
|
Schedule the following to backup all Databases:
There are also more details on my blog: how to Automate SQL Server Express Backups. | |||||||||||||
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 | |||
feedback
|
|
MS SQL Database Backup via VBScript @ http://www.joshcook.net/2008/07/ms-sql-database-backup/ | |||
|
feedback
|
|
The mentioned command line utility osql is replaced by sqlcmd in Microsoft SQL Server 2005. | |||||
feedback
|
|
for simple one click backup you could also use this tool: www.sqldog.com | |||
|
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
BEFORE the SELECT | |||
|
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. | |||||||||||||
feedback
|