Re: [Virtuoso-users] How to replace a resource URI

2009-12-14 Thread Ivan Mikhailov
Hello Tim and Sebastian, BTW: Is there any chance Virtuoso could get some additional SPARQL features? I am especially interested in more named graph support in SPARUL. Then maybe something like the following would be possible: update graph ?g { newuri ?p ?o . } where { graph ?g { olduri ?p

Re: [Virtuoso-users] How to replace a resource URI

2009-12-14 Thread Sebastian Trueg
Ivan Mikhailov wrote: Hello Tim and Sebastian, BTW: Is there any chance Virtuoso could get some additional SPARQL features? I am especially interested in more named graph support in SPARUL. Then maybe something like the following would be possible: update graph ?g { newuri ?p ?o . } where

[Virtuoso-users] Querying the currently used indexes

2009-12-14 Thread Sebastian Trueg
Hi, currently I am using the following query to determine the indexes that are in use: SELECT DISTINCT SUBSTRING(ISS_KEY_NAME,10,4) FROM SYS_INDEX_SPACE_STATS WHERE ISS_KEY_TABLE='DB.DBA.RDF_QUAD' AND

Re: [Virtuoso-users] Querying the currently used indexes

2009-12-14 Thread Patrick van Kleef
HI Sebastian, currently I am using the following query to determine the indexes that are in use: SELECT DISTINCT SUBSTRING(ISS_KEY_NAME,10,4) FROM SYS_INDEX_SPACE_STATS WHERE ISS_KEY_TABLE='DB.DBA.RDF_QUAD' AND

[Virtuoso-users] Question regarding a stored procedure

2009-12-14 Thread Sebastian Trueg
Me again. :P The Virtuoso team provided my with a script to dump all graphs. Thanks a lot for that, guys. Now I have a question about an extension I would like to do on the script. I would like to exclude graphs of a certain type by using a sparql ask query. I did the following which does not

Re: [Virtuoso-users] Question regarding a stored procedure

2009-12-14 Thread Mitko Iliev
Hi Sebastian, It could be written in following way : if (exists (sparql define input:storage ask where { ?:g http://www.strigi.org/fields#indexGraphFor ?r . })) { .. } else { .. } Best Regards, Mitko On Dec 14, 2009, at 3:05 PM, Sebastian Trueg wrote: -- THIS IS

Re: [Virtuoso-users] Question regarding a stored procedure

2009-12-14 Thread Magnus Haraldsen Amundsen
Could you share the script that dumps one or more graphs to file? Could use that for our customer to export all data and modify it in a 3rd party tool such as Protege. -Magnus -Opprinnelig melding- Fra: Sebastian Trueg [mailto:tr...@kde.org] Sendt: ma 14.12.2009 14:05 Til: Virtuoso