Udostępnij za pośrednictwem


Właściwość Backup.BackupSetDescription

Pobiera lub ustawia opis tekstowy dla danego zestaw kopii zapasowych.

Przestrzeń nazw:  Microsoft.SqlServer.Management.Smo
Zestaw:  Microsoft.SqlServer.SmoExtended (w Microsoft.SqlServer.SmoExtended.dll)

Składnia

'Deklaracja
Public Property BackupSetDescription As String
    Get
    Set
'Użycie
Dim instance As Backup
Dim value As String

value = instance.BackupSetDescription

instance.BackupSetDescription = value
public string BackupSetDescription { get; set; }
public:
property String^ BackupSetDescription {
    String^ get ();
    void set (String^ value);
}
member BackupSetDescription : string with get, set
function get BackupSetDescription () : String
function set BackupSetDescription (value : String)

Wartość właściwości

Typ: System.String
A String wartość, która zawiera tekstowy opis zestaw kopii zapasowych.Domyślna wartość to puste ciąg.

Uwagi

BackupSetDescription Wartość właściwość jest ograniczona do 255 znaków.

Przykłady

VB

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

PowerShell

$srv = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
$db = New-Object Microsoft.SqlServer.Management.Smo.Database
$db = $srv.Databases.Item("AdventureWorks2008R2")
$bk = new-object Microsoft.SqlServer.Management.Smo.Backup
$bk.BackupSetDescription = "Full backup of AdventureWorks2008R2"
$bk.Database = "AdventureWorks2008R2"