I am running the following query to give me a list of triples which exist
in one graph but do not exist in another:
SELECT ?s ?p ?o
WHERE {
GRAPH ?from {
?s rdf:type skos:Concept .
?s ?p ?o .
}
MINUS {
GRAPH ?to {
?s ?p ?o .
}
}
}
This works as expected when run via the Conductor SPARQL interface (with
?from and ?to bound correctly) and also works via Jena operating against an
in-memory TDB datastore. But when run via Jena against Virtuoso I get no
results at all.
Any clue as to what is going wrong here?
Thanks
Chris
------------------------------------------------------------------------------
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the
conversation now. http://goparallel.sourceforge.net/
_______________________________________________
Virtuoso-users mailing list
Virtuoso-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/virtuoso-users