Re: [Virtuoso-users] How to SPARQL query from a rdf dataset

2014-01-20 Thread Jason Mai
Hello Hugh, That's very helpful, thank you! I also found another way by observing how this virtuoso sparql endpoint works. (http://virtuoso.openlinksw.com/sparql/) It sends another parameter *should-sponge=soft *besides the sparql query string, and so I can get the results I want. Best, Mai 201

Re: [Virtuoso-users] How to SPARQL query from a rdf dataset

2014-01-20 Thread Hugh Williams
Hi Jason, Passing a Virtuoso Sponger pragma directive in you query to force the invocation of the sponger RDF extraction services to extract data from the graph URI should work as indicated below: SQL> sparql select count(*) from where { ?s ?p ?o. }; callret

Re: [Virtuoso-users] How to SPARQL query from a rdf dataset

2014-01-20 Thread Joshua TAYLOR
I'm not much of a Virtuoso user, but I do see that there's a similar URL that might work better. What happens if you use the following (note the .owl at the end)? from On Mon, Jan 20, 2014 at 6:19 AM, Jason Mai wrote: > Dear all, > > I'd like

[Virtuoso-users] How to SPARQL query from a rdf dataset

2014-01-20 Thread Jason Mai
Dear all, I'd like to know if it's possible to do sparql query from a rdf dataset as described in http://www.w3.org/TR/rdf-sparql-query/#specDataset I tried it in open-sourced openlink virtuoso sparql endpoint with this query: select * from where { ?s ?p ?o.