querying ontology based database using ontoql

22
Querying Ontology Based Database Using OntoQL Stephane Jean et al. Presented by: Meher Talat Shaikh

Upload: agatha

Post on 08-Feb-2016

62 views

Category:

Documents


1 download

DESCRIPTION

Querying Ontology Based Database Using OntoQL. Stephane Jean et al. Presented by: Meher Talat Shaikh. Overview. OntoQL is a language for defining, manipulating and querying data stored in an OBDB. Objective: retrieve definition, meaning, translation and/or identifier of a given data item. - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: Querying Ontology Based Database Using OntoQL

Querying Ontology Based Database Using

OntoQLStephane Jean et al.

Presented by: Meher Talat Shaikh

Page 2: Querying Ontology Based Database Using OntoQL

OverviewOntoQL is a language for defining, manipulating and querying data

stored in an OBDB.

Objective: retrieve definition, meaning, translation and/or identifier of a given data item.

OBDB (OntoDB) data model: created and customized by users

OntoQL operators that makes up OntoAlgebra

Example queries

Page 3: Querying Ontology Based Database Using OntoQL

OBDB data modelBuilt on top of relational database model.

Both the ontology and the instances are kept in the same database.

Content part: Stores the instances

Ontology part: Stores ontology definitions

Page 4: Querying Ontology Based Database Using OntoQL

OntologyE is a set of entities representing the ontology model

OC is the set of concepts of ontologies

A is the set of attributes describing each OC

SuperEntities: associates set of super entities to an entity (E 2E1 )

TypeOf: Associates the strongest entity to each concept of ontology (OC E)

AttributeDomain, AttributeRange

Val

Page 5: Querying Ontology Based Database Using OntoQL

Ontology kernel

Page 6: Querying Ontology Based Database Using OntoQL

Ontology example

Page 7: Querying Ontology Based Database Using OntoQL

Ontology class example

Page 8: Querying Ontology Based Database Using OntoQL

ContentEXTENT is a set of extensional definitions of ontology classes

I is the set of instances of the OBDB

TypeOf : I EXTENT

SchemaProp : EXTENT 2P

Val

Page 9: Querying Ontology Based Database Using OntoQL

Content cont..

Relationship between ontology and content is defined by partial function nomination: CEXTENT

Classes without extensional definition are said to be abstract

Page 10: Querying Ontology Based Database Using OntoQL

Content example

Page 11: Querying Ontology Based Database Using OntoQL

Onto AlgebraOntoImage: returns collection of objects after applying a specific

function. OntoImage(C, IC, p)

OntoProject: allows the application of more than one function.

OntoSelect: creates a collection of objects satisfying a selection predicate.

OntoJoin: creates relationships between objects of two collections.

* : introduces polymorphism: returns the instances of the class C and all the classes subsumed by C

Page 12: Querying Ontology Based Database Using OntoQL

OntoQLExtension of SQL

DDLto create, alter and drop concepts of ontologiesto create, alter and drop attributes of these concepts of ontologies

DMLUpdate, Insert, Delete etc.

Page 13: Querying Ontology Based Database Using OntoQL

OntoQL DDL

Page 14: Querying Ontology Based Database Using OntoQL

Laboratory example

Page 15: Querying Ontology Based Database Using OntoQL

Querying OBDB

Page 16: Querying Ontology Based Database Using OntoQL

example queries

Page 17: Querying Ontology Based Database Using OntoQL

OntoQL FeaturesPath expressions. Associations may be traversed using dot notation.

Polymorphic query: * operator

Nested queries

Aggregate functions: count, avg, min max.

Quantification: Existential (ANY, SOME) and universal (ALL)

Set operators: Union, Intersection and Except

Page 18: Querying Ontology Based Database Using OntoQL

Processing of ONtoQL OntoQL query is parsed into an OntoAlgebra expression tree

path expressions and * operators removed

The expression tree is optimized

OntoAlgebra is translated to relational algebra tree.

The relational algebra tree is optimized.

The optimized relational algebra trees are translated into SQL queries.

Page 19: Querying Ontology Based Database Using OntoQL

Advantages of OntoQL

Based on SQL

Allows schema manipulation

Express queries in different languages.

Provides GROUP BY and ORDER By operators.

Page 20: Querying Ontology Based Database Using OntoQL

Shortcomings

FROM Clause is mandatory

Does not yet support multi-instantiation capability

Large sets of data are to be evaluated to study the OntoQL scalability issue.

Page 21: Querying Ontology Based Database Using OntoQL

Conclusion

OntoQL is effective in querying data, ontology and both

Based on Object oriented concepts and RDB model

conceptual model may be created and customized by users.

Page 22: Querying Ontology Based Database Using OntoQL

Thank you.