Hi All.
When i try to execute the below query in SQL Execute Task:
exec ?=Authors_insert ? , from here i call the stored procedure named Authors_insert as given below:
alter procedure Authors_Insert
(
@FirstName Varchar(20)
)
as
insert into Authors (FirstName) values (@FirstName)
Please find below the screenshots of my SQL Execute Task:
I am getting the below mentioned error message:
SSIS Error: [Execute SQL Task] Error: Executing the query "exec ?=Authors_insert ?" failed with the following error: "Value does not fall within the expected range.". Possible failure reasons: Problems with the query, "ResultSet" property not set correctly.
Ramasubramanian S