Reputation: 733
I'm looking for design suggestions on a specific requirements for a customer. The requirement is to fetch the required data from an external Data Ware house system and generate reports based on it.
My System is build in Java and the external DW system cannot provide any Web service for us and hence we came up with an idea and asked for Stored procedure from DW system. Here is how I thought of this design.
Now my concerns are :
Appreciate your thoughts and help on this.
Upvotes: 1
Views: 138
Reputation: 1828
If the data ware house system is also using an Oracle database you can link it to your Java system database and query it with simple SQL queries this will make your architecture easier.
Upvotes: 1