Viewing 6 posts - 1 through 6 (of 6 total)
Thanks a lot for clarifying. Now I have to learn more about DTS global variables and dynamic properties task.
August 25, 2006 at 8:48 am
I am sorry, I did not get what this script does and how it works in my case. I need to write a query which returns "0" instead of rows...
July 18, 2006 at 5:44 am
Sure
And any ideas how to preset the results in the form of matrix? Pivot is not smart in SQL Server 2000.
And how to...
July 14, 2006 at 9:38 am
Great, thanks.
Query only lacks GROUP BY clause
July 14, 2006 at 8:45 am
For just 2 ProdID the following query also works
select count(a.CustID) from (select CustID from Orders where ProdID=100) a
join (select CustID from Orders where ProdID=200) b
on a.CustID=b.CustID
But I would like...
July 14, 2006 at 7:16 am
Thanks, but it is not what I need.
I'll clarify.
create table Orders (OrderID int identity(1,1), CustID int, ProdID int, Quant int)
insert into Orders (CustID, ProdID, Quant)
values (1, 100, 10)
insert into Orders...
July 14, 2006 at 3:29 am
Viewing 6 posts - 1 through 6 (of 6 total)