SlideShare a Scribd company logo
1 of 23
Download to read offline
12/14/2015 Oracle 11G Database Adapter as Poller with BPEL process | My Tech Blog
https://rathinasaba.wordpress.com/2012/12/16/oracle­11g­database­adapter­as­poller­with­bpel­process/ 1/23
My Tech Blog
Java Web Service SOA
Home
My Learnings
Java
XStream
ESB
BPEL
Webservices
Hibernate
SQL
J2EE
Type text to search here...  
Home > Adapter > Oracle 11G Database Adapter as Poller with BPEL process
Oracle 11G Database Adapter as Poller with BPEL
process
December 16, 2012 sabapathy Leave a comment Go to comments
Oracle Database Adapter works with Oracle BPEL Process and Oracle Mediator.
This Database adapter enable the BPEL and mediator to communicate with Oracle
Database or other third party databases with JDBC.
In this post will see how to use the database adapter as a poller with BPEL process.
In this example one external service inserts records into database table. This Database
adapter polls the records from the table and push it to BPEL process.
There is a column “Status” in the table. Initially it will be inserted with status “Ready”.
Once it is picked it will be updated to status “Processing”.
It will be updated to status “Completed” once the record has been successfully processed.
table structure and sample values
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
­­CREATE TABLE 
CREATE TABLE SUB_CONNECT(
                         IDENTIFIER VARCHAR2(50) PRIMARY
                         REQUEST_XML CLOB NOT NULL,
                         CREATED_AT TIMESTAMP NOT NULL,
                         UPDATED_AT TIMESTAMP NOT NULL,
                         STATUS VARCHAR2(20) NOT NULL
                         );
 
­­CREATE SEQUENCE TO CREATE UNIQUE IDENTIFIER COLUMN
CREATE SEQUENCE SB_CONN_SEQ START WITH 1 INCREMENT BY 1 NOCACHE NOC
 
