IDTSComponentMetaData100.IncrementPipelinePerfCounter Method (UInt32, UInt32)

 

Applies To: SQL Server 2016 Preview

Increments a data flow performance counter.

Namespace:   Microsoft.SqlServer.Dts.Pipeline.Wrapper
Assembly:  Microsoft.SqlServer.DTSPipelineWrap (in Microsoft.SqlServer.DTSPipelineWrap.dll)

Syntax

[DispIdAttribute(123)]
void IncrementPipelinePerfCounter(
    uint dwCounterID,
    uint dwDifference
)
[DispIdAttribute(123)]
void IncrementPipelinePerfCounter(
    unsigned int dwCounterID,
    unsigned int dwDifference
)
[<DispIdAttribute(123)>]
abstract IncrementPipelinePerfCounter : 
        dwCounterID:uint32 *
        dwDifference:uint32 -> unit
<DispIdAttribute(123)>
Sub IncrementPipelinePerfCounter (
    dwCounterID As UInteger,
    dwDifference As UInteger
)

Parameters

  • dwCounterID
    Type: System.UInt32

    The ID of the performance counter to increment.

  • dwDifference
    Type: System.UInt32

    The amount by which to increment the counter.

Remarks

This method increments one of the following data flow performance counters.

Performance Counter

ID

DTS_PIPELINE_CTR_ROWSREAD

101

DTS_PIPELINE_CTR_ROWSWRITTEN

103

DTS_PIPELINE_CTR_BLOBBYTESREAD

116

DTS_PIPELINE_CTR_BLOBBYTESWRITTEN

118

See Also

IDTSComponentMetaData100 Interface
Microsoft.SqlServer.Dts.Pipeline.Wrapper Namespace

Return to top