Book Image

Pentaho Business Analytics Cookbook

By : Sergio Ramazzina
Book Image

Pentaho Business Analytics Cookbook

By: Sergio Ramazzina

Overview of this book

<p>Pentaho Business Analytics 5 is a complete open source business intelligence suite, providing data integration, OLAP, reporting, data visualization, and data mining features.&nbsp; Pentaho Business Analytics Cookbook provides you with a valuable and detailed set of recipes that illustrate all the features of Pentaho Business Analytics 5, the new version of the popular BI platform. The book provides clear illustrations and simple examples, helping you learn the core topics visually.</p>
Table of Contents (19 chapters)
Pentaho Business Analytics Cookbook
Credits
About the Author
Acknowledgments
About the Reviewers
www.PacktPub.com
Preface
Index

Defining a JNDI connection in the BA Server


JNDI (Java Native Directory Interface) is a Java API that lets a client application look up data and objects published under a name in a directory service. This API is used by a J2EE server to publish various kinds of resources initialized by the application server and made available to various clients. Because Pentaho BA Server runs on a Java server, we can define a set of JNDI database connections in the Java server and have them available as a Pentaho Data Source (we will see this in the next recipe). The ability to define a JNDI connection in the Pentaho server is a pre-requisite for our next recipe.

Getting ready

To get ready for this recipe, remember to check whether our Pentaho BA Server instance is switched off. If not, please switch it off before you continue with this recipe. It would also be considered a good thing to have a little background knowledge about how to configure a Tomcat server instance.

How to do it...

Usually, JNDI connections...