TransferDatabaseTask.Execute Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Runs the task.
public:
override Microsoft::SqlServer::Dts::Runtime::DTSExecResult Execute(Microsoft::SqlServer::Dts::Runtime::Connections ^ connections, Microsoft::SqlServer::Dts::Runtime::VariableDispenser ^ variableDispenser, Microsoft::SqlServer::Dts::Runtime::IDTSComponentEvents ^ events, Microsoft::SqlServer::Dts::Runtime::IDTSLogging ^ log, System::Object ^ transaction);
public override Microsoft.SqlServer.Dts.Runtime.DTSExecResult Execute (Microsoft.SqlServer.Dts.Runtime.Connections connections, Microsoft.SqlServer.Dts.Runtime.VariableDispenser variableDispenser, Microsoft.SqlServer.Dts.Runtime.IDTSComponentEvents events, Microsoft.SqlServer.Dts.Runtime.IDTSLogging log, object transaction);
override this.Execute : Microsoft.SqlServer.Dts.Runtime.Connections * Microsoft.SqlServer.Dts.Runtime.VariableDispenser * Microsoft.SqlServer.Dts.Runtime.IDTSComponentEvents * Microsoft.SqlServer.Dts.Runtime.IDTSLogging * obj -> Microsoft.SqlServer.Dts.Runtime.DTSExecResult
Public Overrides Function Execute (connections As Connections, variableDispenser As VariableDispenser, events As IDTSComponentEvents, log As IDTSLogging, transaction As Object) As DTSExecResult
Parameters
- connections
- Connections
The Connections collection for the container.
- variableDispenser
- VariableDispenser
The VariableDispenser collection for the container.
- events
- IDTSComponentEvents
An IDTSComponentEvents interface to raise events.
- log
- IDTSLogging
An IDTSLogging interface.
- transaction
- Object
The transaction object that the container is a part of, depending on the value found in the TransactionOption property. This value can be null.
Returns
A DTSExecResult enumeration that indicates the outcome of the execution.
Remarks
The Execute
method is inherited by task hosts and other objects from the Executable abstract class, through the DtsContainer class, and allows the inheriting objects to be run by the run-time engine. The Execute
method inherited by the individual objects is not commonly used in code, and it is recommended that you call the Execute method of the Package if you need to run any of the tasks or containers in the package. However, the Execute
method is available on individual objects should you find a unique circumstance where it is needed.
The main use of the Execute
method is for it to be inherited and overridden when you create a custom task. For more information about how to override the Execute
method, see Coding a Custom Task.
The Execute
method calls the Validate
method implicitly before the package runs. All tasks and objects in the package are reviewed for appropriate settings during validation, including the package, containers, and other components in the package.
If there are no problems encountered in the validation phase that would cause the package to fail, the package object proceeds to call the Execute
method for each task and object in the package.
Pass null
for the transaction parameter when the TransactionOption property is false
. If the TransactionOption property is true
, you can pass null
in the transaction parameter to indicate that the task or container supports transactions but does not participate.