Quantcast
Channel: SQL Server Integration Services forum
Viewing all articles
Browse latest Browse all 24688

Using #table or temperary table in multiple tasks

$
0
0

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.


Viewing all articles
Browse latest Browse all 24688

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>