How to connect Oracle Advance Queue (AQ) from Oracle ADF? - oracle

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

Related

Native way for PL/SQL package to write to kafka topic

I have been looking for native ways for a Oracle PL/SQL program/procedure output to a Kafka topic directly. Please advise if there is any way to achieve this.
Perhaps, may be helpful:
Kafka with Oracle
Oracle SQL Access to Kafka
Querying and Publishing Kafka Events from Oracle Database SQL and PL/SQL

Connect Pentaho Data Integration with Oracle Autonomous Data Warehouse

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?

How do I connect to a Mondrian cube(XMLA) using IBM Cognos

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.

Connect Oracle cloud Database using JDBC java

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 :

Oracle RAC , Do I need XA driver?

I have Oracle 11g, configured to use Real Application Cluster (RAC) and storage.
I thought XA is for 2PC transactions , for multiple data sources/managers.
Thanks.
In theory you wouldn't have to use any different driver for Oracle RAC, because it should resolve clustering and scaling behind the scenes.
You need XA transactions when you have several different data sources which should be used under one transaction.
Do you experience any issues when using non-XA driver with Oracle RAC?

Resources