­­ INSERT SAMPLE VALUES
INSERT INTO SUB_CONNECT VALUES('IDENTIFIER'||SB_CONN_SEQ.NEXTVAL,
INSERT INTO SUB_CONNECT VALUES('IDENTIFIER'||SB_CONN_SEQ.NEXTVAL,
12/14/2015 Oracle 11G Database Adapter as Poller with BPEL process | My Tech Blog
https://rathinasaba.wordpress.com/2012/12/16/oracle­11g­database­adapter­as­poller­with­bpel­process/ 2/23
  
Create DB Adapter to poll record with status “Ready”
1.Create SOA Application
2.Create SOA Project with Empty Composite.
  
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
INSERT INTO SUB_CONNECT VALUES('IDENTIFIER'||SB_CONN_SEQ.NEXTVAL,
INSERT INTO SUB_CONNECT VALUES('IDENTIFIER'||SB_CONN_SEQ.NEXTVAL,
INSERT INTO SUB_CONNECT VALUES('IDENTIFIER'||SB_CONN_SEQ.NEXTVAL,
INSERT INTO SUB_CONNECT VALUES('IDENTIFIER'||SB_CONN_SEQ.NEXTVAL,
INSERT INTO SUB_CONNECT VALUES('IDENTIFIER'||SB_CONN_SEQ.NEXTVAL,
INSERT INTO SUB_CONNECT VALUES('IDENTIFIER'||SB_CONN_SEQ.NEXTVAL,
INSERT INTO SUB_CONNECT VALUES('IDENTIFIER'||SB_CONN_SEQ.NEXTVAL,
INSERT INTO SUB_CONNECT VALUES('IDENTIFIER'||SB_CONN_SEQ.NEXTVAL,
INSERT INTO SUB_CONNECT VALUES('IDENTIFIER'||SB_CONN_SEQ.NEXTVAL,
INSERT INTO SUB_CONNECT VALUES('IDENTIFIER'||SB_CONN_SEQ.NEXTVAL,
INSERT INTO SUB_CONNECT VALUES('IDENTIFIER'||SB_CONN_SEQ.NEXTVAL,
INSERT INTO SUB_CONNECT VALUES('IDENTIFIER'||SB_CONN_SEQ.NEXTVAL,
INSERT INTO SUB_CONNECT VALUES('IDENTIFIER'||SB_CONN_SEQ.NEXTVAL,
INSERT INTO SUB_CONNECT VALUES('IDENTIFIER'||SB_CONN_SEQ.NEXTVAL,
INSERT INTO SUB_CONNECT VALUES('IDENTIFIER'||SB_CONN_SEQ.NEXTVAL,
INSERT INTO SUB_CONNECT VALUES('IDENTIFIER'||SB_CONN_SEQ.NEXTVAL,
 
­­SELECT TABLE SUB_CONNECT
SELECT * FROM SUB_CONNECT;
12/14/2015 Oracle 11G Database Adapter as Poller with BPEL process | My Tech Blog
https://rathinasaba.wordpress.com/2012/12/16/oracle­11g­database­adapter­as­poller­with­bpel­process/ 3/23
EmptyComposite
 
3. Create the Database Adapter
3.1. Right click on Exposed Services left side panel and select Database Adapter. It will
prompt the Database Adapter creation window.
 
SelectDatabaseAdapter
  
12/14/2015 Oracle 11G Database Adapter as Poller with BPEL process | My Tech Blog
https://rathinasaba.wordpress.com/2012/12/16/oracle­11g­database­adapter­as­poller­with­bpel­process/ 4/23
DBConfigWizad
  
12/14/2015 Oracle 11G Database Adapter as Poller with BPEL process | My Tech Blog
https://rathinasaba.wordpress.com/2012/12/16/oracle­11g­database­adapter­as­poller­with­bpel­process/ 5/23
DBAdapter3
 
3.2. Create Database Connection
 
12/14/2015 Oracle 11G Database Adapter as Poller with BPEL process | My Tech Blog
https://rathinasaba.wordpress.com/2012/12/16/oracle­11g­database­adapter­as­poller­with­bpel­process/ 6/23
CreateDBConnection
  
12/14/2015 Oracle 11G Database Adapter as Poller with BPEL process | My Tech Blog
https://rathinasaba.wordpress.com/2012/12/16/oracle­11g­database­adapter­as­poller­with­bpel­process/ 7/23
CreateDBConnJNDI
3.3. Select Operation Type
 
The Database Adapter will be processed by two threads.
1. One thread will poll the record from the table and push it to BPEL process
“receiveInput” point.
2. Next thread will carry out the BPEL Process.
This entire Database Adapter and BPEL Process will be handled by single thread if
Do Synchronous Post to BPEL(Allows In­Order Delivery) option has been selected.
 
12/14/2015 Oracle 11G Database Adapter as Poller with BPEL process | My Tech Blog
https://rathinasaba.wordpress.com/2012/12/16/oracle­11g­database­adapter­as­poller­with­bpel­process/ 8/23
OperationType
3.4. Then Import table where the poller should point and Click Next.
 
12/14/2015 Oracle 11G Database Adapter as Poller with BPEL process | My Tech Blog
https://rathinasaba.wordpress.com/2012/12/16/oracle­11g­database­adapter­as­poller­with­bpel­process/ 9/23
ImportTable
  
 Follow
Follow “My Tech
Blog”
Get every new post delivered
to your Inbox.
Enter your email address
Sign me up
Build a website with WordPress.com
12/14/2015 Oracle 11G Database Adapter as Poller with BPEL process | My Tech Blog
https://rathinasaba.wordpress.com/2012/12/16/oracle­11g­database­adapter­as­poller­with­bpel­process/ 10/23
DBAdapter8
  
12/14/2015 Oracle 11G Database Adapter as Poller with BPEL process | My Tech Blog
https://rathinasaba.wordpress.com/2012/12/16/oracle­11g­database­adapter­as­poller­with­bpel­process/ 11/23
Relationships
  
12/14/2015 Oracle 11G Database Adapter as Poller with BPEL process | My Tech Blog
https://rathinasaba.wordpress.com/2012/12/16/oracle­11g­database­adapter­as­poller­with­bpel­process/ 12/23
Attributes
  
3.5. Select After Read polling strategies.
 
Update a Field in the SUB_CONNECT table (Logical Delete). This will read the Data
from the table with status value is “Ready”.
 
12/14/2015 Oracle 11G Database Adapter as Poller with BPEL process | My Tech Blog
https://rathinasaba.wordpress.com/2012/12/16/oracle­11g­database­adapter­as­poller­with­bpel­process/ 13/23
AfterReadPollingStrategy
  
Logical Delete Field : Column Name on Table , based on this column value (“Ready”)
the poller will pick the record.
Read Value : The value to indicate that the row has been read . (“Processing”)
Unread Value : (Optional) Enter an explicit value to indicate that the row does not need to
be read. During polling, this row is skipped. . (“Completed”)
Reserved Value:
Reserved Value : This value is to indicate that the row is reserved. Blocked
  
12/14/2015 Oracle 11G Database Adapter as Poller with BPEL process | My Tech Blog
https://rathinasaba.wordpress.com/2012/12/16/oracle­11g­database­adapter­as­poller­with­bpel­process/ 14/23
LogicalDelete
3.6. Polling Options.
  
Polling Frequency: Select how frequently to poll for new records or events.
Database Rows per Transaction: Number of record has to be polled per bpel instance.
Order By: Poller will picks the records based on the “Updated_At” time value.
Distributed Polling: This option has to be enabled when this Database Adapter is
deployed in multiple soa managed servers.
  
12/14/2015 Oracle 11G Database Adapter as Poller with BPEL process | My Tech Blog
https://rathinasaba.wordpress.com/2012/12/16/oracle­11g­database­adapter­as­poller­with­bpel­process/ 15/23
PollingOptions
  
12/14/2015 Oracle 11G Database Adapter as Poller with BPEL process | My Tech Blog
https://rathinasaba.wordpress.com/2012/12/16/oracle­11g­database­adapter­as­poller­with­bpel­process/ 16/23
SelectionCriteria
  
3.7. Retry Options.
  
Default retry option is available in Database Adapter.Use to specify the value for auto­
retry incase of timeout. In case of a connection related fault the invoke can be
automatically retried a limited number of times.
Example:
 
Attempts
Specify the number of times to acquire a new SQL connection and retry the invoke.
Interval (s)
Specify the time interval between each retry.
Backoff Factor: x
Allows you to wait for increasing periods of time between retries. 9 attempts with a
starting interval of 1 and a back off of 2 will lead to retries after 1, 2, 4, 8, 16, 32, 64, 128,
and 256 (28) seconds.
Max Interval (s):
Specify the maximum interval for retries.
12/14/2015 Oracle 11G Database Adapter as Poller with BPEL process | My Tech Blog
https://rathinasaba.wordpress.com/2012/12/16/oracle­11g­database­adapter­as­poller­with­bpel­process/ 17/23
  
RetryOptions
 
DBAdapterConfigEnd
  
4. Composite with Database Adapter
12/14/2015 Oracle 11G Database Adapter as Poller with BPEL process | My Tech Blog
https://rathinasaba.wordpress.com/2012/12/16/oracle­11g­database­adapter­as­poller­with­bpel­process/ 18/23
 
CompositeWithDBAdapter
 
4.1Right Click on “Components” screen and select “BPEL Process”.
 
12/14/2015 Oracle 11G Database Adapter as Poller with BPEL process | My Tech Blog
https://rathinasaba.wordpress.com/2012/12/16/oracle­11g­database­adapter­as­poller­with­bpel­process/ 19/23
SelectBPEL
 
4.2 Name the BPEL component,namespace, select Template and select input ,output from
XSD created while DB Adapter creation.
 
NameBPELandSelectInput
 
12/14/2015 Oracle 11G Database Adapter as Poller with BPEL process | My Tech Blog
https://rathinasaba.wordpress.com/2012/12/16/oracle­11g­database­adapter­as­poller­with­bpel­process/ 20/23
SelectedInput
 
Categories: Adapter Tags: DB Adapter 11G, DBAdapter, SOA 11G, SOA 11G DB
Adapter
Comments (0) Trackbacks (0) Leave a comment Trackback
1.  No comments yet.
1.  No trackbacks yet.
Leave a Reply
Related
Integrating BPEL and BAM
in Oracle SOA11G using
Sensors
Oracle SOA 11G ­
lookupXRef1M function
FlowN activity in BPEL SOA
11G
In "BAM"
In "BPEL" In "BPEL"
12/14/2015 Oracle 11G Database Adapter as Poller with BPEL process | My Tech Blog
https://rathinasaba.wordpress.com/2012/12/16/oracle­11g­database­adapter­as­poller­with­bpel­process/ 21/23
Updating the EJB Transaction Timeout Value in the Deployment Archive After SOA
Infrastructure Failure SOA11G – Fault Handling using Custom Java Class
RSS feed
Categories
ANT (7)
Eclipse (1)
Decompiler (1)
General (1)
Hibernate (5)
J2EE (5)
EJB3 (1)
JDBC (1)
Servlet & JSP (3)
Java (8)
sql (2)
XStream (1)
JAXB (1)
Oracle (2)
Restful (1)
SOA (36)
Adapter (1)
BAM (4)
BPEL (12)
DVM (2)
Exceptions_and_Solutions (3)
Installation (2)
RCU (1)
JDeveloper (1)
MDS (3)
Mediator (1)
OSB (5)
WLST (1)
Weblogic (1)
webservice (5)
XSLT (5)
Stats
Enter your comment here...
12/14/2015 Oracle 11G Database Adapter as Poller with BPEL process | My Tech Blog
https://rathinasaba.wordpress.com/2012/12/16/oracle­11g­database­adapter­as­poller­with­bpel­process/ 22/23
My Calendar
December 2012
M T W T F S S
« Nov   Jan »
  1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
31  
Archieves
Select Month
Meta
Register
Log in
Entries RSS
Comments RSS
Create a free website or blog at
WordPress.com.
Recent Posts
OSB11G Dynamic Routing Sample
OSB11G calling RESTful Web Service
Example
OSB11G Java Callout Example
OSB11G – Sample With Assign,
Replace, Insert, ServiceCallOut, Log
and XQuery
OSB11G_SayHello Sample ( WSDL
Based )
Pages
BPEL
ESB
12/14/2015 Oracle 11G Database Adapter as Poller with BPEL process | My Tech Blog
https://rathinasaba.wordpress.com/2012/12/16/oracle­11g­database­adapter­as­poller­with­bpel­process/ 23/23
Hibernate
J2EE
Java
My Learnings
SQL
Webservices
XStream
Top
Create a free website or blog at WordPress.com. The INove Theme.

More Related Content

What's hot

Apache Olingo - ApacheCon Denver 2014
Apache Olingo - ApacheCon Denver 2014Apache Olingo - ApacheCon Denver 2014
Apache Olingo - ApacheCon Denver 2014Stephan Klevenz
 
Ob loading data_oracle
Ob loading data_oracleOb loading data_oracle
Ob loading data_oracleSteve Xu
 
Liquibase migration for data bases
Liquibase migration for data basesLiquibase migration for data bases
Liquibase migration for data basesRoman Uholnikov
 
Sql developer resume
Sql developer resumeSql developer resume
Sql developer resumeguest9db49b8
 
Ms Sql Server Black Book
Ms Sql Server Black BookMs Sql Server Black Book
Ms Sql Server Black BookLiquidHub
 
SQL Server Extended Events
SQL Server Extended Events SQL Server Extended Events
SQL Server Extended Events Stuart Moore
 
SQL Server Extended Events presentation from SQL Midlands User Group 14th Mar...
SQL Server Extended Events presentation from SQL Midlands User Group 14th Mar...SQL Server Extended Events presentation from SQL Midlands User Group 14th Mar...
SQL Server Extended Events presentation from SQL Midlands User Group 14th Mar...Stuart Moore
 
Oracle Text in APEX
Oracle Text in APEXOracle Text in APEX
Oracle Text in APEXScott Wesley
 
How to Design a Good Database
How to Design a Good DatabaseHow to Design a Good Database
How to Design a Good DatabaseNur Hidayat
 
Oracle Exadata Interview Questions and Answers
Oracle Exadata Interview Questions and AnswersOracle Exadata Interview Questions and Answers
Oracle Exadata Interview Questions and AnswersExadatadba
 
OData Introduction and Impact on API Design (Webcast)
OData Introduction and Impact on API Design (Webcast)OData Introduction and Impact on API Design (Webcast)
OData Introduction and Impact on API Design (Webcast)Apigee | Google Cloud
 
Oracle no sql database bigdata
Oracle no sql database   bigdataOracle no sql database   bigdata
Oracle no sql database bigdataJoão Gabriel Lima
 
Deploying data tier applications sql saturday dc
Deploying data tier applications sql saturday dcDeploying data tier applications sql saturday dc
Deploying data tier applications sql saturday dcJoseph D'Antoni
 
An Autonomous Singularity Approaches: Force Multipliers For Overwhelmed DBAs
An Autonomous Singularity Approaches: Force Multipliers For Overwhelmed DBAsAn Autonomous Singularity Approaches: Force Multipliers For Overwhelmed DBAs
An Autonomous Singularity Approaches: Force Multipliers For Overwhelmed DBAsJim Czuprynski
 
Deploying data tier applications sql saturday dc
Deploying data tier applications sql saturday dcDeploying data tier applications sql saturday dc
Deploying data tier applications sql saturday dcJoseph D'Antoni
 
Politics Ain’t Beanbag: Using APEX, ML, and GeoCoding In a Modern Election Ca...
Politics Ain’t Beanbag: Using APEX, ML, and GeoCoding In a Modern Election Ca...Politics Ain’t Beanbag: Using APEX, ML, and GeoCoding In a Modern Election Ca...
Politics Ain’t Beanbag: Using APEX, ML, and GeoCoding In a Modern Election Ca...Jim Czuprynski
 
Robert Parkin Portfolio
Robert Parkin PortfolioRobert Parkin Portfolio
Robert Parkin Portfoliorsparkin
 

What's hot (20)

Data virtualization using polybase
Data virtualization using polybaseData virtualization using polybase
Data virtualization using polybase
 
Apache Olingo - ApacheCon Denver 2014
Apache Olingo - ApacheCon Denver 2014Apache Olingo - ApacheCon Denver 2014
Apache Olingo - ApacheCon Denver 2014
 
Sql Portfolio
Sql PortfolioSql Portfolio
Sql Portfolio
 
Ob loading data_oracle
Ob loading data_oracleOb loading data_oracle
Ob loading data_oracle
 
Liquibase migration for data bases
Liquibase migration for data basesLiquibase migration for data bases
Liquibase migration for data bases
 
Sql developer resume
Sql developer resumeSql developer resume
Sql developer resume
 
Ms Sql Server Black Book
Ms Sql Server Black BookMs Sql Server Black Book
Ms Sql Server Black Book
 
SQL Server Extended Events
SQL Server Extended Events SQL Server Extended Events
SQL Server Extended Events
 
SQL Server Extended Events presentation from SQL Midlands User Group 14th Mar...
SQL Server Extended Events presentation from SQL Midlands User Group 14th Mar...SQL Server Extended Events presentation from SQL Midlands User Group 14th Mar...
SQL Server Extended Events presentation from SQL Midlands User Group 14th Mar...
 
Oracle Text in APEX
Oracle Text in APEXOracle Text in APEX
Oracle Text in APEX
 
How to Design a Good Database
How to Design a Good DatabaseHow to Design a Good Database
How to Design a Good Database
 
Oracle Exadata Interview Questions and Answers
Oracle Exadata Interview Questions and AnswersOracle Exadata Interview Questions and Answers
Oracle Exadata Interview Questions and Answers
 
OData Introduction and Impact on API Design (Webcast)
OData Introduction and Impact on API Design (Webcast)OData Introduction and Impact on API Design (Webcast)
OData Introduction and Impact on API Design (Webcast)
 
Oracle no sql database bigdata
Oracle no sql database   bigdataOracle no sql database   bigdata
Oracle no sql database bigdata
 
Practical OData
Practical ODataPractical OData
Practical OData
 
Deploying data tier applications sql saturday dc
Deploying data tier applications sql saturday dcDeploying data tier applications sql saturday dc
Deploying data tier applications sql saturday dc
 
An Autonomous Singularity Approaches: Force Multipliers For Overwhelmed DBAs
An Autonomous Singularity Approaches: Force Multipliers For Overwhelmed DBAsAn Autonomous Singularity Approaches: Force Multipliers For Overwhelmed DBAs
An Autonomous Singularity Approaches: Force Multipliers For Overwhelmed DBAs
 
Deploying data tier applications sql saturday dc
Deploying data tier applications sql saturday dcDeploying data tier applications sql saturday dc
Deploying data tier applications sql saturday dc
 
Politics Ain’t Beanbag: Using APEX, ML, and GeoCoding In a Modern Election Ca...
Politics Ain’t Beanbag: Using APEX, ML, and GeoCoding In a Modern Election Ca...Politics Ain’t Beanbag: Using APEX, ML, and GeoCoding In a Modern Election Ca...
Politics Ain’t Beanbag: Using APEX, ML, and GeoCoding In a Modern Election Ca...
 
Robert Parkin Portfolio
Robert Parkin PortfolioRobert Parkin Portfolio
Robert Parkin Portfolio
 

Similar to Oracle 11G Database Adapter as Poller with BPEL process _ My Tech Blog

A lab tutorial about How you can get started and automate DB12c Multitenant l...
A lab tutorial about How you can get started and automate DB12c Multitenant l...A lab tutorial about How you can get started and automate DB12c Multitenant l...
A lab tutorial about How you can get started and automate DB12c Multitenant l...Hari Srinivasan
 
What is new on 12c for Backup and Recovery? Presentation
What is new on 12c for Backup and Recovery? PresentationWhat is new on 12c for Backup and Recovery? Presentation
What is new on 12c for Backup and Recovery? PresentationFrancisco Alvarez
 
Step-by-Step Cookbook for Identifying and Tuning SQL Problems
Step-by-Step Cookbook for Identifying and Tuning SQL ProblemsStep-by-Step Cookbook for Identifying and Tuning SQL Problems
Step-by-Step Cookbook for Identifying and Tuning SQL ProblemsMinh237839
 
0396 oracle-goldengate-12c-tutorial
0396 oracle-goldengate-12c-tutorial0396 oracle-goldengate-12c-tutorial
0396 oracle-goldengate-12c-tutorialKlausePaulino
 
Starschema Products
Starschema ProductsStarschema Products
Starschema ProductsEndre Adam
 
Golden gate disaster recovery  tips
Golden gate disaster recovery  tipsGolden gate disaster recovery  tips
Golden gate disaster recovery  tipskolleru
 
Oracle 11g nf_1.0
Oracle 11g nf_1.0Oracle 11g nf_1.0
Oracle 11g nf_1.0Nabi Abdul
 
Oracle RAC One Node 12c Overview
Oracle RAC One Node 12c OverviewOracle RAC One Node 12c Overview
Oracle RAC One Node 12c OverviewMarkus Michalewicz
 
Oracle Database 12c Release 2 - New Features On Oracle Database Exadata Expr...
Oracle Database 12c Release 2 - New Features On Oracle Database Exadata  Expr...Oracle Database 12c Release 2 - New Features On Oracle Database Exadata  Expr...
Oracle Database 12c Release 2 - New Features On Oracle Database Exadata Expr...Alex Zaballa
 
Oracle ADF Architecture TV - Design - Architecting for PLSQL Integration
Oracle ADF Architecture TV - Design - Architecting for PLSQL IntegrationOracle ADF Architecture TV - Design - Architecting for PLSQL Integration
Oracle ADF Architecture TV - Design - Architecting for PLSQL IntegrationChris Muir
 
Oracle RAC, Oracle Data Guard, and Pluggable Databases: When MAA Meets Oracle...
Oracle RAC, Oracle Data Guard, and Pluggable Databases: When MAA Meets Oracle...Oracle RAC, Oracle Data Guard, and Pluggable Databases: When MAA Meets Oracle...
Oracle RAC, Oracle Data Guard, and Pluggable Databases: When MAA Meets Oracle...Ludovico Caldara
 
Odi 12c-new-features-wp-2226353
Odi 12c-new-features-wp-2226353Odi 12c-new-features-wp-2226353
Odi 12c-new-features-wp-2226353Udaykumar Sarana
 
Oracle Database 12c Release 2 - New Features On Oracle Database Exadata Expre...
Oracle Database 12c Release 2 - New Features On Oracle Database Exadata Expre...Oracle Database 12c Release 2 - New Features On Oracle Database Exadata Expre...
Oracle Database 12c Release 2 - New Features On Oracle Database Exadata Expre...Alex Zaballa
 
Oracle 12c PDB insights
Oracle 12c PDB insightsOracle 12c PDB insights
Oracle 12c PDB insightsKirill Loifman
 
Oracle enterprise manager 12c migrate to pluggable database
Oracle enterprise manager 12c   migrate to pluggable databaseOracle enterprise manager 12c   migrate to pluggable database
Oracle enterprise manager 12c migrate to pluggable databaseNaveen KNS
 
jdbc vs hibernate.pptx
jdbc vs hibernate.pptxjdbc vs hibernate.pptx
jdbc vs hibernate.pptxYastee Shah
 
A introduction to oracle data integrator
A introduction to oracle data integratorA introduction to oracle data integrator
A introduction to oracle data integratorchkamal
 

Similar to Oracle 11G Database Adapter as Poller with BPEL process _ My Tech Blog (20)

A lab tutorial about How you can get started and automate DB12c Multitenant l...
A lab tutorial about How you can get started and automate DB12c Multitenant l...A lab tutorial about How you can get started and automate DB12c Multitenant l...
A lab tutorial about How you can get started and automate DB12c Multitenant l...
 
What is new on 12c for Backup and Recovery? Presentation
What is new on 12c for Backup and Recovery? PresentationWhat is new on 12c for Backup and Recovery? Presentation
What is new on 12c for Backup and Recovery? Presentation
 
Step-by-Step Cookbook for Identifying and Tuning SQL Problems
Step-by-Step Cookbook for Identifying and Tuning SQL ProblemsStep-by-Step Cookbook for Identifying and Tuning SQL Problems
Step-by-Step Cookbook for Identifying and Tuning SQL Problems
 
0396 oracle-goldengate-12c-tutorial
0396 oracle-goldengate-12c-tutorial0396 oracle-goldengate-12c-tutorial
0396 oracle-goldengate-12c-tutorial
 
Starschema Products
Starschema ProductsStarschema Products
Starschema Products
 
Golden gate disaster recovery  tips
Golden gate disaster recovery  tipsGolden gate disaster recovery  tips
Golden gate disaster recovery  tips
 
Oracle 11g nf_1.0
Oracle 11g nf_1.0Oracle 11g nf_1.0
Oracle 11g nf_1.0
 
Oracle RAC One Node 12c Overview
Oracle RAC One Node 12c OverviewOracle RAC One Node 12c Overview
Oracle RAC One Node 12c Overview
 
Presentation joelperez thailand2014
Presentation joelperez thailand2014Presentation joelperez thailand2014
Presentation joelperez thailand2014
 
Oracle Database 12c Release 2 - New Features On Oracle Database Exadata Expr...
Oracle Database 12c Release 2 - New Features On Oracle Database Exadata  Expr...Oracle Database 12c Release 2 - New Features On Oracle Database Exadata  Expr...
Oracle Database 12c Release 2 - New Features On Oracle Database Exadata Expr...
 
Oracle ADF Architecture TV - Design - Architecting for PLSQL Integration
Oracle ADF Architecture TV - Design - Architecting for PLSQL IntegrationOracle ADF Architecture TV - Design - Architecting for PLSQL Integration
Oracle ADF Architecture TV - Design - Architecting for PLSQL Integration
 
Oracle RAC, Oracle Data Guard, and Pluggable Databases: When MAA Meets Oracle...
Oracle RAC, Oracle Data Guard, and Pluggable Databases: When MAA Meets Oracle...Oracle RAC, Oracle Data Guard, and Pluggable Databases: When MAA Meets Oracle...
Oracle RAC, Oracle Data Guard, and Pluggable Databases: When MAA Meets Oracle...
 
Odi 12c-new-features-wp-2226353
Odi 12c-new-features-wp-2226353Odi 12c-new-features-wp-2226353
Odi 12c-new-features-wp-2226353
 
Oracle Database 12c Release 2 - New Features On Oracle Database Exadata Expre...
Oracle Database 12c Release 2 - New Features On Oracle Database Exadata Expre...Oracle Database 12c Release 2 - New Features On Oracle Database Exadata Expre...
Oracle Database 12c Release 2 - New Features On Oracle Database Exadata Expre...
 
Oracle 12c PDB insights
Oracle 12c PDB insightsOracle 12c PDB insights
Oracle 12c PDB insights
 
Oracle enterprise manager 12c migrate to pluggable database
Oracle enterprise manager 12c   migrate to pluggable databaseOracle enterprise manager 12c   migrate to pluggable database
Oracle enterprise manager 12c migrate to pluggable database
 
jdbc vs hibernate.pptx
jdbc vs hibernate.pptxjdbc vs hibernate.pptx
jdbc vs hibernate.pptx
 
PHP Oracle
PHP OraclePHP Oracle
PHP Oracle
 
dbadapters
dbadaptersdbadapters
dbadapters
 
A introduction to oracle data integrator
A introduction to oracle data integratorA introduction to oracle data integrator
A introduction to oracle data integrator
 

More from TUSHAR VARSHNEY

Choreography&orchestration
Choreography&orchestrationChoreography&orchestration
Choreography&orchestrationTUSHAR VARSHNEY
 
Prerequisite to start with sfdc adapter in soa 12 c
Prerequisite to start with sfdc adapter in soa 12 cPrerequisite to start with sfdc adapter in soa 12 c
Prerequisite to start with sfdc adapter in soa 12 cTUSHAR VARSHNEY
 
Oracle Enterprise Scheduler(ESS Job Scheduling)
Oracle Enterprise Scheduler(ESS Job Scheduling)Oracle Enterprise Scheduler(ESS Job Scheduling)
Oracle Enterprise Scheduler(ESS Job Scheduling)TUSHAR VARSHNEY
 
Using jca salesforce adapter with soa suite
Using jca salesforce adapter with soa suiteUsing jca salesforce adapter with soa suite
Using jca salesforce adapter with soa suiteTUSHAR VARSHNEY
 
Oracle@cloud adapter(SFDC integration with SOA Suites12c)
Oracle@cloud adapter(SFDC integration with SOA Suites12c)Oracle@cloud adapter(SFDC integration with SOA Suites12c)
Oracle@cloud adapter(SFDC integration with SOA Suites12c)TUSHAR VARSHNEY
 
Horizontal clustering configuration steps
Horizontal clustering configuration steps Horizontal clustering configuration steps
Horizontal clustering configuration steps TUSHAR VARSHNEY
 
Installing the Oracle SOA Suite on Red Hat 6
Installing the Oracle SOA Suite on Red Hat 6Installing the Oracle SOA Suite on Red Hat 6
Installing the Oracle SOA Suite on Red Hat 6TUSHAR VARSHNEY
 
How to Install JAVA 7 (JDK 7u79) on CentOS_RHEL 7_6_5
How to Install JAVA 7 (JDK 7u79) on CentOS_RHEL 7_6_5How to Install JAVA 7 (JDK 7u79) on CentOS_RHEL 7_6_5
How to Install JAVA 7 (JDK 7u79) on CentOS_RHEL 7_6_5TUSHAR VARSHNEY
 
Introduction of xml and xslt
Introduction of xml and xsltIntroduction of xml and xslt
Introduction of xml and xsltTUSHAR VARSHNEY
 
Description of soa and SOAP,WSDL & UDDI
Description of soa and SOAP,WSDL & UDDIDescription of soa and SOAP,WSDL & UDDI
Description of soa and SOAP,WSDL & UDDITUSHAR VARSHNEY
 
J developer 11g components ppt
J developer 11g components pptJ developer 11g components ppt
J developer 11g components pptTUSHAR VARSHNEY
 
Simplifying SOA_ Choosing Between Route, Service Callout and Publish
Simplifying SOA_ Choosing Between Route, Service Callout and PublishSimplifying SOA_ Choosing Between Route, Service Callout and Publish
Simplifying SOA_ Choosing Between Route, Service Callout and PublishTUSHAR VARSHNEY
 
1 Learning About Oracle Service Bus
1 Learning About Oracle Service Bus1 Learning About Oracle Service Bus
1 Learning About Oracle Service BusTUSHAR VARSHNEY
 

More from TUSHAR VARSHNEY (18)

Choreography&orchestration
Choreography&orchestrationChoreography&orchestration
Choreography&orchestration
 
Prerequisite to start with sfdc adapter in soa 12 c
Prerequisite to start with sfdc adapter in soa 12 cPrerequisite to start with sfdc adapter in soa 12 c
Prerequisite to start with sfdc adapter in soa 12 c
 
Oracle Enterprise Scheduler(ESS Job Scheduling)
Oracle Enterprise Scheduler(ESS Job Scheduling)Oracle Enterprise Scheduler(ESS Job Scheduling)
Oracle Enterprise Scheduler(ESS Job Scheduling)
 
Sfdc documentation
Sfdc documentationSfdc documentation
Sfdc documentation
 
Using jca salesforce adapter with soa suite
Using jca salesforce adapter with soa suiteUsing jca salesforce adapter with soa suite
Using jca salesforce adapter with soa suite
 
Oracle@cloud adapter(SFDC integration with SOA Suites12c)
Oracle@cloud adapter(SFDC integration with SOA Suites12c)Oracle@cloud adapter(SFDC integration with SOA Suites12c)
Oracle@cloud adapter(SFDC integration with SOA Suites12c)
 
Horizontal clustering configuration steps
Horizontal clustering configuration steps Horizontal clustering configuration steps
Horizontal clustering configuration steps
 
Installing the Oracle SOA Suite on Red Hat 6
Installing the Oracle SOA Suite on Red Hat 6Installing the Oracle SOA Suite on Red Hat 6
Installing the Oracle SOA Suite on Red Hat 6
 
How to Install JAVA 7 (JDK 7u79) on CentOS_RHEL 7_6_5
How to Install JAVA 7 (JDK 7u79) on CentOS_RHEL 7_6_5How to Install JAVA 7 (JDK 7u79) on CentOS_RHEL 7_6_5
How to Install JAVA 7 (JDK 7u79) on CentOS_RHEL 7_6_5
 
Introduction of xml and xslt
Introduction of xml and xsltIntroduction of xml and xslt
Introduction of xml and xslt
 
Description of soa and SOAP,WSDL & UDDI
Description of soa and SOAP,WSDL & UDDIDescription of soa and SOAP,WSDL & UDDI
Description of soa and SOAP,WSDL & UDDI
 
Introduction to bpel
Introduction to bpelIntroduction to bpel
Introduction to bpel
 
Componenets of osb12c
Componenets of osb12cComponenets of osb12c
Componenets of osb12c
 
J developer 11g components ppt
J developer 11g components pptJ developer 11g components ppt
J developer 11g components ppt
 
componenets of osb12c
componenets of osb12ccomponenets of osb12c
componenets of osb12c
 
Simplifying SOA_ Choosing Between Route, Service Callout and Publish
Simplifying SOA_ Choosing Between Route, Service Callout and PublishSimplifying SOA_ Choosing Between Route, Service Callout and Publish
Simplifying SOA_ Choosing Between Route, Service Callout and Publish
 
oracle service bus
oracle service busoracle service bus
oracle service bus
 
1 Learning About Oracle Service Bus
1 Learning About Oracle Service Bus1 Learning About Oracle Service Bus
1 Learning About Oracle Service Bus
 

Oracle 11G Database Adapter as Poller with BPEL process _ My Tech Blog