var fDesc=new Array(); fDesc[0] = "The RML utilities allow you to process SQL Server trace files and view reports showing how SQL Server is performing. By using this tool you can determine the application, the database, the SQL Server login, or the query that is using the most resources. Additionally, you can determine whether the execution plan for a batch is changed when you capture the trace for the batch."; 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 = ''; } }