473,396 Members | 2,034 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

DB2 and ORACLE in XA transaction

Hi!

I'm using DB2 database on one server and ORACLE database on the second one.
I want to move some data from ORACLE database to DB2 database and update
some columns on ORACLE database so I know what rows were transfered. I'd
like to do this in a distributed XA transaction and Java. :)
How is this possible ?

Best regards,
Kovi
--
-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-
| In A World Without Fences Who Needs Gates? |
| Experience Linux. |
-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-
Apr 24 '07 #1
19 3998
Gregor Kovač wrote:
Hi!

I'm using DB2 database on one server and ORACLE database on the second
one. I want to move some data from ORACLE database to DB2 database and
update some columns on ORACLE database so I know what rows were
transfered. I'd like to do this in a distributed XA transaction and Java.
:) How is this possible ?
I'm not sure what your question is. My answer would be: open one XA
transaction to DB2, another one to Oracle, do the operations you want to
do, then perform a two-phase commit.

--
Knut Stolze
DB2 z/OS Utilities Development
IBM Germany
Apr 24 '07 #2
Knut Stolze wrote:
Gregor Kovač wrote:
>Hi!

I'm using DB2 database on one server and ORACLE database on the second
one. I want to move some data from ORACLE database to DB2 database and
update some columns on ORACLE database so I know what rows were
transfered. I'd like to do this in a distributed XA transaction and Java.
:) How is this possible ?

I'm not sure what your question is. My answer would be: open one XA
transaction to DB2, another one to Oracle, do the operations you want to
do, then perform a two-phase commit.
Or alternatively purchase Oracle's Heterogeneous Services (formerly
Transparent Gateway). But without version information you are asking
people to shoot in the dark.
--
Daniel A. Morgan
University of Washington
da******@x.washington.edu
(replace x with u to respond)
Puget Sound Oracle Users Group
www.psoug.org
Apr 24 '07 #3
Knut Stolze wrote:
Gregor Kovač wrote:
>Hi!

I'm using DB2 database on one server and ORACLE database on the second
one. I want to move some data from ORACLE database to DB2 database and
update some columns on ORACLE database so I know what rows were
transfered. I'd like to do this in a distributed XA transaction and Java.
:) How is this possible ?

I'm not sure what your question is. My answer would be: open one XA
transaction to DB2, another one to Oracle, do the operations you want to
do, then perform a two-phase commit.
Thanks for you answer. Maybe I was a bit unclear.
On one server I have an ORACLE database (don't know what version, yet :)) ).
One another I have DB2 v9.1. Now I want to move data from ORACLE to DB2 and
from DB2 to ORACLE. Using distributed transactions would allow me to do
commit/rollback on both ends, right? I'm using Java and don't know how to
do it (yet). :))
Now I have something like this:
// Open connection to ORACLE
Connection oracleConn = DriverManager.getConnection(....);
oracleConn.setautoCommit(false);
// Open connection to DB2
Connection db2Conn = DriverManager.getConnection(....);
db2Conn.setautoCommit(false);

// select data from DB2
ResultSet rs = db2Conn.createStatement().executeQuery("SELECT * FROM
TABLE1");
while (rs.next() == true)
{
// insert data into ORACLE
// update some rows in DB2
}

db2Conn.commit(); // 1
oracleConn.commit(); // 2
In this example these is an error since commit to db2Conn (1) and be
performed and commit to oracleConn (2) can fail and I end up with data I
don't want to have. :))

I'm curious how to do the XA transactions? Do I have to use something like
DriverManager.getXAConnection() ?

Best regards,
Kovi

--
-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-
| In A World Without Fences Who Needs Gates? |
| Experience Linux. |
-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-
Apr 25 '07 #4
On Wed, 25 Apr 2007, Gregor Kova~M wrote:
Knut Stolze wrote:
>Gregor Kovač wrote:
>>Hi!

I'm using DB2 database on one server and ORACLE database on the second
one. I want to move some data from ORACLE database to DB2 database and
update some columns on ORACLE database so I know what rows were
transfered. I'd like to do this in a distributed XA transaction and Java.
:) How is this possible ?

I'm not sure what your question is. My answer would be: open one XA
transaction to DB2, another one to Oracle, do the operations you want to
do, then perform a two-phase commit.

