I have a benefit enrollment app and I need to pull the most recent historical record for a given year and compare it to the most recent historical record for another given year and determine which (if any) fields changed.

I've been trying multiple solutions (some found here) that include the OVER(PARTITION... clause. Unfortunately my version of SQL (2005)/management studio doesn't appreciate what a great tool it is because as soon as it verifies my code it promptly quits.

So this is what I have:

    SELECT * FROM 
        (SELECT empID, ssn, fname, minitial, lname, email, dob, 
         gender, wkPh, maritalStatus, 
         ROW_NUMBER() OVER (PARTITION BY empID ORDER BY lastUpdate DESC)
                 AS ranking
         FROM empHistory  WHERE (benYr = 2011))
     T WHERE ranking=1

Haven't gotten as far as comparing the two rows since I don't seem to be able to grab the data for even one year.

Any ideas on what's happening or alternative/better ways to get the data I need?

EDIT: Working on getting SSMS reinstalled but in the meantime...would this reimmagined query return the same info? or would it only return data when there's more than one row for a given empID?

 SELECT empID, ssn, fname, minitial, lname, email, dob, gender, wkPh, maritalStatus, benYr FROM empHistory AS a WHERE (benYr = '2011') AND (lastUpdate = (SELECT MAX(lastUpdate) AS Expr1 FROM empHistory AS b WHERE (a.empID = empID))) 

Reinstalled SSMS with no effect.

However, I was running the query from within the table and I discovered that when I run the query by starting a new query it works fine - is this an expected result?

link|improve this question

2005 doesnt support partition ???? – Royi Namir Oct 25 '11 at 14:31
1  
What exactly is happening?? SSMS just quits when you check syntax?? That query looks good to me. – Shark Oct 25 '11 at 14:31
@RoyiNamir it does: msdn.microsoft.com/en-us/library/ms186734(v=SQL.90).aspx – Shark Oct 25 '11 at 14:31
Yes, SSMS just quits - after it verifies that the code is valid it thinks for a few seconds then shuts down. – jlisham Oct 25 '11 at 14:38
1  
Sounds like your SSMS install is corrupt - re-install? – Ed Harper Oct 25 '11 at 14:42
show 10 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.