var fDesc=new Array(); fDesc[0] = "The Microsoft SQL Server Health and History Tool (SQLH2) allows you to collect information from instances of SQL Server, store this information, and run reports against the data in order to determine how SQL Server is being used. This version of SQLH2 supports SQL Server 2005 RTM collection.

SQLH2 collects four main types of information:
- Feature Usage – What services/features are installed, running and level of workload on the service.
- Configuration Settings – Machine, OS and SQL configuration settings, SQL instance and database metadata.
- Uptime of the SQL Server service
- Performance Counters (optional) – Used to determine performance trends."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }