var fDesc=new Array(); fDesc[0] = "Data Comparisons was designed to be a simple tool that allows you to compare two SQL database tables of like schemas.

It'll find any and all differences between the two tables you're comparing and display them in an easy to understand color-coded grid.

Features:

- The free edition
- Connect to any version of Microsoft SQL Server
- Compare data between two database tables
- Color-coded grid shows all differences and missing rows in a single view
- Quick comparison mode offers a huge performance boost for same-server connections"; 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 = ''; } }