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

2008-02-14 Thread Erick Antezana
Hi, is there an "intelligent" way to get the number of triples I've got in my virtuoso db? thanks, erick

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

2008-02-14 Thread Rumi Tsekova
Hi Erick, You can use: select count (*) from where {?s ?p ?o} See here for more examples: http://docs.openlinksw.com/virtuoso/rdfsparqlaggregate.html Best Regards, Rumi Hi, is there an "intelligent" way to get the number of triples I've got in my virtuoso db? thanks, erick --

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

2008-02-14 Thread Kunal Patel
Hi, If you want the total count of triples from all the graphs in your db you can also use select count(*) from db.dba. rdf_quad; Regards, Kunal Rumi Tsekova wrote: Hi Erick, You can use: select count (*) from where {?s ?p ?o} See here for more examples: http://docs.openlinksw.com/v

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

2008-02-14 Thread Erick Antezana
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... Erick Kunal Patel wrote: Hi, If you want the total count of triples from all the graphs in your db you can also use select count(*) f