Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Crisis/ Outage Message !!!

Status
Not open for further replies.

astra1

Programmer
Sep 17, 2002
38
US
Hi
We are working on SQL Server 2k and I want to monitor the server round the clock... major issue we wanna deal is the server space... the requirement is to monitor server performance, ie whenever there is some outage (like low memory, table truncation etc), I want to get an SMS on the cell... don’t even know whether this is possible??
Can any one help me out on the same!!!!

Vish
 
Vish,

in the wonderfull world of Windows, you don't need to monitor these things on the local server :) You can do it across the network using Performance Monitor. PM can be used to raise alerts, capture workloads for later analysis etc. It has the ablility to look at disk space avalilble, you have sql counters that provide insight into cache usage, worker threads queued, and much more..

Re table truncation... No, this is something you need to look at using other tricks. The key one here would be SQL Profiler. You can use this one to monitor specific db,s and then look at specific statements like "truncate". these could be filterd for, or you could do a mega dump of everyting. One cool option of profiler is that it will let save the "trace" to a table for later analysis. You would then open the table and query it with you normal sql tools.

Bottom line is you can look at all these things. You also have the ability to create custom stored procs in the master database that return values you choose. THese can then be trapped and returned to performance monitor.

HTH


Rob
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top