var fDesc=new Array(); fDesc[0] = "The GDBT is a popular, unsupported extension to ArcGIS Desktop. It provides a collection of tools that you can use to troubleshoot, monitor, and investigate ArcSDE (enterprise) geodatabases. The GDBT works with geodatabases stored on SQL Server, Oracle, Informix, DB2, or PostgreSQL databases.
Features:
- The total number of rows in the add and delete tables
- Users connected to the geodatabase and locked schemas
- A graphic of the state tree lineage
- Detailed information of a features class spatial index
- Parent-child relationships between versions for version management
- Table and Index Statistics for geodatabase stored in an Oracle database"; 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 = ''; } }