Re: [Virtuoso-users] calling checkpoint from a procedure

2008-02-15 Thread Rob Jones
Kunal Patel wrote: Is there a way to call the checkpoint command from a procedure? You could, for example, do: create procedure proc_cp() { exec('checkpoint'); } ; proc_cp(); I'm curious to know why you would want to do this? see:

[Virtuoso-users] calling checkpoint from a procedure

2008-02-15 Thread Kunal Patel
Hi, Is there a way to call the checkpoint command from a procedure? Regards, Kunal - Never miss a thing. Make Yahoo your homepage.

Re: [Virtuoso-users] how many triples do I have?

2008-02-15 Thread Pierre De Wilde
You may also used the SPARQL statement: sparql select count(*) where {?s ?p ?o}; On Thu, Feb 14, 2008 at 9:41 PM, Erick Antezana wrote: > thank you all for your help. Actually, I wanted the total count from all > the graphs. I was only counting as Rumi suggested for each graph, then > adding...