user1285191
user1285191

Reputation: 49

RDF/OWL to TRIPLE store

I have created an ontology in Protege. Now for my application to have better scalability I like to convert the OWL file to triple store and query the store.

How to convert owl file to triple store?

Upvotes: 4

Views: 3566

Answers (3)

zhlsk
zhlsk

Reputation: 25

You can try OWLIM and Stardog. Both are triple store solutions for OWL ontologies.

Upvotes: 1

Antoine Zimmermann
Antoine Zimmermann

Reputation: 5485

Strictly speaking, OWL is not RDF. The specification of OWL defines ontologies as a radically different structure than sets of triples. However, all OWL ontologies can be written as RDF graphs, so you can directly store them in a triple store, without any preprocessing (note that any conformant OWL tool MUST be able to serialise ontologies in RDF/XML).

Upvotes: 4

Wang Ruiqi
Wang Ruiqi

Reputation: 804

owl is also RDF , and you can use jena to load it into TDB

Upvotes: 1

Related Questions