私は変数からsqlコマンドで以下のクエリを使用して2つの異なるテーブルからデータを取得しています。外部カラム "y.col1"(598)を外部カラムから削除する必要があります
SELECT x.*, y.col1, y.col2
FROM table1 AS x
INNER JOIN table2 AS y ON y.AccID = x.accID
は私のビジネスロジックを1として、私は、変数からSQLコマンドとしてクエリを使用する必要があります。 私は真にDelayValidationを設定した後、パッケージを実行すると、私は次のエラーを取得:
"[OLE source **table1**]] Warning: The external columns for component
"OLE source" (1) are out of synchronization with the data source columns.
The external column "**col2**" (601) needs to be removed from the external columns.
The external column "**Col1**" (598) needs to be removed from the external columns."..
[SSIS.Pipeline] Error: "component "OLE source **table1** " (1)" failed validation
and returned validation status "VS_NEEDSNEWMETADATA".
あなたはチェックすることに言及していますが、どうすればエラーが消えますか?私は問題を解決するのに役立つたびにボタンがないようです。 –