[Virtuoso-users] Inserting data into an arbitrary graph with HTTP

2009-05-27 Thread Kjetil Kjernsmo
All, We need to insert a few hundred triples in a certain graph over HTTP and we are struggling to do that. The graph name we use is not dereferenceable, i.e. there is no server there, thus we have to insert into it by name only. Our preferred way to do this is using SPARUL INSERT DATA, but

Re: [Virtuoso-users] Inserting data into an arbitrary graph with HTTP

2009-05-27 Thread Frederick Giasson
Hi Kjetil, Try one of these PL functions: DB.DBA.TTLP_MT() DB.DBA.RDF_LOAD_RDFXML_MT() Take care, Fred All, We need to insert a few hundred triples in a certain graph over HTTP and we are struggling to do that. The graph name we use is not dereferenceable, i.e. there is no server

Re: [Virtuoso-users] Inserting data into an arbitrary graph with HTTP

2009-05-27 Thread Frederick Giasson
Hi Kjetil, Try one of these PL functions: DB.DBA.TTLP_MT() DB.DBA.RDF_LOAD_RDFXML_MT() Yeah, I am aware of them, but how can we use them from the SPARQL endpoint? Right, you will need an ODBC connection to send them. Otherwise I don't think you can do this via the SPARQL endpoint.

Re: [Virtuoso-users] controlling query time limits from the sparql endpoint

2009-05-27 Thread Hugh Williams
Hi Alan, Currently the only timeout that can be specified is as a parameter to a query against the SPARQL endpoint , as timeout=value for example: http://demo.openlinksw.com/sparql?default-graph-uri=http%3A%2F% 2Fdemo.openlinksw.com%2Fdataspace%2Fperson%2Fdemoshould-