var fDesc=new Array();
fDesc[0] = "MS SQL Maestro is the premier GUI admin tool for Microsoft SQL Server and MSDE management, control and development.
The application also provides you with a powerful set of tools to edit and execute SQL scripts, build visual diagrams for numeric data, compose OLAP cubes, and much more.
Main features:
- Support for all Microsoft SQL Server versions from 7.0 to 2008 R2
- Easy database object management
- Database Designer
- Comfortable access to SQL server security features
- Data management: editing, grouping, sorting and filtering abilities
- Handy SQL Editor with code folding and multi-threading
- Visual Query Builder with support for subqueries and UNIONS
- Data export/import to/from the most popular formats
- Powerful BLOB Viewer/Editor";
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 = '';
}
}