Thanks for you answer. Maybe I was a bit unclear.
On one server I have an ORACLE database (don't know what version, yet :)) ).
One another I have DB2 v9.1. Now I want to move data from ORACLE to DB2 and
from DB2 to ORACLE. Using distributed transactions would allow me to do
commit/rollback on both ends, right? I'm using Java and don't know how to
do it (yet). :))
Now I have something like this:
// Open connection to ORACLE
Connection oracleConn = DriverManager.getConnection(....);
oracleConn.setautoCommit(false);
// Open connection to DB2
Connection db2Conn = DriverManager.getConnection(....);
db2Conn.setautoCommit(false);

// select data from DB2
ResultSet rs = db2Conn.createStatement().executeQuery("SELECT * FROM
TABLE1");
while (rs.next() == true)
{
// insert data into ORACLE
// update some rows in DB2
}

db2Conn.commit(); // 1
oracleConn.commit(); // 2
In this example these is an error since commit to db2Conn (1) and be
performed and commit to oracleConn (2) can fail and I end up with data I
don't want to have. :))

I'm curious how to do the XA transactions? Do I have to use something like
DriverManager.getXAConnection() ?

Best regards,
Kovi

Hi,
You would need to use the jdbc calls for XA, you can look
them up in the manuals. You will have other problems though,
if you do this, then you will be playing the role of TM,
which, if your application is serious and not a simple toy,
then playing this role is quite a lot of work as you need to
keep track of transaction id's, server responses, etc in a
reliable way, just to ensure correctness in case one or both
of the databases go down, and transactions are not left
pending.

OR, you could just use DB2's federated capability to do what
you want. I've used it between oracle and db2 and it works
fine. It takes care of the TM role for you, and you need no
programming, just some configuration steps, then access db2
through jdbc as if it was a single database and forget about
multiple databases.

Its a separately licensed feature, not sure if you can
afford it, but would definitely save you lots of work.

Michael
Apr 25 '07 #5
On Apr 24, 5:08 am, Gregor Kovač <gregor.ko...@mikropis.siwrote:
I'm using DB2 database on one server and ORACLE database on the second one.
I want to move some data from ORACLE database to DB2 database and update
some columns on ORACLE database so I know what rows were transfered. I'd
like to do this in a distributed XA transaction and Java. :)
How is this possible ?
One way is to use Federation. The NET8 wrapper for Oracle supports XA,
and the SQL would be simple if your Oracle tables are mapped into the
DB2 database as Nicknames.

http://publib.boulder.ibm.com/infoce...iyfqtpc01.html

Harold Lee
ha*****@us.ibm.com

Apr 25 '07 #6
On Apr 24, 5:08 am, Gregor Kovač <gregor.ko...@mikropis.siwrote:
I'm using DB2 database on one server and ORACLE database on the second one.
I want to move some data from ORACLE database to DB2 database and update
some columns on ORACLE database so I know what rows were transfered. I'd
like to do this in a distributed XA transaction and Java. :)
How is this possible ?
Another option is to use DB2 Federation to create a nickname in the
DB2 database for the Oracle table(s). The NET8 wrapper supports XA for
two phase commit:

http://publib.boulder.ibm.com/infoce...iyfqtpc01.html

This would make your SQL very simple because it would be the same as
moving rows around within a DB2 database.

Harold Lee
ha*****@us.ibm.com

Apr 25 '07 #7
You can also do this from the other direction - use heterogeneous
services from the Oracle database to copy the rows from Oracle to DB2
and then update the Oracle rows.

See
http://download-west.oracle.com/docs....htm#sthref343

Heterogeneous Services are included for free in all Oracle databases
from Oracle8i onwards, but they use ODBC as the comm layer. If you want
something more performant than an ODBC connection, there are the
specific Transparent Gateways available for cost - in this case see the
DRDA one at
http://download-west.oracle.com/docs...b16218/toc.htm

Usage is the same - simply set up a DBLink (remote_db2_db) over
heterogeneous services or the DRDA Transparent Gateway and issue
something like

INSERT INTO remote_db2_table@remote_db2_db SELECT column_list FROM
local_oracle_table;

where you are connected to Oracle, and remote_db2_table is the DB2 table
that you want to insert into on the other side of the remote_db2_db DBLink.

