Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)

  • RE: Importing spreadsheets with SQL Server 2005

    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...

  • RE: Matching the duplicate records and doing a count HELP?

    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...

  • RE: Getting data from XML using OPENXML

    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

  • RE: How to insert and update from remote linked server

    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...

Viewing 4 posts - 1 through 4 (of 4 total)