Я пытаюсь сделать следующее в BIML:FuzzyLookup в BIML
Я на немного потери о том, как сделать это в BIML. Вот то, что я пробовал:
<FuzzyLookup
Name="Fuzzy Lookup"
ConnectionName="WO7"
Exhaustive="true"
AutoPassThroughInputColumns="true"
>
<ExternalReferenceTableInput Table="map.AgencyWO7" />
<Inputs>
<Column SourceColumn="AgencyName" TargetColumn="AgencyName" />
</Inputs>
<Outputs>
<Column SourceColumn="AgencyId" TargetColumn="AgencyIdWO7" />
<Column SourceColumn="AgencyName" TargetColumn="AgencyNameWO7" />
</Outputs>
В результате получается следующая ошибка:
(-1,-1) : Error 5 : The input column for the Fuzzy Lookup Fuzzy Lookup references external column that cannot be found in the reference table. Verify that the input mapping references a valid column in the reference table. Property TargetColumn. EmitSsis. There were errors during compilation. See compiler output for more information.
Может быть, вы можете найти пример кода здесь: http://stackoverflow.com/q/21755311/416988 – lucazav