Backup.CopyOnly 속성

Gets or sets a Boolean property value that specifies the backup is a copy-only backup. This does not affect the sequence of backups in the usual backup schedule.

네임스페이스:  Microsoft.SqlServer.Management.Smo
어셈블리:  Microsoft.SqlServer.SmoExtended(Microsoft.SqlServer.SmoExtended.dll)

구문

‘선언
Public Property CopyOnly As Boolean 
    Get 
    Set
‘사용 방법
Dim instance As Backup 
Dim value As Boolean 

value = instance.CopyOnly

instance.CopyOnly = value
public bool CopyOnly { get; set; }
public:
property bool CopyOnly {
    bool get ();
    void set (bool value);
}
member CopyOnly : bool with get, set
function get CopyOnly () : boolean 
function set CopyOnly (value : boolean)

속성 값

유형: System.Boolean
A Boolean value that specifies whether the backup is a copy-only backup.If True, the backup is a copy-only backup.If False (default), the backup is not a copy-only backup, and is part of the usual sequence of backups.

주의

A copy-only backup does not affect your overall backup and restore procedures for the database.

Copy-only backups were introduced in SQL Server 2005 for use in situations in which a backup is taken for a special purpose, such as backing up the log before an online file restore. Typically, a copy-only log backup is used one time and then deleted.

VB

'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server
'Reference the AdventureWorks2012 database.
Dim db As Database
db = srv.Databases("AdventureWorks2012")
Dim bk As New Backup
bk.Action = BackupActionType.Database
bk.Database = "AdventureWorks2012"
bk.CopyOnly = true

PowerShell

$srv = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
$db = New-Object Microsoft.SqlServer.Management.Smo.Database
$db = $srv.Databases.Item("AdventureWorks2012")
$bk = new-object Microsoft.SqlServer.Management.Smo.Backup
$bk.Action = [Microsoft.SqlServer.Management.Smo.BackupActionType]::Database
$bk.Database = "AdventureWorks2012"
$bk.CopyOnly = $TRUE

참고 항목

참조

Backup 클래스

Microsoft.SqlServer.Management.Smo 네임스페이스

관련 자료

차등 백업(SQL Server)

BACKUP(Transact-SQL)

데이터베이스 및 트랜잭션 로그 백업 및 복원