2.9.6 SourceTypeEnum

The SourceTypeEnum type contains enumeration values that are used to specify the type of an input source. The SourceTypeEnum type is referenced by other types in the Microsoft SQL Server Integration Services (SSIS) package file format.

The following is the XSD for the SourceTypeEnum type.

   <xs:simpleType name="SourceTypeEnum">
     <xs:restriction base="xs:string">
       <xs:enumeration value="DirectInput"/>
       <xs:enumeration value="FileConnection"/>
       <xs:enumeration value="Variable"/>
     </xs:restriction>
   </xs:simpleType>

The following table specifies the enumeration values for the SourceTypeEnum type.

Enumeration value

Description

DirectInput

Specifies that the source text is contained inline in a package file as the value of another element.

FileConnection

Specifies that the source text is contained in a file connection.

Variable

Specifies that the source text is contained in a variable.