This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
Hi, We need to extract our Java intranet application's db2 data (only one table) and transfer it to SAP's oracle db. Any ideas as to how to do this? Do we need an interface? Thank you, Naveen
Anonymous
Ranch Hand
Joined: Nov 22, 2008
Posts: 18944
posted
0
You could write a program to do this in Java. You would need a JDBC driver for DB2 and one for Oracle. Assuming that you understand the structure of the two databases ( or if they are identical in structure, yeah, right! ) you could simply create two connections and read data from DB2 while writing it to Oracle.