You could wrap this in the begin transaction/commit with an update to
the local oracle table as well.

Alternatively, the COPY command issued from SQLPlus is very efficient

COPY FROM SCOTT/TIGER@local_oracle_db INSERT
remote_db2_table@remote_db2_db USING SELECT * FROM local_oracle_table;
Apr 26 '07 #8
>>On 4/25/2007 at 9:05 PM, in message
<0G***************@newssvr23.news.prodigy.net>, Mark
Townsend<ma***********@sbcglobal.netwrote:
You can also do this from the other direction - use heterogeneous
services from the Oracle database to copy the rows from Oracle to DB2
and then update the Oracle rows.

See
http://download-west.oracle.com/docs...2/b14232/genco
n.htm#sthref343

Heterogeneous Services are included for free in all Oracle databases
from Oracle8i onwards, but they use ODBC as the comm layer. If you want
something more performant than an ODBC connection, there are the
specific Transparent Gateways available for cost - in this case see the
DRDA one at
http://download-west.oracle.com/docs...102/b16218/toc
.htm
You seem to have a lot of Oracle knowledge. Do you have any idea on the
price of the Oracle Transparent Gateway for IBM DRDA? I am in fear of a
price similar to the IBM WebSphere Federation Server ($125,000!!!).

Frank

Apr 26 '07 #9
Frank Swarbrick wrote:
>>>On 4/25/2007 at 9:05 PM, in message
<0G***************@newssvr23.news.prodigy.net>, Mark
Townsend<ma***********@sbcglobal.netwrote:
>You can also do this from the other direction - use heterogeneous
services from the Oracle database to copy the rows from Oracle to DB2
and then update the Oracle rows.

See
http://download-west.oracle.com/docs...2/b14232/genco
>n.htm#sthref343

Heterogeneous Services are included for free in all Oracle databases
from Oracle8i onwards, but they use ODBC as the comm layer. If you want
something more performant than an ODBC connection, there are the
specific Transparent Gateways available for cost - in this case see the
DRDA one at
http://download-west.oracle.com/docs...102/b16218/toc
>.htm

You seem to have a lot of Oracle knowledge. Do you have any idea on the
price of the Oracle Transparent Gateway for IBM DRDA? I am in fear of a
price similar to the IBM WebSphere Federation Server ($125,000!!!).

Frank
Going to store.oracle.com and searching for "DB2" will give you a list
of products and prices. Buying from an Oracle sales rep will often save
you money. The prices I see on the site are listed in hundreds of
dollars ... not hundreds of thousands of dollars.
--
Daniel A. Morgan
University of Washington
da******@x.washington.edu
(replace x with u to respond)
Puget Sound Oracle Users Group
www.psoug.org
Apr 26 '07 #10
DA Morgan wrote:
Frank Swarbrick wrote:
>>>>On 4/25/2007 at 9:05 PM, in message
<0G***************@newssvr23.news.prodigy.net>, Mark
Townsend<ma***********@sbcglobal.netwrote:
>>You can also do this from the other direction - use heterogeneous
services from the Oracle database to copy the rows from Oracle to DB2
and then update the Oracle rows.

See
http://download-west.oracle.com/docs...2/b14232/genco
>>n.htm#sthref343

Heterogeneous Services are included for free in all Oracle databases
from Oracle8i onwards, but they use ODBC as the comm layer. If you
want something more performant than an ODBC connection, there are the
specific Transparent Gateways available for cost - in this case see
the DRDA one at
http://download-west.oracle.com/docs...102/b16218/toc
>>.htm

You seem to have a lot of Oracle knowledge. Do you have any idea on the
price of the Oracle Transparent Gateway for IBM DRDA? I am in fear of a
price similar to the IBM WebSphere Federation Server ($125,000!!!).

Frank

Going to store.oracle.com and searching for "DB2" will give you a list
of products and prices. Buying from an Oracle sales rep will often save
you money. The prices I see on the site are listed in hundreds of
dollars ... not hundreds of thousands of dollars.
Similar to the ODBC interface, presuming that Oracle can serve as an
OLEDB provider (or a webservice provider...) once can write an OLEDB
table function or webservice. That would be free.
OLEDB of course assumes Windows...
--
Serge Rielau
DB2 Solutions Development
IBM Toronto Lab
Apr 26 '07 #11
DA Morgan wrote:
Frank Swarbrick wrote:
>>>>On 4/25/2007 at 9:05 PM, in message
<0G***************@newssvr23.news.prodigy.net>, Mark
Townsend<ma***********@sbcglobal.netwrote:
>>You can also do this from the other direction - use heterogeneous
services from the Oracle database to copy the rows from Oracle to
DB2 and then update the Oracle rows.

