Categories
- All Categories
- Oracle Analytics Learning Hub
- 27 Oracle Analytics Sharing Center
- 18 Oracle Analytics Lounge
- 236 Oracle Analytics News
- 45 Oracle Analytics Videos
- 16K Oracle Analytics Forums
- 6.2K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 87 Oracle Analytics Trainings
- 15 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
OrientDB connection to Oracle BI Publisher 11g
We are trying for an POC to establish a connection to OrientDB in BI Publisher to access data and create report.
But we are not seeing any orientdb drivers to create a connection, please help on this if any one come across in this situation.
Also, Let us know Is there any feasibility to generate OBIEE/BI Publisher 11g reports based on OrientDB (version community 3.0.18 edition )
Thanks,
Answers
-
OrientDB seems to have a JDBC driver, BI Publisher can use your own JDBC drivers, you just need to connect the pieces together.
Look at the BI Publisher doc on where to put the JDBC driver files and how to configure it.
To get the JDBC for OrientDB you need to get it by yourself or ask them.
0 -
Hi Gianni,
we have downloaded the orientdb JDBC drivers and unzipped and updated the environment variables in path with jar files location.
Tried to create new JDBC from BI publisher to connect with OrientDB but it is showing "datasource :null" error and not connecting.
Is it possible to have the connection to OrientDB from Oracle BI Publisher because as per oracle's support document OrientDB is not listed.
0 -
Publisher can't come with all the exist JDBC connections out of the box, just because there is a huge number of JDBC drivers for various random sources.
But Publisher is supposed to be able to use your JDBC as long as it is a standard JDBC once you configure it properly, that's why the doc explain where to copy files and how to setup new JDBC connections.
I don't have that DB, so can't tell you more than that.
0 -
Hi Gianni,
we have followed this doc but not working , could you please share me the doc if any other to configure
https://docs.oracle.com/cd/E17984_01/doc.898/e14692/interactive_reporting.htm
0 -
Assuming you are talking about BI Publisher 11.1.1.9: https://docs.oracle.com/middleware/11119/bip/BIPAD/data_sources.htm#jdbc_ds
0 -
hi Gianni Ceresa,
Sorry for the delay,
yes we are referring the same document.
My point is here, is OBIEE supports NOSQL database as OrientDB is nosql graph database.
0 -
I have been able to do it after lot of effort.
Versions used:
1. OBIEE : 12C
2. Orient : 3.0.12
3. Java : 1.8.0_162
Steps:
Steps:
- After shutting down the managed server bi_server1 in weblogic copy following JDBC Orient Jars to OBIEE DOMAIN HOME LIB (e.g. C:\oracle\user_projects\domains\dom5\lib where dom5 is domain name) folder:
- concurrentlinkedhashmap-lru-1.4.2.jar
- jna-4.5.0.jar
- orientdb-client-3.0.12.jar
- orientdb-core-3.0.12.jar
- orientdb-jdbc-3.0.12.jar
- Restart managed server bi_server1 in weblogic
- Create the data source with Orient in BI Publisher
- Class : com.orientechnologies.orient.jdbc.OrientJdbcDriver
- JDBC String : jdbc:orient:remote:<IP>:<PORT>/<DB_NAME> e.g. jdbc:orient:remote:localhost:2424/betterdemo
- Give username / password
- Test connection

- Create new Data Model and save it
- Create new SQL query and chose orient data source. The data would get displayed
0 - After shutting down the managed server bi_server1 in weblogic copy following JDBC Orient Jars to OBIEE DOMAIN HOME LIB (e.g. C:\oracle\user_projects\domains\dom5\lib where dom5 is domain name) folder:
