var fDesc=new Array();
fDesc[0] = "Search for SQL Objects and Table Data in SSMS with ease
Search for SQL Server is a FREE add-in for Microsoft SQL Server Management Studio that allows you to quickly locate SQL objects, data, and text in your databases.
When a database contains lots of objects, finding a required table or recollecting names of your stored routines can be quite a daunting task. With Search for SQL Server, you no longer need to look through the entire SSMS Object Explorer to locate a required column name, or text in a stored procedure. This database search tool will definitely make your life easier.
- Find fragments of SQL in tables, views, stored procedures, and functions for free
- Use wildcards to substitute any characters in a search string
- Navigate quickly to the object of search in Object Explorer
- Search across multiple databases and object types
- Perform objects and data search in SSMS directly
- Locate tables data according to a search string
- Sort and filter search results
- Configure search filter";
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 = '';
}
}