var fDesc=new Array(); fDesc[0] = "Teradata Studio Express provides an information discovery tool that retrieves data from Teradata Database systems and allows the data to be manipulated and stored on the desktop. It is built on the Eclipse Rich Client Platform (RCP). This allows the product to take advantage of the RCP framework for building and deploying native GUI applications to a variety of desktop operating systems. It extends the Eclipse Data Tools Platform (DTP) to provide enhancements for accessing the Teradata Database.
Features:
- Modular display that allows you to move panels around, creating a custom look and feel.
- Connection Profile Wizard to create connection profiles using the Teradata or Aster JDBC Driver.
- Data Source Explorer to view database objects, such as databases, users, tables, macros, stored procedures, user-defined functions, user-defined types, views, and triggers.
- SQL Editor to create, modify, and execute individual or multiple SQL Statements.
- Result Set Viewer that displays result set data, allowing the user to select rows and cells, copy and format data, sort, hide, and move columns, and search for result set data values.
- Data wizard to load data from the desktop file system to the Teradata or Aster Database.
- Table Data Editor to easily update, insert, or delete data for a table."; 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 = ''; } }