I持ってSSISの私のSQL実行タスクで次のINSERT文:私はそれがうまく実行され、テーブルにレコードを挿入パラメータを提供するタスクの中にそれを実行SSIS SQL実行タスクのSQLコマンドを発行し
INSERT INTO dbo.SSISLogTest
(NodeID, BusinessDate, StartDate, StopDate, StepName, RecordCount, Message, Status, UserID)
VALUES (?,?,?,?,?,?,?,?,?)
。
私はパッケージを実行すると、このステップは、次のエラーで失敗します。
"[Execute SQL Task] Error: Executing the query "INSERT INTO dbo.SSISLogTest ..." failed with the following error: "Parameter name is unrecognized.". Possible failure reasons: Problems with the query, "ResultSet" property not set correctly, parameters not set correctly, or connection not established correctly. "
私はあなたがSSISに正しくパラメータを設定していないと思います。あなたはどのようにそれをやったの詳細を教えてください?変数を介してパラメータをパッケージに渡すことは、SSISでは控え目であり、特定の方法で実行されないとエラーが発生する可能性があります。 – mwan