SSISには、新しいデータをテーブルに挿入するだけの機能を実行するルックアップトランスフォームがあります。これをtableYと呼びます。したがって、プロセスは次のとおりです。
0) Aggregate (group by) the primary key for the input row
1) Do a lookup with the current input row on tableY using the primary key
2) Insert the input row if there is not a match (the current row does not exist in tableY)
「主キー列の整合性制約に違反しました」というエラーが表示されます
すべての入力が一意であり、変換の出力が「ルックアップ一致出力なし」であるため、これはどのように可能ですか?