var fDesc=new Array(); fDesc[0] = "MSSQL-to-MySQL is a program to move MS SQL databases to MySQL server. Key features:
(1) all versions of MS SQL are supported including SQL Azure;
(2) all versions of Unix/Linux and Windows MySQL are supported;
(3) option to customize field mapping (modify name, type, default values for every column);
(4) option to export MS SQL data into MySQL dump file;
(5) option to merge MS SQL data into an existing MySQL database;
(6) option to convert partial data using SELECT-queries;
(7) option to convert individual tables;
(8) option to synchronize MySQL database with MS SQL data;
(9) converts MS SQL views into MySQL format;
(10) converts indexes with all necessary attributes;
(11) converts foreign keys;
(12) stores conversion settings into profile;
(13) command line support;
(14) easy-to-use wizard style interface;
(15) unlimited 24/7 support service;
(16) 1-year subscription for updates"; 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 = ''; } }