var fDesc=new Array();
fDesc[0] = "SchemaVersion is an SQL development tool designed to help you store a SQL database schema in any file-based version control system (such as SourceSafe, Mercurial, Git, etc.) Simply download the schema into files and put them under the version control system of your choice.
Features:
- Easy and fast download of a database schema (tables, triggers, views, functions, stored procedures.)
- Tracking of schema file changes.
- One click generation of update scripts (see Limitations below.)
- Ability to upload changes directly to the database.
Limitations:
- At the moment it is not possible to push a table to the server. You need to script the table, modify script for your needs and run it on the server.
- Server validation of stored procedures and functions can give false positive.
- Tested on Windows 7 with MS SQL Server 2008 R2 only. We would appreciate any feedback regarding other versions of Windows/Sql 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 = '';
}
}