See
http://download-west.oracle.com/docs...2/b14232/genco
>>n.htm#sthref343

Heterogeneous Services are included for free in all Oracle databases
from Oracle8i onwards, but they use ODBC as the comm layer. If you
want something more performant than an ODBC connection, there are
the specific Transparent Gateways available for cost - in this case
see the DRDA one at
http://download-west.oracle.com/docs...102/b16218/toc
>>.htm

You seem to have a lot of Oracle knowledge. Do you have any idea on
the price of the Oracle Transparent Gateway for IBM DRDA? I am in
fear of a price similar to the IBM WebSphere Federation Server
($125,000!!!). Frank

Going to store.oracle.com and searching for "DB2" will give you a list
of products and prices. Buying from an Oracle sales rep will often
save you money. The prices I see on the site are listed in hundreds of
dollars ... not hundreds of thousands of dollars.
??

When I go to store.oracle.com, I have to choose a country first.
Selecting Netherlands and searching for "db2" doesn't give a single result.
Selecting US and searching for "db2" only gives entries for:
- Secure Enterprise Search Connector - IBM DB2 Content Manager
- System Monitoring Plug-in for Non Oracle Databases - IBM DB2

However, I found info on "Enterprise Integration Gateways" at:
http://oraclestore.oracle.com/OA_HTM...?section=11002

<quote>
Oracle Enterprise Integration Gateways provide a broad range of
capabilities:

Standard Oracle SQL can access DB2 data made available via IBM's DRDA
(Distributed Relational Database Architecture) on OS/390 (z/OS), VM/ESA,
VSE/ESA, OS/400, and popular UNIX systems. Applications using the
Transparent Gateway for DRDA need not know the physical location of the
data, the network protocol, or the target operating system. This creates the
appearance that all data resides in one local Oracle database, and
eliminates the need to duplicate the data on different platforms, minimizing
redundant and inconsistent data. Support for transactional consistency
between Oracle and DB2 maintains data integrity, even in a distributed
update environment.
</quote>

followed by similar info for other Gateway variants (for Websphere, AS/400,
....).
At the bottom of the page:

<quote>
Check Licensing Definitions
Please Select:
Enterprise Integration Gateways - Computer Perpetual[?27,276.00]
</quote>

A little more than "hundreds of dollars" (let alone euros)...
And I'm sure my customer using "OTG for DB2" pays a lot more than a couple
of hundreds of dollars/euros as well.

--
Jeroen
Apr 26 '07 #12
>>On 4/26/2007 at 4:36 PM, in message
<46*********************@news.xs4all.nl>, The
Boss<us****@No.Spam.Please.invalidwrote:
>
When I go to store.oracle.com, I have to choose a country first.
Selecting Netherlands and searching for "db2" doesn't give a single
result.
Selecting US and searching for "db2" only gives entries for:
- Secure Enterprise Search Connector - IBM DB2 Content Manager
- System Monitoring Plug-in for Non Oracle Databases - IBM DB2

However, I found info on "Enterprise Integration Gateways" at:
http://oraclestore.oracle.com/OA_HTM...?section=11002

<quote>
Oracle Enterprise Integration Gateways provide a broad range of
capabilities:

Standard Oracle SQL can access DB2 data made available via IBM's DRDA
(Distributed Relational Database Architecture) on OS/390 (z/OS), VM/ESA,

VSE/ESA, OS/400, and popular UNIX systems. Applications using the
Transparent Gateway for DRDA need not know the physical location of the
data, the network protocol, or the target operating system. This creates
the
appearance that all data resides in one local Oracle database, and
eliminates the need to duplicate the data on different platforms,
minimizing
redundant and inconsistent data. Support for transactional consistency
between Oracle and DB2 maintains data integrity, even in a distributed
update environment.
</quote>

