var fDesc=new Array();
fDesc[0] = "dbForge Schema Compare for Oracle is a comprehensive tool for comparing and synchronizing schemas from databases, script folders, snapshots, and backups. The Schema Compare tool can become a great assistant when you need to analyze the impact of changes made to your database schema, identify all differences between Oracle databases, and generate a customizable Oracle schema comparison script.
Key features:
* Save time comparing and synchronizing Oracle database schemas
* Generate SQL*Plus scripts to update one schema with another
* Apply updates from development databases to staging or production
* Compare table structure in the same or different Oracle databases
* Make schema snapshots for savepoints in database development
* Automate migration of schema changes using command-line interface
* Report schema diffs in HTML and Microsoft Excel file formats
* Improve Oracle schema versioning using source control integration
You can always find the latest version of the product on the official Devart website.";
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 = '';
}
}