Presentation is loading. Please wait.

Presentation is loading. Please wait.

1 Integrating Databases into the Semantic Web through an Ontology-based Framework Dejing Dou, Paea LePendu, Shiwoong Kim Computer and Information Science,

Similar presentations


Presentation on theme: "1 Integrating Databases into the Semantic Web through an Ontology-based Framework Dejing Dou, Paea LePendu, Shiwoong Kim Computer and Information Science,"— Presentation transcript:

1 1 Integrating Databases into the Semantic Web through an Ontology-based Framework Dejing Dou, Paea LePendu, Shiwoong Kim Computer and Information Science, University of Oregon, USA Peishen Qi Computer Science Department, Yale University, USA April, 2006 @ SWDB’06

2 2 Outline Introduction – The status of the Semantic Web – Realizing SW needs existing databases OntoGrate: An Ontology-based Information Integration Framework – Some previous work – Modules in OntoGrate Architecture Case Study for integrating Databases into SW – Without an existing domain ontology – With an existing domain ontology Conclusion and Future Work

3 3 The Semantic Web One major goal of the Semantic Web is that web-based agents can process and “understand” data [Berners-Lee etal01]. Ontologies formally describe the semantics of data and web-based agents can take SW documents (e.g. in RDF/OWL) as a set of assertions (true statements) and draw inferences from them. human SW Web-based agents

4 4 What we have now? DAML+OIL  OWL (Web ontology language) More and more domain ontologies are defined in DAML+OIL/OWL, even for some specific domains (e.g., GO) We are developing some tools, agents, services See http://www.semwebcentral.org, http://knowledgeweb.semanticweb.org/ http://www.daml.org/

5 5 Two things are important Real Data for sharing – relational databases (may be the biggest resource) – Other kinds of databases – WWW/XML data – Some knowledge bases Better Semantic Web Services/Agents

6 6 Semantic Annotation for Data? It is good for small size data resources It is not that good for large size data resources (relational databases) – “Redundant” copies – Time consuming for query answering. E.g. it currently works as loading OWL data into a knowledge base then answering queries with DL ABox reasoning. (Can it compete with existing DBMS which has well developed indexing and query optimization techniques?) It is better that relational databases can be accessed/queried directly by SW agents/services

7 7 The difficulties The Semantic WebThe Relational DBs Ontologies define the semantics of data Schemas define the structure and integrity constraints

8 8 A more general question How can we make databases, SW resources, WWW/XML data, KBs work together? The problem is similar – SW resources and KBs are defined by ontologies, which are more expressive and focus on semantics – Databases and XML documents are defined by schemas, which focus on structure – Syntax difference (e.g., OWL vs. SQL)

9 9 OntoGrate: An Ontology-based Information Integration System

10 10 Some Previous Work Schemas (e.g., stores7 DB in IBM informix),

11 11 Some Previous Work Schemas, Ontologies and Web-PDDL Relation  Type/Class Attribute  Predicate/Property Integrity Constrain  Axiom/Rule Primary Key  Fact/Instance

12 12 Some Previous Work Merging Ontologies with Bridging Axioms

13 13 Some Previous Work The Bridge Axiom/mapping on customerfname/customerlname vs. customercontactname : (forall (c - @stores7:Customer f l - @sql:varchar) (if (and (@stores7:customerfname c f) (@stores7:customerlname c l)) (@nwind:customercontactname c (@sql:concat f l))))

14 14 Some Previous Work The Bridge Axiom/mapping on customerregion vs. customerstatecode/statename/statecode : (forall (x - @nwind:Customer y - @sql:varchar) (if (@nwind:customerregion x y) (exists (z - @stores7:State t - @sql:varchar) (and (@stores7:customerstatecode x t) (@stores7:statename z y) (@stores7:statecode z t)))))

