Właściwość Backup.MediaDescription
Pobiera lub ustawia tekstowy opis nośnika, który zawiera zestaw kopii zapasowych.
Przestrzeń nazw: Microsoft.SqlServer.Management.Smo
Zestaw: Microsoft.SqlServer.SmoExtended (w Microsoft.SqlServer.SmoExtended.dll)
Składnia
'Deklaracja
Public Property MediaDescription As String
Get
Set
'Użycie
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)
Wartość właściwości
Typ: System.String
A String wartość zawiera tekstowy opis nośnika.
Uwagi
MediaDescription Jest zapisywane na nośniku taśmy, gdy nośnik jest inicjowany.
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")
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"