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? |
|||||||||
|
|
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. |
|||||
|
|
MS SQL Database Backup via VBScript @ http://www.joshcook.net/2008/07/ms-sql-database-backup/ |
|||
|
|
|
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:
|
||||
|
|
|
@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 |
|||
|
|
|
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. |
|||||||||||||
|