Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Creates SSIS server execution.
This API is not CLS-compliant.
Namespace: Microsoft.SqlServer.Dts.Runtime
Assembly: Microsoft.SqlServer.ManagedDTS (in Microsoft.SqlServer.ManagedDTS.dll)
Syntax
'Declaration
<CLSCompliantAttribute(False)> _
Public Function CreateSsisServerExecution ( _
serverName As String, _
packagePath As String, _
referenceId As String, _
use32BitRuntime As Boolean _
) As IDTSServerExecution100
'Usage
Dim instance As Application
Dim serverName As String
Dim packagePath As String
Dim referenceId As String
Dim use32BitRuntime As Boolean
Dim returnValue As IDTSServerExecution100
returnValue = instance.CreateSsisServerExecution(serverName, _
packagePath, referenceId, use32BitRuntime)
[CLSCompliantAttribute(false)]
public IDTSServerExecution100 CreateSsisServerExecution(
string serverName,
string packagePath,
string referenceId,
bool use32BitRuntime
)
[CLSCompliantAttribute(false)]
public:
IDTSServerExecution100^ CreateSsisServerExecution(
String^ serverName,
String^ packagePath,
String^ referenceId,
bool use32BitRuntime
)
[<CLSCompliantAttribute(false)>]
member CreateSsisServerExecution :
serverName:string *
packagePath:string *
referenceId:string *
use32BitRuntime:bool -> IDTSServerExecution100
public function CreateSsisServerExecution(
serverName : String,
packagePath : String,
referenceId : String,
use32BitRuntime : boolean
) : IDTSServerExecution100
Parameters
- serverName
Type: System.String
The server name.
- packagePath
Type: System.String
The path for the package.
- referenceId
Type: System.String
The reference identifier.
- use32BitRuntime
Type: System.Boolean
Indicates if the 32-bit runtime is used to run the package on a 64-bit operating system.
Return Value
Type: Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSServerExecution100
The created SSIS server.