followed by similar info for other Gateway variants (for Websphere,
AS/400,
...).
At the bottom of the page:

<quote>
Check Licensing Definitions
Please Select:
Enterprise Integration Gateways - Computer Perpetual[?27,276.00]
</quote>

A little more than "hundreds of dollars" (let alone euros)...
And I'm sure my customer using "OTG for DB2" pays a lot more than a
couple
of hundreds of dollars/euros as well.
Yep. For U.S.A. I show $35,000.
Still a lot if I was paying for it myself, but also a lot less than
$125,000.

Thanks for finding this.

Frank

Apr 26 '07 #13
Serge Rielau wrote:
DA Morgan wrote:
>Frank Swarbrick wrote:
>>>>>On 4/25/2007 at 9:05 PM, in message
<0G***************@newssvr23.news.prodigy.net> , Mark
Townsend<ma***********@sbcglobal.netwrote:
You can also do this from the other direction - use heterogeneous
services from the Oracle database to copy the rows from Oracle to
DB2 and then update the Oracle rows.

See
http://download-west.oracle.com/docs...2/b14232/genco
n.htm#sthref343

Heterogeneous Services are included for free in all Oracle databases
from Oracle8i onwards, but they use ODBC as the comm layer. If you
want something more performant than an ODBC connection, there are
the specific Transparent Gateways available for cost - in this case
see the DRDA one at
http://download-west.oracle.com/docs...102/b16218/toc
.htm

You seem to have a lot of Oracle knowledge. Do you have any idea on the
price of the Oracle Transparent Gateway for IBM DRDA? I am in fear of a
price similar to the IBM WebSphere Federation Server ($125,000!!!).

Frank

Going to store.oracle.com and searching for "DB2" will give you a list
of products and prices. Buying from an Oracle sales rep will often save
you money. The prices I see on the site are listed in hundreds of
dollars ... not hundreds of thousands of dollars.
Similar to the ODBC interface, presuming that Oracle can serve as an
OLEDB provider (or a webservice provider...) once can write an OLEDB
table function or webservice. That would be free.
OLEDB of course assumes Windows...
And writing your own assumes no need for support.

$125K Serge? Does it come in a solid-platinum case from Tiffany?
--
Daniel A. Morgan
University of Washington
da******@x.washington.edu
(replace x with u to respond)
Puget Sound Oracle Users Group
www.psoug.org
Apr 26 '07 #14
The Boss wrote:
DA Morgan wrote:
>Frank Swarbrick wrote:
>>>>>On 4/25/2007 at 9:05 PM, in message
<0G***************@newssvr23.news.prodigy.net> , Mark
Townsend<ma***********@sbcglobal.netwrote:
You can also do this from the other direction - use heterogeneous
services from the Oracle database to copy the rows from Oracle to
DB2 and then update the Oracle rows.

See
http://download-west.oracle.com/docs...2/b14232/genco
n.htm#sthref343

Heterogeneous Services are included for free in all Oracle databases
from Oracle8i onwards, but they use ODBC as the comm layer. If you
want something more performant than an ODBC connection, there are
the specific Transparent Gateways available for cost - in this case
see the DRDA one at
http://download-west.oracle.com/docs...102/b16218/toc
.htm
You seem to have a lot of Oracle knowledge. Do you have any idea on
the price of the Oracle Transparent Gateway for IBM DRDA? I am in
fear of a price similar to the IBM WebSphere Federation Server
($125,000!!!). Frank
Going to store.oracle.com and searching for "DB2" will give you a list
of products and prices. Buying from an Oracle sales rep will often
save you money. The prices I see on the site are listed in hundreds of
dollars ... not hundreds of thousands of dollars.

??

When I go to store.oracle.com, I have to choose a country first.
Selecting Netherlands and searching for "db2" doesn't give a single result.
Selecting US and searching for "db2" only gives entries for:
- Secure Enterprise Search Connector - IBM DB2 Content Manager
- System Monitoring Plug-in for Non Oracle Databases - IBM DB2

However, I found info on "Enterprise Integration Gateways" at:
http://oraclestore.oracle.com/OA_HTM...?section=11002

<quote>
Oracle Enterprise Integration Gateways provide a broad range of
capabilities:

