I have already read some of the available threads but somehow could not solve my issue so restarting this discussion again and i would be glad if you could help me to solve this. I am pretty new to SSIS so just playing through with some of the tasks. I have a execute sql task and i am creating a table and i would like to use the table which i create using execute sql task in destination of a data flow tasks. follow are the steps which i have done to accomplish this task.
1)create table - execute sql task
use AdventureWorks
if OBJECT_ID ('dbo.checkconstraint') is not null
drop table dbo.checkconstraint
go
select * into dbo.checkconstraint from Person.Person
2) input variable at package level with the value 'dbo.checkconstraint'
3) at DFT data access mode table name or view name- variable and specifying the variable which i created in step 2
4) delayvalidation set to true in all the task.
please help me to understand whats going wrong in this.
Regards
Rajkumar