In SSIS 2005 what component can I use inside my Data Flow task to call my View and use it as a datasource I know I've used an Execute T-SQL Task but I don't know what component to use inside an actual task itself. What I'm trying to do is in my Data Flow task, instead of using 3 OLE DB Source components, I want to actually call 3 stored procs and use those 3 components as the data sources to merge on using the merge and sort components later on

What component to use for Calling View
JStorm
You have to embed your SQL somewhere if you want to get data out of somewhere. Even if you pick a table from the dropdown you are still effectively "embedding SQL" because it needs to execute a SQL statement to get data out of the system.
I'm not quite sure why you have an issue with this.
-Jamie
trumpy81
Prabhu000
Enrique0210
NewHacker
Natalie Casey
Eh
You have 3 options.
1) Select a table or view from the dropdown
2) Write a SQL statement
3) Use a SQL statement stored in a variable.
My article said don't use #1.
If you want to pull some data out of a view then write a SQL statement:
SELECT <column_list> FROM <view_name>
-Jamie
Mix from Latvia
Fair enough. Why do you think you cannot execute stored procs from SSIS
-Jamie
sposs
Favor,
I recommend you DON'T use the dropdown. Here's why: http://blogs.conchango.com/jamiethomson/archive/2006/02/21/2930.aspx
-Jamie
Nick Porter
Pirox
Nosam Neb
My article said don't use the dropdown. It didn't imply anything else, or wasn't meant to anyway.
-Jamie
lode
You've lost me. At the start of the above post you say you want to use a view. At the end of the post you say stored proc. Which is it
Either way, a view or a stored proc can be used inside an OLE DB Source component.
-Jamie