var fDesc=new Array();
fDesc[0] = "The Teradata Quick Search is a utility for searching and updating text based content of a Teradata RDBMS. This utility consists of four different modules:
- Text Search - Search for text of fragments of text in any CHAR or VARCHAR field in a Teradata database. Filters can be applied to limit the list of tables and fields to search in.
- Column Search - Search for fields by name in any Teradata database
- Browse - Listing the tables, views and macros in a given Teradata database. Features like Show DDL, Browse, Count, etc. are available.
- Free Search - Executes any valid SQL and lets the user edit the results. Changes can be automatically be written back to the database.";
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 = '';
}
}