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?
|
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?
|
||||||
|
|
|
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. |
|||
|
|
|
Schedule the following to backup all Databases:
There are also more details on my blog: how to Automate SQL Server Express Backups. |
||||||||||||
|
|
|
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 |
||
|
|
|
|
The mentioned command line utility osql is replaced by sqlcmd in Microsoft SQL Server 2005. |
||
|
|
|
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. |
||||||||
|