var fDesc=new Array();
fDesc[0] = "Pentaho Data Integration provides a full ETL solution, including:
- Rich graphical designer to empower ETL developers
- Broad connectivity to any type of data, including diverse and big data
- Enterprise scalability and performance, including in-memory caching
- Big data integration, analytics and reporting, including Hadoop, NoSQL, traditional OLTP & analytic databases
- Modern, open, standards-based architecture
Pentaho Data Integration's intuitive and rich graphical designer allows you to do exactly what the most skilled code developers can accomplish, in a fraction of the time, and without requiring you to manually code.
With broad connectivity to a diverse set of data sources, including all popular structured, unstructured and semi-structured data sources, Pentaho Data Integration is built to access all of your sources of data no matter where they lie.
With a multi-threaded parallel processing architecture and in-memory capabilities, Pentaho Data Integration provides a world-class enterprise-scalable data integration platform ideal for today's modern and large-scale deployments.";
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 = '';
}
}