ok, Thanks ! regards, Camila
On Thu, Aug 26, 2010 at 12:26 PM, Tim Haynes <[email protected]>wrote: > On 26/08/2010 16:08, Camila Dias wrote: > > Hello , > > > > How can i see how many triples per day i have? > > Hi, > > It rather depends what you mean. > > I expect the key query is > > select count(*) from rdf_quad; > > and then it's up to you how you'd like it presented: > > a) use the scheduler to make things happen regularly: > http://docs.openlinksw.com/virtuoso/dbadmin.html#eventscheduler > > b) you can store queries or their output in WebDAV, to be re-executed > regularly: > http://docs.openlinksw.com/virtuoso/admui.xmlservices.html#sqlxmlstmts > > c) you can create an entire RSS feed as a big SQL/X statement using > functions like XMLAGG() and XMLELEMENT() etc if you want: > http://docs.openlinksw.com/virtuoso/functions.html#xml > > d) you can write a stored procedure that adds a row to a log table, > optionally calculating the difference between yesterday and today's > figures, and invoke it via scheduler > > e) all of the above. > > HTH, > > ~Tim > -- > Tim Haynes > Product Development Consultant > OpenLink Software > <http://www.openlinksw.com/> > <http://twitter.com/openlink> >
