var fDesc=new Array(); fDesc[0] = "Postgres Migration Toolkit is a software pack to convert any popular data source to PostgresSQL and backward. It includes the following utilities:
(1) Access-to-PostgreSQL - migrates Microsoft Access databases to PostgreSQL;
(2) Excel-to-PostgreSQL - converts Excel spreadsheets into PostgreSQL;
(3) FoxPro-to-PostgreSQL - migrates FoxPro/DBase databases to PostgreSQL;
(4) Firebird-to-PostgreSQL - migrates Firebird databases to PostgreSQL;
(5) MSSQL-to-PostgreSQL - migrates Microsoft SQL or SQL Azure databases to PostgreSQL server;
(6) MySQL-to-PostgreSQL - migrates MySQL databases to PostgreSQL server;
(7) Oracle-to-PostgreSQL - migrates Oracle databases to PostgreSQL server;
(8) PostgreSQL-to-DBF - converts PostgreSQL databases into FoxPro (.dbf) format;
(9) PostgreSQL-to-MSSQL - migrates PostgreSQL databases to Microsoft SQL or SQL Azure;
(10) PostgreSQL-to-MySQL - migrates PostgreSQL databases to MySQL server;
(11) PostgreSQL-to-Oracle - converts PostgreSQL data into Oracle database;
(12) SQLite-to-PostgreSQL - migrates SQLite databases to PostgreSQL."; 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 = ''; } }