var fDesc=new Array();
fDesc[0] = "OraDump-to-CSV is a program to convert Oracle dump files into Comma Separated Values (CSV) files.
Main Features:
- All Oracle data types (except BFILE and MLSLABEL) and attributes are supported
- Convert individual tables
- Store conversion settings into profile
- Allows to select separator: tab, comma or semicolon
- Command line support
- Process multi-file Oracle dumps
- Easy-to-use wizard-style interface
- Full install/uninstall support
Limitations:
- Does not convert columns having user-defined types";
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 = '';
}
}