var fDesc=new Array(); fDesc[0] = "SQL Doc is a fast, simple tool which automatically generates database documentation.

You can create documents in HTML, Microsoft Word or Compiled HTML Help files. Information about object definitions and dependencies is automatically included, and you can add further descriptions to your database objects if necessary.

SQL Doc is ideal for developers and DBAs who need to quickly produce high quality database documentation. SQL Doc integrates with SSMS, so you can document a database by right-clicking in the Object Explorer."; 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 = ''; } }