Thursday, July 19, 2012
Friday, July 13, 2012
Automatic Notification From AQ
Notifications can be set from AQ to notify when a message arrives. Following channels are available for notification -
Use procedure DBMS_AQ.REGISTER to register for a message notification. More details can be found at this url -
- Email notification
- Stored procedure invocation
- Http URL
Use procedure DBMS_AQ.REGISTER to register for a message notification. More details can be found at this url -
For email notifications, hostname, port and 'from' email address required to be configured at database level. To set hostname, port etc refer below link -
http://docs.oracle.com/cd/B28359_01/appdev.111/b28419/d_aqelm.htm#CACFDHHH
To find the existing settings run this block -
DECLARE
host varchar2(100);
port number;
fromAddress varchar2(100);
BEGIN
DBMS_AQELM.GET_MAILHOST(host);
DBMS_AQELM.GET_MAILPORT(port);
DBMS_AQELM.GET_SENDFROM(fromAddress);
dbms_output.put_line('Mail Host: '||host);
dbms_output.put_line('Mail Port: '||port);
dbms_output.put_line('Mail From Address: '||fromAddress);
END;
host varchar2(100);
port number;
fromAddress varchar2(100);
BEGIN
DBMS_AQELM.GET_MAILHOST(host);
DBMS_AQELM.GET_MAILPORT(port);
DBMS_AQELM.GET_SENDFROM(fromAddress);
dbms_output.put_line('Mail Host: '||host);
dbms_output.put_line('Mail Port: '||port);
dbms_output.put_line('Mail From Address: '||fromAddress);
END;
Sunday, July 8, 2012
Command To Find SOA Server Version
My first post.
Run command ./soaversion.sh from location $SOA_ORACLE_HOME/bin
There might have instances when you want to know which version of Oracle SOA suite you are using especially when you are not the one who installed it. Here is the command to find out the version of SOA Suite installed -
Run command ./soaversion.sh from location $SOA_ORACLE_HOME/bin
This will output like below -
Subscribe to:
Posts (Atom)
Demystifying OIC, OCI and Oracle SOA CS
What is OIC (Oracle integration cloud), OCI (Oracle cloud infrastructure), and SOA cloud service and how they are different? - This has bee...
-
Oracle recently released the 12c version of SOA suite. Some of the key features included in this release are - Adapter for cloud integart...
-
SOA dehydration store can reach the tablespace limit over the time if not administered properly. Two options are available to deal with suc...
-
Hermes JMS is a good UI based tool to connect to JMS queues that allows all common operations like put, get, browse etc as well as some rea...