Re: [Virtuoso-users] Sparql http update request with multiple update statements

2014-04-03 Thread Eugen F
Hi, ## following omission of ";" separator between the INSERT and DELETE . WITH DELETE { ?person  'Bill' } ; INSERT { ?person  'William' } WHERE   {      ?person  'Bill'   } ; I'm no

[Virtuoso-users] Virtuoso SPARQL response limit

2014-04-03 Thread harshal patni
Hello everyone, I am trying to fetch data from Virtuoso RDF store using SPARQL. My queries are pretty simple. I am just trying to get subclass of a particular class. I seem to get back only 1 results for this query. I am sure my graph contains more than 1 subclass for the cla

Re: [Virtuoso-users] Sparql http update request with multiple update statements

2014-04-03 Thread Kingsley Idehen
On 4/3/14 10:23 AM, Eugen F wrote: Hi Hugh, I have write permissions; now that you pointed to those docs I think it's a bug. Consider a query from virtuoso docs duplicated: WITH DELETE { ?person 'Bill' } INSERT { ?person

Re: [Virtuoso-users] Sparql http update request with multiple update statements

2014-04-03 Thread Eugen F
Hi Hugh, I have write permissions; now that you pointed to those docs I think it's a bug. Consider a query from virtuoso docs duplicated: WITH DELETE { ?person 'Bill' } INSERT { ?person 'William' } WHERE   {      ?perso

Re: [Virtuoso-users] speeding up a query

2014-04-03 Thread Kingsley Idehen
On 4/3/14 7:47 AM, Bart Vandewoestyne wrote: Hello list, INITIAL REMARK: if this is not the appropriate mailing list for this question, please let me know the best place to ask questions regarding SPARQL queries and their optimization. I'm a beginner when it comes to writing SPARQL queries. I

[Virtuoso-users] speeding up a query

2014-04-03 Thread Bart Vandewoestyne
Hello list, INITIAL REMARK: if this is not the appropriate mailing list for this question, please let me know the best place to ask questions regarding SPARQL queries and their optimization. I'm a beginner when it comes to writing SPARQL queries. I am trying to speed up a certain query that I

Re: [Virtuoso-users] Sparql http update request with multiple update statements

2014-04-03 Thread Hugh Williams
Hi Eugene, You can perform multiple insert/delete commands against Virtuoso as detailed at: http://virtuoso.openlinksw.com/dataspace/doc/dav/wiki/Main/VirtTipsAndTricksGuideSPARQLSingleMultipleExecution Although note you have to execute against an endpoint with read/write access, which

[Virtuoso-users] Sparql http update request with multiple update statements

2014-04-03 Thread Eugen F
Hi, Is it possible to make a http request, to a "/sparql" endpoint, that has multiple insert/delete commands that are executed in a transaction? I tried on virtuoso 7 and I get an error (but works if commands are in separate calls). I found an older discussion here but not sure how it applies. I