Standard Oracle SQL can access DB2 data made available via IBM's DRDA
(Distributed Relational Database Architecture) on OS/390 (z/OS), VM/ESA,
VSE/ESA, OS/400, and popular UNIX systems. Applications using the
Transparent Gateway for DRDA need not know the physical location of the
data, the network protocol, or the target operating system. This creates the
appearance that all data resides in one local Oracle database, and
eliminates the need to duplicate the data on different platforms, minimizing
redundant and inconsistent data. Support for transactional consistency
between Oracle and DB2 maintains data integrity, even in a distributed
update environment.
</quote>

followed by similar info for other Gateway variants (for Websphere, AS/400,
...).
At the bottom of the page:

<quote>
Check Licensing Definitions
Please Select:
Enterprise Integration Gateways - Computer Perpetual[?27,276.00]
</quote>

A little more than "hundreds of dollars" (let alone euros)...
And I'm sure my customer using "OTG for DB2" pays a lot more than a couple
of hundreds of dollars/euros as well.
http://store.oracle.com
Select United States
At the top where it says "Quick Search | All Products" type in "DB2"

I have no idea why it isn't there for your country but then I don't
work for Oracle.
--
Daniel A. Morgan
University of Washington
da******@x.washington.edu
(replace x with u to respond)
Puget Sound Oracle Users Group
www.psoug.org
Apr 26 '07 #15
DA Morgan wrote:
And writing your own assumes no need for support.
Yeah, why do something myself if I can pay for it...
http://www-128.ibm.com/developerwork.../dm-0405brown/

Least we forget Kovi just needed to shuffle a bit of data.

Cheers
Serge
--
Serge Rielau
DB2 Solutions Development
IBM Toronto Lab
Apr 27 '07 #16
On Thu, 26 Apr 2007, DA Morgan wrote:
Frank Swarbrick wrote:
>>>>On 4/25/2007 at 9:05 PM, in message
<0G***************@newssvr23.news.prodigy.net>, Mark
Townsend<ma***********@sbcglobal.netwrote:
>>You can also do this from the other direction - use heterogeneous services
from the Oracle database to copy the rows from Oracle to DB2 and then
update the Oracle rows.

See
http://download-west.oracle.com/docs...2/b14232/genco
>>n.htm#sthref343

Heterogeneous Services are included for free in all Oracle databases from
Oracle8i onwards, but they use ODBC as the comm layer. If you want
something more performant than an ODBC connection, there are the specific
Transparent Gateways available for cost - in this case see the DRDA one at
http://download-west.oracle.com/docs...102/b16218/toc
>>.htm

You seem to have a lot of Oracle knowledge. Do you have any idea on the
price of the Oracle Transparent Gateway for IBM DRDA? I am in fear of a
price similar to the IBM WebSphere Federation Server ($125,000!!!).

Frank

Going to store.oracle.com and searching for "DB2" will give you a list
of products and prices. Buying from an Oracle sales rep will often save
you money. The prices I see on the site are listed in hundreds of
dollars ... not hundreds of thousands of dollars.
--
Daniel A. Morgan
University of Washington
da******@x.washington.edu
(replace x with u to respond)
Puget Sound Oracle Users Group
www.psoug.org
I don't know where you got the 125K price for db2 with
federation. If you already have a db2 (which I guess you do
since you want to integrate it with oracle), then " adding"
the feature is not as expensive as buying a whole new
package. Also, there are several levels, there is standard,
enterprise and whatever. Seems like the 125K you found is
for the enterprise unlimeted that includes a db2 license and
all the wrappers. If you need only oracle, then you can
purchase "by wrapper". its best if you get an ibm sales rep
to help you (ok, pause so can laugh for a bit). I'm sure
that if all you want is to access 1 oracle server, you can
get it for a lot less that 125K.

Whether you go with oracle gateway or db2 federated, is
probably up to what your site has a preference for. If
you're mostly a db2 shop, you should get good pricing from
ibm, else, put the squeeze on oracle if you're an oracle
shop.
Note that the drda wrapper is free with a db2 license.
Michael
Apr 27 '07 #17
I work for Oracle. The TG for DRDA is part of the Oracle Enterprise
Integration Gateways suite which includes the TG for DRDA, the APPC
gateway, a native DB2/400 gateway, an MQSeries gateway, and the ability
to access Oracle from AS/400 programs. The suite is $35K US per server -
the server referred to is the server on which the Oracle database
resides that access these different systems.
Apr 27 '07 #18
Serge Rielau wrote:
DA Morgan wrote:
>And writing your own assumes no need for support.
Yeah, why do something myself if I can pay for it...
http://www-128.ibm.com/developerwork.../dm-0405brown/

