Viewing 3 posts - 1 through 3 (of 3 total)
Marc,
Thanks for your reply.
I have already gone through MDDE.
MDDE is only supported by SQL SERVER 2005.
The following package elements are currently supported:
Containers
Sequence
For Each...
September 19, 2009 at 12:15 am
check this link : http://www.microsoft.com/bi/
January 8, 2009 at 10:28 am
Instead of using sub query you can CTE.
Following is code,which will gives you better performance.
WITH Calls_CTE(ID,CallDate)
AS(
SELECT ID,MAX(CallDate) AS CallDate
FROM
dbo.calls
GROUP BY
ID
)
SELECT
customer.ID,
Calls.ID AS FinalCallID,
Calls.CallDate AS FinalCallCallDate,...
January 8, 2009 at 10:11 am
Viewing 3 posts - 1 through 3 (of 3 total)