Vishnudev K
Vishnudev K

Reputation: 2934

How to export database to OWL file in Stardog?

http://stardog.com/docs/using/#export shows help for exporting a db into "ttl" file.
I wanted to export the database into some common formats like "rdf" or "owl".

How to export to OWL format or RDF format?

Upvotes: 1

Views: 801

Answers (1)

loopasam
loopasam

Reputation: 3146

The following command should do the job (export in RDF/XML, classical RDF):

$ stardog export -c myDatabase --format RDFXML myDatabase_output.rdf

Upvotes: 4

Related Questions