SSIS error
Good morning everyone,
I'm getting the following error
[Execute SQL Task] Error: Executing the query "DECLARE @ReturnCode INTEGER = 0;
[Execute SQL Task] Error: Executing the query "DECLARE @RerurnCode INTEGER = 0;
excute ? OUTPU..." failed with the following error: "No value given for one or more required parameters.". Possible failure reasons: Problems with the query, "ResultSet" property not set correctly, parameters not set correctly, or connection not established correctly.
where the SQL task is defined this way:
DECLARE @RerurnCode INTEGER = 0;
excute ? OUTPUT = dbo.process_incoming_facets_terminations_from_missing;
SELECT ?;
I'm not sure what is wrong with the code. The @RetunCode in defined this way:
Thanks in advance.