次の方法で共有


MediaDescription プロパティ

バックアップ セットを格納するメディアの説明テキストを取得します。値の設定も可能です。

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

構文

'宣言
Public Property MediaDescription As String
    Get
    Set
'使用
Dim instance As Backup
Dim value As String

value = instance.MediaDescription

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

プロパティ値

型: System. . :: . .String
メディアの説明テキストを表す String 値です。

説明

MediaDescription は、テープ メディアの初期化の際に、そのメディアに書き込まれます。

使用例

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")
Dim bk As New Backup
bk.Action = BackupActionType.Database
bk.Database = "AdventureWorks2008R2"
bk.MediaDescription = "External hard drive"

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.Action = [Microsoft.SqlServer.Management.Smo.BackupActionType]::Database
$bk.Database = "AdventureWorks2008R2"
$bk.MediaDescription = "External hard drive"