Viewing 5 posts - 1 through 6 (of 6 total)
select case
when c2 =
(select min(c2)
from mytable
where c1 = o.c1
group by c1) then c1
else null
end,
c2
from mytable o
This seems to work for what you have described. Try it and...
July 22, 2002 at 12:12 pm
I have posted a solution in reply to the "Execute Package task" post in the DTS forum.
May 16, 2002 at 1:21 pm
Hi
I do something similar to what you do. By cycling and displaying all the global variables in the sub (executed) package, I found that the variables passed from the...
May 16, 2002 at 1:03 pm
quote:
Hi,I am using a DTS Package to call another DTS Package using the 'Execute Package' Task. I need to pass a value...
May 16, 2002 at 12:56 pm
Viewing 5 posts - 1 through 6 (of 6 total)