Viewing 4 posts - 1 through 4 (of 4 total)
Can you please provide the step by step explanation on SSIS implementation, if possible provide few screen shots too.
By the way what method were you using earlier, can you detail...
October 31, 2007 at 8:20 am
Try this..
SELECT Count(tblSicknessEpisode.PersonnelNumber) AS CountOfPersonnelNumber, tblSicknessEpisode.SickEpisodeID, tblSicknessEpisode.FirstDate, tblSicknessEpisode.LastDate, tblSicknessEpisode.SickCategory
FROM tblSicknessEpisode
GROUP BY tblSicknessEpisode.SickEpisodeID, tblSicknessEpisode.FirstDate, tblSicknessEpisode.LastDate, tblSicknessEpisode.SickCategory
WHERE
tblSicknessEpisode.SickCategory="NWR"
HAVING (((tblSicknessEpisode.PersonnelNumber)>=4))
ORDER BY tblSicknessEpisode.FirstDate;
Having is meant to apply condition on any Aggregate functions used...
October 31, 2007 at 8:06 am
That's really great, I appreciate it.
By the way what's the significance of passing '1' or '2' in
FROM OPENXML(@iDoc, '//a:category', 1)
In both the cases I find same results
October 31, 2007 at 3:06 am
I noticed that you are using SQL 2005, so SSIS (SQL Server Integration Services) will be the best choice here, but if you wish to continue with same logic then...
October 31, 2007 at 2:54 am
Viewing 4 posts - 1 through 4 (of 4 total)