How to find subscriber is not getting upto date data?
Run the following TSQL to get details of troubled subscribers that are not getting upto date data:
select agent_id from msdistribution_status
group by agent_id
having sum(undelivCmdsInDistDB) >1000
order by sum(undelivCmdsInDistDB) desc