Least we forget Kovi just needed to shuffle a bit of data.

Cheers
Serge
If anyone has invested the resources required, hardware and software,
to support both DB2 and Oracle ... whatever they are doing is important
enough to do it properly.
--
Daniel A. Morgan
University of Washington
da******@x.washington.edu
(replace x with u to respond)
Puget Sound Oracle Users Group
www.psoug.org
Apr 27 '07 #19
>>On 4/26/2007 at 7:30 PM, in message
>>

I don't know where you got the 125K price for db2 with
federation. If you already have a db2 (which I guess you do
since you want to integrate it with oracle), then " adding"
the feature is not as expensive as buying a whole new
package. Also, there are several levels, there is standard,
enterprise and whatever. Seems like the 125K you found is
for the enterprise unlimeted that includes a db2 license and
all the wrappers. If you need only oracle, then you can
purchase "by wrapper". its best if you get an ibm sales rep
to help you (ok, pause so can laugh for a bit). I'm sure
that if all you want is to access 1 oracle server, you can
get it for a lot less that 125K.

Whether you go with oracle gateway or db2 federated, is
probably up to what your site has a preference for. If
you're mostly a db2 shop, you should get good pricing from
ibm, else, put the squeeze on oracle if you're an oracle
shop.
Note that the drda wrapper is free with a db2 license.
https://www-112.ibm.com/software/how...s/Express?P0=E
1&part_number=D59J1LL,D59IVLL,D59IQLL,D59IXLL&cata logLocale=en_US&Locale=en_
US&country=USA&PT=html&S_TACT=none&S_CMP=none

IBM WebSphere Federation Server 2 Base Processors License + SW Maintenance
12 Months (D59IVLL) 125,000.00

Our IBM Business Partner also quoted us a similar price, less a bit of a
discount.
If it's true that you can buy only the wrappers you really need then this is
good news. Perhaps we'll have to slap our IBM BP upside the head to get us
some more realistic pricing.

Frank

Apr 27 '07 #20

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: francis70 | last post by:
Hi, I have these 2 problem? Is there a way in Oracle to read UNCOMMITED data. i.e. in Oracle the normal behaviour is that a user's updates to a table are visible to other users ONLY when the...
7
by: Jeff Lambert | last post by:
We have a Windows client application written in delphi that connects to Oracle 8i w/ ADO. We accumulate a lot of SQL statements in a loop and finally send the strings list to be executed. What I...
11
by: Markus Breuer | last post by:
I have a question about oracle commit and transactions. Following scenario: Process A performs a single sql-INSERT into a table and commits the transaction. Then he informs process B (ipc) to...
1
by: Eirik Tryggeseth | last post by:
During deployment of an application using distributed transactions managed under COM+ on an Oracle 9i RAC database, we encounter situations where the load balancing mechanisms in the RAC result in...
1
by: Rick | last post by:
I'm having problems with EnterpriseServices transactions running against Oracle 9iR2. I am inconsistently getting Oracle ORA-24761: Transaction Rolled Back results mid-transaction. If I start...
4
by: Abram Friesen | last post by:
Hi, I'm a developer for a software application vendor, and our application makes use of a customer-maintained Oracle 8i/9i database. We've had a customer request to support DB2 database, and I'm...
42
by: Paul | last post by:
Anyone know where I can find some good resources to help us choose between SQL and Oracle ( Progress Openedge as well ) . Any comments on what you would choose ?? We are creating a new Warehouse...
5
by: ashley.ward | last post by:
I am attempting to write a program with VB 2005 Express Edition which accesses an Oracle 9 database and dumps the results of three SELECT queries into a spreadsheet file once every hour. ...
0
by: gshawn3 | last post by:
Hi, I am having a hard time creating a Trigger to update an Oracle database. I am using a SQL Server 2005 Express database on a Win XP Pro SP2 desktop, linked to an Oracle 10g database on a...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.