-
Notifications
You must be signed in to change notification settings - Fork 0
Integration from 2 databases
Jérôme Beau edited this page Mar 5, 2018
·
4 revisions
This sample show how data from 2 online databases can be integrated into a single meta model.
This scenario is about the automatic building of a meta-model from the structure of data found in available databases.
- Define the UUDF schema for each database
- base 1 :
<schema>
<class name="Sighting">
<field name="year"/>
<webpage url="http://rr0.org/{fieldValue}.html"/>
</field>
<field name="month">
<in-field name="year" >
</in-field>
</field>
</class>
<sighting>
</schema>
- Define the UUDF mapping from each database to the meta-model.
This "meet-in-the-middle" scenario illustrates the case where a meta model has been pre-defined by the user. This is likely to be the most common case, as it is not practicable to maintain processes on a continouously-varying meta-model. Hence, even if such a use case could have started as a "bottom-up" case, it will more likely evolve in the present meet-in-the-middle case, where we have to map to static models.
- Define the UUDF schema for the meta model
- Define the UUDF schema for each database
- Define the UUDF mapping from each database to the meta-model