var fDesc=new Array();
fDesc[0] = "DBScribe is an Oracle SQL documentor that creates precise technical documentation of every detail of a database schema in just seconds.
The product supports:
- a rich set of documentation style and output formats (HTML, CHM, MS Word Document)
- wizard and command line interfaces
- complete database structure documenting
- all SQL object types, their details and properties
- custom documentation profiles
- Oracle OLAP Metadata documenting
- DDL code for all objects documented
DBScribe helps you to:
- Dramatically reduce time and cost necessary to document your databases
- Avoid document updating and synchronization after database changes
- Manage your product/solution knowledgebase
- Optimize communication between your IT team members: database administrators, developers, testers and technical writers
- Increase your customer satisfaction by providing comprehensive, professional looking database documentation";
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 = '';
}
}