Freigeben über


ReplicationServer.CopySubscriptionDatabase-Methode

Copies an existing pull subscription database.

Namespace:  Microsoft.SqlServer.Replication
Assembly:  Microsoft.SqlServer.Rmo (in Microsoft.SqlServer.Rmo.dll)

Syntax

'Declaration
Public Sub CopySubscriptionDatabase ( _
    databaseName As String, _
    fileName As String, _
    overwriteExistingFile As Boolean _
)
'Usage
Dim instance As ReplicationServer 
Dim databaseName As String 
Dim fileName As String 
Dim overwriteExistingFile As Boolean

instance.CopySubscriptionDatabase(databaseName, _
    fileName, overwriteExistingFile)
public void CopySubscriptionDatabase(
    string databaseName,
    string fileName,
    bool overwriteExistingFile
)
public:
void CopySubscriptionDatabase(
    String^ databaseName, 
    String^ fileName, 
    bool overwriteExistingFile
)
member CopySubscriptionDatabase : 
        databaseName:string * 
        fileName:string * 
        overwriteExistingFile:bool -> unit
public function CopySubscriptionDatabase(
    databaseName : String, 
    fileName : String, 
    overwriteExistingFile : boolean
)

Parameter

  • databaseName
    Typ: System.String
    A string value that specifies the name of a pull subscription database to copy.
  • fileName
    Typ: System.String
    A string value that specifies the complete path, including file name, to which a copy of the data portion (.mdf) file is saved.
  • overwriteExistingFile
    Typ: System.Boolean
    A Boolean value that specifies whether or not to overwrite an existing file of the same name specified in the fileName parameter, if there is one.

Ausnahmen

Ausnahme Bedingung
ApplicationException

When the server is not running on Microsoft SQL Server 2000 or later.

ArgumentException

If a parameter is null, contains null characters, or exceeds 128 bytes.

Hinweise

HinweisHinweis

Diese Funktion wird in zukünftigen Versionen von Microsoft SQL Server nicht mehr bereitgestellt. Verwenden Sie diese Funktion beim Entwickeln neuer Anwendungen nicht, und planen Sie so bald wie möglich das Ändern von Anwendungen, in denen es zurzeit verwendet wird.

Only single file databases can be copied.

The CopySubscriptionDatabase method can be called by a member of the db_owner fixed database role of the database that is being copied.

The CopySubscriptionDatabase method is equivalent to the sp_copysubscription (Transact-SQL) stored procedure.

Siehe auch

Verweis

ReplicationServer Klasse

Microsoft.SqlServer.Replication-Namespace