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

2009-12-14 Thread Magnus Haraldsen Amundsen
Users Emne: [Virtuoso-users] Question regarding a stored procedure 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

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 ?r . })) { .. } else { .. } Best Regards, Mitko On Dec 14, 2009, at 3:05 PM, Sebastian Trueg wrote: > -- THIS

[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 work