var fDesc=new Array(); fDesc[0] = "This is a database utility that creates a script from any Oracle database's data, objects and/or source. A script is a series of SQL commands that, when run, will create a replication of the database, or a portion of the database. Scripts can be used to migrate data, upgrade databases, and even as a database backup. This program allows the users to customize the script that will be created, they can select which objects or source to script, they can also add conditions to the data script thus scripting only a subset of the data. They can also ignore columns to be scripted, both for structural scripts (DDL) and data scripts (DML). It also comes with a SQL Script feature that allows them to manually type a select statement and have it's results scripted. Any Oracle database can be scripted, the databases do not need to be local, as long as they are accessible from the machine running the program using an Oracle client 8.x and above."; 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 = ''; } }