I'm attempting to use the SSIS 2008 lookup component in full cached mode with a T-SQL Query. Is there any benefit to using a ORDER BY clause in the T-sql.
Here is a example:
SELECT
FooFK
,FooValue
FROM dbo.Foo
ORDER BY Foo;
In this case, I'm using FooValue to lookup the value of FooFk.
Also will multiple Lookups component run in parallel? I think this was the case in 2005.