var fDesc=new Array(); fDesc[0] = "OraDump Export Kit is a set of conversion tools to export data from Oracle dump file into most popular formats. It includes the following tools:
OraDump-to-Access - converts Oracle dump files into MS Access format;
OraDump-to-CSV - converts Oracle dump files into CSV (comma separated values) format;
OraDump-to-Excel - converts Oracle dump files into MS Excel format;
OraDump-to-MSSQL - migrates Oracle dump files to MS SQL server;
OraDump-to-MySQL - migrates Oracle dump files to MySQL server;
OraDump-to-PostgreSQL - migrates Oracle dump files to PostgreSQL server."; 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 = ''; } }