Share via


Méthode CopySubscriptionDatabase

Copies an existing pull subscription database.

Espace de noms :  Microsoft.SqlServer.Replication
Assembly :  Microsoft.SqlServer.Rmo (en Microsoft.SqlServer.Rmo.dll)

Syntaxe

'Déclaration
Public Sub CopySubscriptionDatabase ( _
    databaseName As String, _
    fileName As String, _
    overwriteExistingFile As Boolean _
)
'Utilisation
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
)

Paramètres

  • databaseName
    Type : System. . :: . .String
    A string value that specifies the name of a pull subscription database to copy.
  • fileName
    Type : 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
    Type : 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.

Exceptions

Exception Condition
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.

Notes

Notes

Cette fonctionnalité sera supprimée dans une prochaine version de Microsoft SQL Server. Évitez d'utiliser cette fonctionnalité dans de nouveaux travaux de développement, et modifiez dès que possible les applications qui utilisent actuellement cette fonctionnalité.

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.

This method is only available with instances of SQL Server 2000 and SQL Server 2005.

This namespace, class, or member is supported only in version 2.0 of the .NET Framework.