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

Creating a new JNDI JDBC data source


As soon as we define a new JNDI connection in the Java server, we can use it under the Pentaho server by creating a new JNDI JDBC Data Source. JNDI JDBC Data Source is the second type of JDBC data source we can configure in Pentaho BA Server. We can configure it by defining the name of the JNDI connection we configured in the previous recipe in the configuration dialog box. Therefore, we are talking about another kind of JDBC data source here, but all of the databases' connection information is specified outside of the data source definition.

How to do it...

To define a new JNDI data source, we need to perform the following steps:

  1. From the Home perspective, click on the Manage Data Source button.

  2. Open JDBC's Database Connection dialog box as specified in steps 2 to 6 of the Creating a new native JDBC data source recipe.

  3. Configure the JNDI JDBC Data Source connection by selecting Database Type. Then, select JNDI from the Access list box.

  4. Type the name of the...