var fDesc=new Array();
fDesc[0] = "dbForge Studio for Oracle is a powerful integrated development environment (IDE) which helps Oracle SQL developers to increase PL/SQL coding speed, provides versatile data editing tools for managing in-database and external data.
This Oracle IDE allows synchronizing data between different Oracle servers and automating schema change management process during development. dbForge Oracle GUI features powerful functionality wrapped into a smooth management Oracle GUI consistent with Microsoft Visual Studio.
Key features:
* PL/SQL coding assistant
* Database Project
* Oracle Database Management
* Data Generator. Populate your Oracle tables with thousands of rows of realistic test data. Data Generator supports essential Oracle data types, includes 200+ meaningful generators with customizable settings, and allows generating data via the command-line interface.
* Documenter
* Object Manager
* Oracle PL/SQL Debugger. The Oracle debugger serves for step-by-step execution of stored program units and SQL scripts. Oracle developers can edit, compile, run, and debug PL/SQL code easily. They can use breakpoints, evaluate and modify variables in the Watches window, and analyze the currently active stack of your PL/SQL program calls in the Call Stack window.
* Query Builder
* Query Profiler
* Schema Import/Export
* Database Administration
* Database Designer
* Import/Export Data
* Report and Analysis
* Find Object";
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 = '';
}
}