Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This may seem general question but please take out to the time to answer. What is the best way to continuosly monitor 400+ SQL servers for parameters like agent status, CPU, Avail Memory etc. ? The method should be able to do itfrom a central location though that is not a hard rule and can be modified. I have looked into perfmon counters , wmi etc. but I still dont have a clear picture. As always, all the help is greatly appreciated.

share|improve this question

closed as off topic by DaveShaw, Tim Lehner, Pondlife, marc_s, mah Oct 25 '12 at 0:17

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

2 Answers

I'd recommend IBM Tivoli Monitoring for such a volume of servers. It is not free. It is not even cheap. It is very expensive, but as an added bonus, it can monitor virtually anything...

share|improve this answer
ThankYou for the reply.. is there anything that we can do in-house... it boils down to how can i connect to many servers from a single server on a regular basis like every 10 sec..... Do you think it can be done via a script..... – user1688976 Oct 24 '12 at 19:58

There are several commercial tools available like Red-Gate SQL Monitor or SQL Sentry that can help you with that. Red-Gate just added the ability to monitor the result of any SQL query.

If you want to roll your own solution, you could create a linked server for each monitoree on a single central server and then use SQL Agent to regularly run queries against those and insert the results in some holding table on the central server. then you could write reports against that data.

More information about linked servers: http://msdn.microsoft.com/en-us/library/ff772782(v=sql.105).aspx While that information is for SQL Server 2008R2, the concept exists for older versions as well.

share|improve this answer
ThankYou for the reply.. is there anything that we can do in-house... it boils down to how can i connect to many servers from a single server on a regular basis like every 10 sec..... – user1688976 Oct 24 '12 at 19:58
Added info about linked servers to my answer – Sebastian Meine Oct 24 '12 at 22:26

Not the answer you're looking for? Browse other questions tagged or ask your own question.