Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Generates a Transact-SQL script that can be used to create or delete the distribution database that the object represents.
Namespace: Microsoft.SqlServer.Replication
Assembly: Microsoft.SqlServer.Rmo (in Microsoft.SqlServer.Rmo.dll)
Syntax
'Declaration
Public Function Script ( _
scriptOption As ScriptOptions _
) As String
'Usage
Dim instance As DistributionDatabase
Dim scriptOption As ScriptOptions
Dim returnValue As String
returnValue = instance.Script(scriptOption)
public string Script(
ScriptOptions scriptOption
)
public:
String^ Script(
ScriptOptions scriptOption
)
member Script :
scriptOption:ScriptOptions -> string
public function Script(
scriptOption : ScriptOptions
) : String
Parameters
- scriptOption
Type: Microsoft.SqlServer.Replication.ScriptOptions
A ScriptOptions value that specifies the scripting options.
Return Value
Type: System.String
A String value that is the script.
Remarks
The scriptOption parameter determines whether to return a creation script or a deletion script. The Script method can be used for an existing object or a new object.
The Script method can be called by any user.