var fDesc=new Array();
fDesc[0] = "ApexSQL Profile is a line level performance profiling tool.
Main Features:
- Lazy profiling: Generate a detailed report on SQL code performance including variable changes and execution times
- Visual line-by-line profiling: Find out how long each line takes to execute visually
- Execution history: View parameters and variable changes over time. Identify the exact lines where those changes have occurred
- Performance details: Determine all performance related information including the number of times each statement is called
- Customizable profiling: Specify profiling options. Performance test borderline scenarios or default parameter values
- Transparent decryption
- Quick navigation: Identify the five slowest statements at a glance
- Comprehensive reports: Export the profiling results to Excel or PDF for easy printing and sharing
- Support for all SQL Server versions";
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 = '';
}
}