Question : Two exchange 2003 users can not receive external e-mail

After going through the recovery process for a dirty shutdown database I have (almost) gotten everything back in order.

However I have two users who are unable to receive external e-mail.
We have a SBS Exchange 2003 server (1 machine) with 10 users.
The other 8 users are able to receive external e-mail.
All users use Pop3 connection to get access to external e-mail.
Mail does arrive successfully to the external server, and it disappears after Pop3 connector is told to pick up mail. But the mail never appears in the users mailbox.

Any ideas on what I am missing?
Thanks for your help!

Answer : Two exchange 2003 users can not receive external e-mail

>> the primary key is on (DEipUserID+DEipServiceID )
Ok, the query is incorrect then.  Because by definition, when you partition on the primary key, every single one is unique and will return row number of 1.

Going back to the question,
[For the first row islatest =1, 2nd row arrives go to prev record change IsLtatest = 0 and put IsLatest = 1 for new record.]
And one query you had above, I suspect you actually want, what is the definition of "2nd row", is it "2nd and thereafter rows per DEipUserID+DEipServiceClientID"?  Whatever it is, partition by that combination.


;with tmp as (
select deipuserid, deipserviceid, islatest, rn=row_number() over (partition by deipuserid, deipserviceClientid order by eipinsertdttm desc) from dbo.FactUserClientUse)
update tmp set islatest=case when rn=1 then 1 else 0 end
Random Solutions  
 
programming4us programming4us