Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to do a backup of an SQL MSDE database

Status
Not open for further replies.

zerbruss

Technical User
Apr 21, 2004
1
DE
Hello,

please excuse my poor english.

I´d like to backup an SQL MSDE database with ArcServe2000. I want to use the ArcServe 2000 SQL Backup Agent. Is it possible? And can you tell me how to do this?
The Server OS is Windows 2000.

Greetings

Zer´
 
Instead of purchasing a license for the SQL Agent, here is what we are doing to backup our MSDE database:
Create a Scheduled Task using the path to osql.exe like so:
F:\MSSQL7\Binn\osql.exe -Usa -P -i f:\mssql7\jobs\BESMgmt.cmd

And the BESMgmt.cmd contains the following: (replace the BESMgmt with the database name you want to back up)
backup database BESMgmt to DISK = 'F:\MSSQL7\Backup\BESMgmt.bak'
backup database master to DISK = 'F:\MSSQL7\Backup\master.bak'
backup database msdb to DISK = 'F:\MSSQL7\Backup\msdb.bak'

This backs up the databases BESMgmt, master, and msdb to files which are then backed up to tape at night.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top