I am new to ontology. After some study, I still do not know what is ontology advantage in application. I already know ontology can provide more meaningful querying interface than database, and ontology can use reasoner to find hidden info to get better result. But. With building a bool table in database to represent new concept for each instance, or simple if-else rule engine. We can get same result as ontology with better performance. So, what is the most important reason of using ontology in application exactly?
What are ontology can do, but relational database can not?
Please refer to Databases vs Ontologies by Ian Horrocks
In short:
- Databases has closed world assumption, ontologies has open world assumption
- In databases each individual has a single unique name, but in ontologies individuals might have more than one name
- You can infer implicit information from ontologies, in databases you can't.
- The schema in an ontology is large and complex but databases have simple and smaller schema. In other words, The focus on formal semantics is much stronger in ontologies than in databases. Because the aim of ontologies is to represent meaning rather than data. Please refer to Ontologies and DB Schema: What's the Difference by Mike Uschold
Thanks, answer 1-3 are quite clear. And the phenomenon about answer 4 confused me a lot. As my understanding. Answer 4 means that once we need lots schema, we can not use DB to manage data in good performance. Am I right? –
Etienne
© 2022 - 2024 — McMap. All rights reserved.