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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SQL Server Backup problem 1

Status
Not open for further replies.

MMund

Programmer
Oct 9, 2007
57
0
0
CA
I am a newbie to this part of SQL Server, and am attempting to do a backup, and get this error:

Backup failed. Set property devices to accomplish this action.

This worked yesterday, but not now, and I'm not doing anything differently. Ideas?
 
Don't know. First thing that would help us is to know what version of SQL Server you are using and how you are trying to do the backup.

-SQLBill

The following is part of my signature block and is only intended to be informational.
Posting advice: FAQ481-4875
 
Version is 2005, we are going though the Management Studio, right-clicking on the database we want to back up, and then going through Tasks>Backup.
 
Which backup device do you select?

Select disc (and not tape) then select 'add' and enter a path and filename(like dbname.BAK) for your backup.

Juliane
 
I prefer to use TSQL commands instead of the GUI.
Code:
BACKUP DATABASE mydb
TO DISK = 'c:\backups\mydb.bak'
You can make the path be wherever you need the file to go.

Refer to the Books OnLine that come with SQL Server.

-SQLBill

The following is part of my signature block and is only intended to be informational.
Posting advice: FAQ481-4875
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top