IDTSOutput100 인터페이스

Contains the collection of IDTSOutputColumn100 columns available to downstream components in a graph.

네임스페이스:  Microsoft.SqlServer.Dts.Pipeline.Wrapper
어셈블리:  Microsoft.SqlServer.DTSPipelineWrap(Microsoft.SqlServer.DTSPipelineWrap.dll)

구문

‘선언
<GuidAttribute("89B8E306-7C2A-472F-8850-7202B4DAF17B")> _
Public Interface IDTSOutput100 _
    Inherits IDTSObject100
‘사용 방법
Dim instance As IDTSOutput100
[GuidAttribute("89B8E306-7C2A-472F-8850-7202B4DAF17B")]
public interface IDTSOutput100 : IDTSObject100
[GuidAttribute(L"89B8E306-7C2A-472F-8850-7202B4DAF17B")]
public interface class IDTSOutput100 : IDTSObject100
[<GuidAttribute("89B8E306-7C2A-472F-8850-7202B4DAF17B")>]
type IDTSOutput100 =  
    interface 
        interface IDTSObject100 
    end
public interface IDTSOutput100 extends IDTSObject100

IDTSOutput100 유형에서 다음 멤버를 표시합니다.

속성

  이름 설명
공용 속성 Buffer Gets the ID of the PipelineBuffer allocated for an IDTSOutput100 object.
공용 속성 Component Gets the IDTSComponentMetaData100 of an IDTSOutput100 object.
공용 속성 CustomPropertyCollection Gets the collection of IDTSCustomProperty100 objects defined for an IDTSOutput100 object.
공용 속성 Dangling Gets or sets a value that notifies the data flow engine that the IDTSOutput100 can be unattached.
공용 속성 DeleteOutputOnPathDetached Gets or sets a value that determines whether the data flow engine deletes an IDTSOutput100 object when it is detached from an IDTSPath100 object.
공용 속성 Description Gets or sets the description of an IDTSOutput100 object.
공용 속성 ErrorOrTruncationOperation Gets or sets text that describes the error or truncation operation of an IDTSOutput100 object.
공용 속성 ErrorRowDisposition Gets or sets a value that specifies how a component proceeds when an error occurs while processing the columns in the output at run time.
공용 속성 ExclusionGroup Gets or sets the ExclusionGroup property of an IDTSOutput100 object.
공용 속성 ExternalMetadataColumnCollection Gets the IDTSExternalMetadataColumnCollection100 of an IDTSOutput100 object.
공용 속성 HasSideEffects Gets or sets a value that indicates whether a data flow component should be removed or remain in the execution plan of a data flow task when its input is not attached to an upstream component and when the RunInOptimizedMode property of the Data Flow task is true.
공용 속성 ID Gets or sets the ID property of an IDTSOutput100 object.
공용 속성 IdentificationString Gets a string that uniquely identifies an IDTSOutput100 object.
공용 속성 IsAttached Gets a value that indicates if the IDTSOutput100 object is attached to another component via an IDTSPath100object.
공용 속성 IsErrorOut Gets or sets a value that indicates whether an IDTSOutput100 object is an error output.
공용 속성 IsSorted Gets a value that indicates whether the columns in an output object are sorted.
공용 속성 Name Gets or sets the name of an IDTSOutput100.
공용 속성 ObjectType Gets the DTSObjectType of an IDTSOutput100 object.
공용 속성 OutputColumnCollection Gets the collection of IDTSOutputColumn100 objects defined for an IDTSOutput100 object.
공용 속성 SynchronousInputID Gets or sets the ID of an IDTSInput100 that is synchronous to an IDTSOutput100.
공용 속성 TruncationRowDisposition Gets or sets a value that determines how a component processes a row where a column has been truncated as a result of its operation on a column in the row.

맨 위로 이동

주의

The IDTSOutput100 object contains the collection of IDTSOutputColumn100 columns exposed by a data flow component. The output is connected to the IDTSInput100 of a downstream component to establish the flow of data between two components.

An output can be either synchronous to an IDTSInput100 object, or asynchronous, and is specified by the SynchronousInputID property.

The columns in the output column collection are available to downstream components. Columns are added and removed from the collection at design time.

The following code example demonstrates a component that creates an IDTSOutput100 that is synchronous to its input during a call to the ProvideComponentProperties method.

public override void ProvideComponentProperties()
{
    IDTSInput100 input = ComponentMetaData.InputCollection.New();
    input.Name = "Input";

    IDTSOutput100 output = ComponentMetaData.OutputCollection.New();
    output.Name = "Output";
    output.SynchronousInputID = input.ID;
}
Public Overrides Sub ProvideComponentProperties() 
 Dim input As IDTSInput100 = ComponentMetaData.InputCollection.New 
 input.Name = "Input" 
 Dim output As IDTSOutput100 = ComponentMetaData.OutputCollection.New 
 output.Name = "Output" 
 output.SynchronousInputID = input.ID 
End Sub

참고 항목

참조

Microsoft.SqlServer.Dts.Pipeline.Wrapper 네임스페이스