Partager via


Propriété Restore.KeepReplication

Gets or sets a Boolean property value that specifies whether to maintain a replication configuration during a restore operation.

Espace de noms :  Microsoft.SqlServer.Management.Smo
Assembly :  Microsoft.SqlServer.SmoExtended (en Microsoft.SqlServer.SmoExtended.dll)

Syntaxe

'Déclaration
Public Property KeepReplication As Boolean 
    Get 
    Set
'Utilisation
Dim instance As Restore 
Dim value As Boolean 

value = instance.KeepReplication

instance.KeepReplication = value
public bool KeepReplication { get; set; }
public:
property bool KeepReplication {
    bool get ();
    void set (bool value);
}
member KeepReplication : bool with get, set
function get KeepReplication () : boolean 
function set KeepReplication (value : boolean)

Valeur de propriété

Type : System.Boolean
A Boolean value that indicates whether to keep the replication configuration.If True, the replication configuration is kept in place.If False (default), the replication configuration is ignored by the restore operation.

Exemples

The following code example demonstrates how to set a replication configuration so that it will be saved during a restore operation.

VB

Dim rs As Restore
rs = New Restore
rs.KeepReplication = true

PowerShell

$rs = new-object Microsoft.SqlServer.Management.Smo.Restore
$rs.KeepReplication = $TRUE

Voir aussi

Référence

Restore Classe

Espace de noms Microsoft.SqlServer.Management.Smo

Autres ressources

RESTORE (Transact-SQL)

Sauvegarde et restauration des bases de données SQL Server