I'm having difficulty passing a parameter into stored procedure in my SSIS OLE DB Source. I keep getting
[Get ************ [2]] Error: The SQL command requires a parameter named "@numberOfRecords", which is not found in the parameter mapping.]
sp looks like this:
EXECUTE usp_get_encrypted_value_without_nums @numberOfRecords ?
--This didn't work
EXECUTE usp_get_encrypted_value_without_nums ?
--This also didn't work
This parameter has been declared and assigned a value in my parameter. I will real appreciate if its a case of mis-mapping or if parameters can't be used to set values into an sp.
Flow diagram: