I am Execute SQL Task on SSIS 2005. ADO.NET connection type and Stored Procedure Input Parameter. Not working. Syntax error I read some documentation and blogs but its not working for me. This is what I have on SQL Statement of the Exeute sql task (ADO.NET)
EXEC StoredProcedureName @ParameterName =
It gives different errors on different syntax I tried. All failture Problems with the query, "ResultSet" property not set correctly, parameters not set correctly, or connection not established correctly.
I tried all combination like EXEC StoredProcedureName @ParameterName = ? StoredProcedureName ? StoredProcedureName @ParameterName = ? etc etc in vain
I checked the parameter type and its fine
The same setup works if I change the connection type to OLE DB. But I don't want OLE DB and want to change it to ADO.NET
I tried as per Microsoft specification but that also didn't work per Micrtosoft If IsQueryStoredProcedure is set to False, EXEC uspGetBillOfMaterials @StartProductID, @CheckDate
I tried changing all combinations on IsQueryStoredProcedure property also in vain I mapped parameter name,order and variable on Parameter mappings properly still no luck
as i said it works with OLEDB but does not work with ADO.NET even after changing syntax. Please help
I have another task on ADO.NET and it works fine because it has no input parameter