15 15 Some Previous Work Inferential Data Integration with OntoEngine – Data Translation: View data as true statements, e.g., (statecode S#28 “OR”) (M s_t ;  s ) D  t only if (M s_t ;  s ) ╞  t (M s_t ;  s ) D  t  (M s_t ;  s ) ├  t  (M s_t ;  s ) ╞  t – Query Translation: (M s_t ;  s ) Q  t only if (M s_t ;  (  t )) ╞  (  s ) (M s_t ;  s ) Q  t  (M s_t ;  (  t )) ├  (  s )  (M s_t ;  (  t )) ╞  (  s )

16 16 OntoGrate Architecture Revisited

17 17 Modules in OntoGrate Architecture The Syntax Translators (Wrappers) – e.g., PDDSQL (SQL  Web-PDDL), PDDOWL(OWL  Web-PDDL) The Matching (correspondence) Generation – e.g., name, structure (tree, graph) similarity,synonyms and is-a (part of) relationships using thesauri and dictionary, such as Wordnet The Data Mining Module The Machine Learning Module The Inference Engine (OntoEngine) The User Interface

18 18 Learning the mappings from domain experts (forall (x - @A1:Invertebrate) (if (is @A1:Insect x) (and (@A2:legs x 6) (@A2:bodySegments x 3))))

19 19 Mining the mappings from large datasets For example, two Medical databases in the same hospital: DB1 list blood pressure of patients with nominal values, such as low, normal, at risk, and high, while the other DB2 may record the exact numerical values for systolic and diastolic pressure. By association rule mining, we may get the rule/mapping like: @DB2:SystolicPressure  140  @DB2:DiastolicPressure  90  @DB2:BloodPressure = `High‘ (support = 40%, confidence = 90%)

20 20 Case Study in Two Scenarios Integrating DBs into SW without an existing domain ontology Integrating DBs into SW with an existing domain ontology

21 21 Without an existing domain ontology

22 22 Generating OWL ontologies from DB Schemas SQL schema  Web-PDDL (by using PDDSQL) Web-PDDL  OWL (by using PDDOWL) – E.g., Stores7.sql  Stores7.pddl  Stores7.owl... <rdfs:subClassOf rdf:resource=“http://www.cs.uoregon.edu/~paea/sql#Relation"/>...

23 23 An OWL-QL query based on Stores7.owl …

24 24 The corresponding Web-PDDL and SQL queries (and (customercity ?C - Customer "Eugene") (customerfname ?C - Customer ?x - String) (customerlname ?C - Customer ?y - String)) PDDSQL SELECT C.customerfname, C.customerlname FROM Customer C WHERE C.customercity = "Eugene" PDDOWL

25 25 Getting Answers from Stores7 DB {?x/Paea, ?y/LePendu} {?x/Dejing, ?y/Dou} {?x/Shiwoong, ?y/Kim} PDDOWL PDDSQL customerfnamecustomerlname PaeaLePendu DejingDou ShiwoongKim <owl-ql:answerBundle xmlns:owl-ql=" http://www.w3.org/2003/10/ owl-ql-syntax#"...> (1000 bindings/3 secs) (1000/100,000/3secs)

26 26 With an existing domain ontology Order ontology: http://www.dayf.de/2004/owl/order.owl

27 27 An OWL-QL query based on order.owl …

28 28 The Bridging Axioms/Mappings between Stores7.pddl and Order.pddl (T-> @stores7:Customer @order:Person) (forall (P - @order:Person A - @order:Address z - String) (if (and (@order:hasAddress P A) (@order:City A z)) (@stores7:customercity P z))) (forall (C - @stores7:Customer z - String) (if (@stores7:customercity P z) (exists (A - @order:Address) (and (@order:hasAddress P A) (@order:City A z)))))

29 29 The Bridging Axioms/Mappings between Stores7.pddl and Order.pddl (T-> @stores7:Customer @order:Person) (forall (C - @stores7:Customer x - String) (iff (@stores7:customerfname C x) (@order:FirstName C x))) (forall (C - @stores7:Customer y - String) (iff (@stores7:customerlname C y) (@order:LastName C y)))

30 30 The Query Translation between Stores7 and Order (and (hasAddress ?C - Person ?A - Address) (City ?A "Eugene") (FirstName ?C - Person ?x - String) (LastName ?C - Person ?y - String)) OntoEngine ( < 1 sec) (and (customercity ?C - Customer "Eugene") (customerfname ?C - Customer ?x - String) (customerlname ?C - Customer ?y - String)) PDDOWL Bridging Axioms OWL-QL query in order.owl

31 31 Final Answers in the order ontology (customerfname C1 Paea) (customerlname C2 LePendu) (customerfname C1 Dejing) … PDDOWL (10,000 facts/11 secs) PDDSQL customerfnamecustomerlname PaeaLePendu DejingDou ShiwoongKim … OntoEngine (40,000facts/30 secs) Bridging Axioms (FirstName C1 Paea) (LastName C2 LePendu) (FirstName C1 Dejing) …

32 32 Some related work Semantic Annotation – [Stojanovic etal@SAC02] maps relational model to frame logic/RDF. – DOGMA[Verheyden etal@SWDB04] translates a ontology query to SQL Schema and Ontology mapping – Similarity matching, machine learning… useful for generating candidate matchings – Semi-automatic tool (Clio) Data integration and query answering – Federated databases[Sheth&Larson 90], data warehouse, peer to peer management [Halevy etal@ICDE03], MiniCon [PottingerLevy@VLDB00] uses query rewriteing at GLV Logic and Databases – Reiter’s reconstruction of relational model in FOL. – Carnot, SIMS, Information Manifold by using a global ontology, DL or Datalog

33 33 Conclusion and Future work We applied OntoGrate, an ontology-based information integration framework, to integrate relational databases with the Semantic Web. The testing result based on two scenarios is promising. We are developing other modules (e.g., learning/mapping/UI) in OntoGrate. The scalability and efficiency need to be investigated in larger- size data resources. Extending the current work to integrate XML (with/without XML schemas or DTD) and the Semantic Web.

34 34 Thank you for your attention !


Download ppt "1 Integrating Databases into the Semantic Web through an Ontology-based Framework Dejing Dou, Paea LePendu, Shiwoong Kim Computer and Information Science,"

Similar presentations


Ads by Google