Hi All,
I have created SSIS package which executes
1) Execute SQL task and creates a temp table
create table #tab
(
id int,
name varchar(20)
)
and i am executing a procedure within a
2) dataflow task with OLEDB source using sql command
EXEC InsertTempTable ?,?
create proc InsertTempTable
@id int,
@name varchar(20)
as
insert into #tab values(@id,@name)
when i try maping the parameters and click on columns tab of OLEDB source editor i get
the below error:
Please help me on this what property i am missing out I have set retainconnection property to true as well.