Backup.BackupSetDescription プロパティ

特定のバックアップ セットの説明テキストを取得します。値の設定も可能です。

名前空間:  Microsoft.SqlServer.Management.Smo
アセンブリ:  Microsoft.SqlServer.SmoExtended (Microsoft.SqlServer.SmoExtended.dll)

構文

'宣言
Public Property BackupSetDescription As String 
    Get 
    Set
'使用
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)

プロパティ値

型: System.String
バックアップ セットの説明テキストを表す String 値です。既定値は空の文字列です。

説明

BackupSetDescription プロパティ値の上限は 255 文字です。

使用例

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")
'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 AdventureWorks2012"
bk.Database = "AdventureWorks2012"

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.BackupSetDescription = "Full backup of AdventureWorks2012"
$bk.Database = "AdventureWorks2012"

関連項目

参照

Backup クラス

Microsoft.SqlServer.Management.Smo 名前空間

その他の技術情報

BACKUP (Transact-SQL)