开发者

Storing linkages between tables

开发者 https://www.devze.com 2023-03-01 03:10 出处:网络
I\'m building an app that works on two databases -- own_db and external_db. own_db has tables entities and attributes开发者_如何学编程 for all tables and columns in external_db respectively.

I'm building an app that works on two databases -- own_db and external_db.

own_db has tables entities and attributes开发者_如何学编程 for all tables and columns in external_db respectively.

external_db has tables which are linked to each other for example employee can have a department etc. This linkage can be through a third table called *external_db.link_employee_department*.

Now own_db needs to preserve this linkage information for later use.

How do I storing this information? I guess there can be n number of linkage tables in between.

Ideas?


This sounds like a data integration / application integration requirement. You could consider using an integration / middleware platform. These usually have repositories that can manage exactly this kind of source to target mapping with lineage tracking, impact analysis, versioning, etc. Some examples are: Oracle Fusion, IBM InfoSphere, Informatica, Ab Initio.

0

精彩评论

暂无评论...
验证码 换一张
取 消