Aracılığıyla paylaş


Backup.Action Özelliği

Alır veya gerçekleştirilecek yedek türünü ayarlar.

Ad Alanı:  Microsoft.SqlServer.Management.Smo
Derleme:  Microsoft.SqlServer.SmoExtended (Microsoft.SqlServer.SmoExtended içinde.dll)

Sözdizimi

'Bildirim
Public Property Action As BackupActionType
    Get
    Set
'Kullanım
Dim instance As Backup
Dim value As BackupActionType

value = instance.Action

instance.Action = value
public BackupActionType Action { get; set; }
public:
property BackupActionType Action {
    BackupActionType get ();
    void set (BackupActionType value);
}
member Action : BackupActionType with get, set
function get Action () : BackupActionType
function set Action (value : BackupActionType)

Özellik Değeri

Tür: Microsoft.SqlServer.Management.Smo.BackupActionType
A BackupActionType gerçekleştirilecek yedek türünü temsil eden nesne.Varsayılan değer olan küme için Database.

Açıklamalar

Microsoft SQL Server can back up an entire database, that portion of a database changed after the last backup, one or more operating system files containing table or index data, or the transaction log of a database.

Değeri Action özellik, Uygulanabilirlik ve ilgili yorumunu belirler Backup nesne özellikleri.

Örnekler

VB

'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server
'Reference the AdventureWorks2008R2AdventureWorks2008R22008R2 database.
Dim db As Database
db = srv.Databases("AdventureWorks2008R2AdventureWorks2008R22008R2")
'Define a Backup object variable. 
Dim bk As New Backup
'Specify the type of backup, the description, the name, and the database to be backed up.
bk.Action = BackupActionType.Database

PowerShell

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