Hello,
I have a requirement to fetch data from a database and store into another database. More explanation goes as follows:
I have a web application deployed on an application server. The JDBC connection fetches data from a oracle database. Now I have a need to fetch data from a remote database
(that is not the database of my application) and store some data into my current application's database.
The data should be fetched periodically and a scheduler needs to be designed so that every 1 hour data is fetched and the current database is updated.
From my own research, I found some info in this link:
http://www.devx.com/Java/Article/29873/
Also, refer to the attachment for the source code for the above link.
Please let me know how I can design and implement such a solution.
Thanks,
Ashok.