Nota:
El acceso a esta página requiere autorización. Puede intentar iniciar sesión o cambiar directorios.
El acceso a esta página requiere autorización. Puede intentar cambiar los directorios.
Esta API admite la infraestructura de SQL Server 2012 y no está prevista su utilización directa desde el código.
Called when a task is about to execute. This event is raised by a task or a container immediately before it runs.
Espacio de nombres: Microsoft.SqlServer.Dts.Runtime.Wrapper
Ensamblado: Microsoft.SqlServer.DTSRuntimeWrap (en Microsoft.SqlServer.DTSRuntimeWrap.dll)
Sintaxis
'Declaración
Sub OnPreExecute ( _
pExec As IDTSExecutable100, _
ByRef pbFireAgain As Boolean _
)
'Uso
Dim instance As IDTSEvents100
Dim pExec As IDTSExecutable100
Dim pbFireAgain As Boolean
instance(pExec, pbFireAgain)
void OnPreExecute(
IDTSExecutable100 pExec,
ref bool pbFireAgain
)
void OnPreExecute(
[InAttribute] IDTSExecutable100^ pExec,
bool% pbFireAgain
)
abstract OnPreExecute :
pExec:IDTSExecutable100 *
pbFireAgain:bool byref -> unit
function OnPreExecute(
pExec : IDTSExecutable100,
pbFireAgain : boolean
)
Parámetros
- pExec
Tipo: Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSExecutable100
The task that is to execute next.
- pbFireAgain
Tipo: System.Boolean%
A Boolean that indicates this should continue firing or stop firing. A value of true indicates that it should continue firing.
Comentarios
For more information, see IDTSEvents.