Viewing 14 posts - 1 through 14 (of 14 total)
Well I ftp these files from a ftp location. When I have a file named sales I want the sales related dataflow to be executed, file named finance then another...
December 8, 2009 at 9:09 am
Please briefly explain how would I achieve this?
Thanks in advance
Regards......
November 24, 2009 at 3:11 pm
Hello,
I would definitely love to share that info with you, unfortunately i have nothing available except for the req.
Regards
July 9, 2009 at 6:48 pm
Hello,
I would definitely love to share that info with you, unfortunately i have nothing available except for the req.
Regards
July 8, 2009 at 11:35 pm
Hello,
I would definitely love to share that info with you, unfortunately i have nothing available except for the req.
Regards
July 8, 2009 at 11:12 pm
Hello,
I would definitely love to share that info with you, unfortunately i have nothing available except for the req.
Regards
July 8, 2009 at 11:08 pm
Hello,
I would definitely love to share that info with you, unfortunately i have nothing available except for the req.
Regards
July 8, 2009 at 11:07 pm
Hello,
Select * From [dbo].[Employee] E1 Where
(N-1) =
(Select Count(Distinct(E2.[Sal])) From [dbo].[Employee] E2 Where
E2.[Sal] > E1.[Sal])
This is what I have but this doesn't solve my purpose I want top...
June 23, 2009 at 1:17 pm
Please find the table and the data below:
Create Table Employee
(
Enum int Primary Key,
Dept nvarchar(15),
Sal money
)
INSERT INTO Employee (Enum, Dept, Sal)
SELECT '1', '10', '1000' UNION ALL
SELECT '2', '10', '12567' UNION ALL
SELECT...
June 23, 2009 at 12:46 pm
Viewing 14 posts - 1 through 14 (of 14 total)