Cannot convert parameter 2 to a DBTYPE_STR" SSIS
I am new to this SSIS Package please help me
I am using Syabse is source and SQL server is destination database
I am getting below error
I have taken two global string variables
I have call procedure like below
From OledDB Source we are calling like “EXEC INSGT_karunakar ?,?”
I am getting below error
Can you please help me
[OLE DB Source [1]] Error: SSIS Error Code DTS_E_OLEDBERROR. An OLE DB error has occurred. Error code: 0x80040E21. An OLE DB record is available. Source: "ASAProv.90" Hresult: 0x80004005 Description: "Cannot convert parameter 2 to a DBTYPE_STR".
What setting need to be done for this above error
Procedure name
----------------------------------------------------------------------------------------------------------------------------------
CREATE procedure DBA.INSGT_karunakar(@last_dt_time varchar(30),@DTSCurrentStartDate varchar(30))
as
begin
select Code, Description
from
dba.Codes_RequestsAction
end
----------------------------------------------------------------------------------------------------------------------------------