Guest User

Untitled

a guest
Mar 21st, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. SELECT time,
  2. CAST(comments AS XML) AS comments,
  3. runstatus,
  4. duration,
  5. xact_seqno,
  6. delivered_transactions,
  7. delivered_commands,
  8. average_commands,
  9. delivery_time,
  10. delivery_rate,
  11. delivery_latency / (1000 * 60) AS delivery_latency_Min,
  12. agent_id
  13. FROM dbo.MSlogreader_history WITH (NOLOCK)
  14. WHERE agent_id = 5
  15. ORDER BY time DESC;
  16.  
  17. SELECT *
  18. FROM dbo.MSdistribution_history
  19. WHERE agent_id = 125
  20. ORDER BY time DESC;
Add Comment
Please, Sign In to add comment