我有我的執行SQL任務以下INSERT語句在SSIS: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參數設置的正確。你能詳細說明你是如何做到的嗎?將參數通過變量傳遞到包中很麻煩,如果不以特定的方式完成,可能會出錯。 – mwan