H君。SSIS 用のカスタム コンポーネントを開発しています。入力の処理中に問題が発生しました。問題は、「ProcessInput」メソッドが複数回実行されることです。この場合は2回。
これはプロセス入力スニペットです。
public override void ProcessInput(int inputID, PipelineBuffer buffer)
{
IDTSInput90 input = ComponentMetaData.InputCollection.GetObjectByID(inputID);
if (input.InputColumnCollection.Count > 0)
{
while (buffer.NextRow())
{
try
{
for (int columnIndex = 0; columnIndex < input.InputColumnCollection.Count; columnIndex++)
{
ColumnInfo columnInfo = _columnInfos[input.InputColumnCollection[columnIndex].ID];
IDTSInputColumn90 inputColumn = input.InputColumnCollection[columnIndex];
try
{
//write to destination
}
catch (Exception writeEx)
{
throw new Exception("Couldn't write to destination");
}
}
}
catch (Exception ex)
{
throw ex;
}
}
}
else
{
throw new Exception("There is no columns in the input collection");
}
}
2回呼び出される理由がわかりません。これはデータフローです:
データフロー http://img371.imageshack.us/img371/3001/dataflowprocessinputrb6.png
そして、これはマッピング ウィンドウです: マッピング ウィンドウ http://img78.imageshack.us/img78/3772/mappingprocessinputzs2.png