Hello Everyone,
I currently have a ubuntu instance on AWS EC2 and would
like to install virtuoso on that instance. I followed all the instructions
provided at
http://virtuoso.openlinksw.com/dataspace/doc/dav/wiki/Main/VOSUbuntuNotes .
According to this document I should have bee
Hi Andra,
In my virtuoso branch I do something similar but with Sesame. However, if you
want good speed over large loads
you need to turn off “log” and “auto checkpointing”
This is more JDBC level actions and I don’t know how you do it in Jena but in
sesame you can do it with utility methods li
I do something like this:
OntModel memoryModel = ...;
VirtModel model = null;
try {
model =
VirtModel.openDatabaseModel(graphURI,virtuosoURL,virtuosoUser,virtuosoPassword);
model.begin();
model.removeAll();
model.add(memoryModel);
model.commit();
} catch (Exception e) {
if (model != null) m
Hi,
I am looking into a solution to automatically load triples into our triples
store. We use jena to convert our data into triples. Our current workflow is
that we dump the triples in a file (e.g. content.ttl) after which this file is
loaded through the isql command line:
"DB.DBA.TTLP