Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2005 Forums
 SQL Server Administration (2005)
 Copy Only Backup Method - No Restore Set

Author  Topic 

magoo5289
Starting Member

2 Posts

Posted - 2009-08-03 : 15:57:27
We are using the copy only t-sql method to back up a few databases, however when we try and restore the databases, ther eis no restore set to choose. Everything else with the job seems to work fine. This is on multiple server running SQL 2005 SP3. Has anyone else encountered this?

Sample script
BACKUP DATABASE netflow
TO DISK = 'D:\WithoutCopyOnly_AdventureWorks.bak'
WITH COPY_ONLY
GO

Return message
Processed 336 pages for database 'netflow', file 'Netflow' on file 1.
Processed 1 pages for database 'netflow', file 'Netflow_log' on file 1.
BACKUP DATABASE successfully processed 337 pages in 1.713 seconds (1.607 MB/sec).

tkizer
Almighty SQL Goddess

38200 Posts

Posted - 2009-08-03 : 16:22:02
Have you tried running the RESTORE command rather than using the GUI?

Tara Kizer
Microsoft MVP for Windows Server System - SQL Server
http://weblogs.sqlteam.com/tarad/

Subscribe to my blog

"Let's begin with the premise that everything you've done up until this point is wrong."
Go to Top of Page

magoo5289
Starting Member

2 Posts

Posted - 2009-08-04 : 10:33:16
So simple... Thanks.. I swear it did work through the GUI before.
Go to Top of Page
   

- Advertisement -