|
|
|
SSC Journeyman
      
Group: General Forum Members
Last Login: Thursday, October 14, 2010 6:06 AM
Points: 76,
Visits: 199
|
|
Hi,
What is Copy-Only backup and how does it works?
thanks Koteswarrao
|
|
|
|
|
SSC-Dedicated
           
Group: General Forum Members
Last Login: Today @ 11:21 AM
Points: 37,686,
Visits: 29,943
|
|
Have you looked in Books Online? I'm pretty sure the answer is in there.
Gail Shaw Microsoft Certified Master: SQL Server 2008, MVP SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
We walk in the dark places no others will enter We stand on the bridge and no one may pass
|
|
|
|
|
SSCertifiable
       
Group: General Forum Members
Last Login: Today @ 7:36 AM
Points: 5,201,
Visits: 11,153
|
|
Hi
copy_only is a new feature, it is basically a backup that does not interfere with the current backup chain. As Gail said, BOL does document this feature
-----------------------------------------------------------------------------------------------------------
"Ya can't make an omelette without breaking just a few eggs"
|
|
|
|
|
SSCommitted
      
Group: General Forum Members
Last Login: 2 days ago @ 8:09 AM
Points: 1,558,
Visits: 1,396
|
|
|
|
|
|
SSCertifiable
       
Group: General Forum Members
Last Login: Today @ 7:36 AM
Points: 5,201,
Visits: 11,153
|
|
let me re phrase that.
New in SQL Server 2005!
-----------------------------------------------------------------------------------------------------------
"Ya can't make an omelette without breaking just a few eggs"
|
|
|
|
|
Hall of Fame
       
Group: General Forum Members
Last Login: Today @ 9:58 AM
Points: 3,574,
Visits: 5,113
|
|
Perry Whittle (8/9/2010) let me re phrase that.
New in SQL Server 2005!
I still refer to numerous 2005 features as "new". When you have been using the product since 6.5 first came out . . . 
In any case, BOL is a WONDERFUL resource. I do SQL Server Relational Engine work every day and have for over a dozen years, and BOL is ALWAYS open on my desktop!!!
Best,
Kevin G. Boles SQL Server Consultant SQL MVP 2007-2012 TheSQLGuru at GMail
|
|
|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Today @ 3:44 AM
Points: 12,
Visits: 932
|
|
No normal master database entries are added to aid recovery but when I run
backup database thedatabase to disk='c:\thedatabase.bak' with copy_only
I still get a up to date last backup date in database properties in SQL Server Management Studio.
Useful but could be confusing...
J
|
|
|
|
|
SSCertifiable
       
Group: General Forum Members
Last Login: Today @ 7:36 AM
Points: 5,201,
Visits: 11,153
|
|
TheSQLGuru (8/10/2010)
I still refer to numerous 2005 features as "new". When you have been using the product since 6.5 first came out . . .  In any case, BOL is a WONDERFUL resource. I do SQL Server Relational Engine work every day and have for over a dozen years, and BOL is ALWAYS open on my desktop!!!
Hi Kevin
the only reason i referred to the option as new was because the OP has posted in the SQL Server 2005 forum and at this version it was a new option!
Regards
-----------------------------------------------------------------------------------------------------------
"Ya can't make an omelette without breaking just a few eggs"
|
|
|
|
|
SSC Veteran
      
Group: General Forum Members
Last Login: Sunday, May 29, 2011 9:01 AM
Points: 211,
Visits: 4,106
|
|
hi Jason,
it will be in the backupset table.
however, the is_copy_only field will be 1, which confirms it is a copy_only backup.
|
|
|
|
|
SSC Rookie
      
Group: General Forum Members
Last Login: Thursday, March 22, 2012 11:02 PM
Points: 33,
Visits: 156
|
|
Copy-only backups are new to SQL Server 2005. They allow a backup of any type to be taken without affecting any other backups. Normally, a database backup is recorded in the database itself and is identified as part of a chain that can be used for restore. For example, if a full database backup is taken, any subsequent differential database backups use this full database backup as their base. A restore process utilizing the differential database backups would have a reference to the full database backup, and that backup would have to be available. Copy-only backups do not affect the restore chain. They are useful in situations in which you simply want to get a copy of the database for testing purposes or things of this nature. Copy-only backups are not supported via SQL Server Management Studio (SSMS) and must be performed via the Transact-SQL (T-SQL) BACKUP command.
|
|
|
|