I'm starting with this database, up to now i get works the following cases:
Connect using Sql developer and import data from a csv
Connect by JDBC into a Java file
The problem now is that I need Pentaho DI connect with Oracle Autonomous dataWarehouse
Does any body knows how to do it? Maybe using JDBC connections?
Related
I'm using jdbc simba driver connector for connecting pentaho to bigquery, but the connector is really slow even after I am adding parameters like:
EnableHighThroughputAPI=1;HighThroughputMinTableSize=1;rewriteBatchedStatements=true;useCompression=true;useServerPrepStmts=false;
I'm trying to use steps like table output, insert/update, and dimension lookpu/update, is there any other way to optimize the connector or any other solution for pentaho and big query connection?
I want to connect to a Mondrian cube that I've developed using IBM Cognos.
On the Cognose framework I can't see the XMLA datasource on the list, the datasource connection should be an ODBO.
How can I made the ODBO connection available?
Regards
Monwabisa
https://sourceforge.net/projects/xmlaconnect/ works for connecting Excel with Mondrian via ODBO. Maybe it also works for your use case.
I have database username and password to access oracle db and also have service url like https://X-X.X.X.oraclecloudapps.com/apex/.
Can anybody know how to connect this db using JDBC connection.
I tried using oracle thin driver but somehow it failes.
Sample java code:
Connection conn = DriverManager.getConnection("jdbc:oracle:thin:#//X.X.X.X.oraclecloudapps.com:1521/sid", "username", "****");
It throws
Exception in thread "main" java.sql.SQLRecoverableException: Io exception: The Network Adapter could not establish the connection
I don't know SID here, it would be helpful if anybody give steps to find SID/ServiceName from Oracle Cloud dashboard.
You can't use JDBC to connect to the Database Schema Service. You can connect using the API or tools that utilize the REST API. For data upload to Oracle Database Schema Service, use Oracle SQL Developer, the Oracle Application Express SQL Workshop Data Upload Utility or the Oracle Application Express Data Load utility. Read more here: http://docs.oracle.com/cloud/latest/dbcs_schema/CSDBU/GUID-3B14CF7A-637B-4019-AAA7-A6DC5FF3D2AE.htm#CSDBU177
There is only three way to connect Database Schema Service.
From an Oracle Application Express application running in Database Schema Service
From a Java application running in an Oracle Java Cloud Service
Through RESTful Web services
Try the following JDBC URL to resolve the issue
"jdbc:oracle:thin:#host-address:1521/sid";
Note / is used after port and Not :
I want to expose Oracle database data with an Odata endpoint.I tried using JayData server on node.js but it currently supports only mongo db but not oracle.So before I start trying connecting Oracle with Apache Olingo I would like to know if someone has already been this path.Please advise
I have successfully used Oracle with Olingo from java JPA and EclipseLink
How can I connect to Oracle Advance Queue(AQ) from Oracle ADF. I want to display Advance Queue(AQ) data (i.e. payload XML) in table format into a adf ui page.Is there any adapter available for that?
You might want to use Message-Driver Beans (as Oracle AQ is an implementation of JMS). I think these links could help you:
Oracle AQ with Message-Driven Beans (here you'll find a sample of an ADF Fusion application)
How to connect Oracle AQ to MDB
Using MDB with ADF