<docbook><section><title>SPARQLCountStar</title><bridgehead class="http://www.w3.org/1999/xhtml:h2">RDF Data Access &amp; Management</bridgehead>
<para> </para><bridgehead class="http://www.w3.org/1999/xhtml:h3">Return Count of All Triples in Graph or Triple Store</bridgehead>
<programlisting>sparql SELECT count(*) from &lt;{{{resource}}}&gt; WHERE {?s ?p ?o}
</programlisting><para>or</para><programlisting>select count(*)
from DB.DBA.RDF_QUAD
where G = DB.DBA.RDF_MAKE_IID_OF_QNAME(&#39;{{{resource}}}&#39;);
</programlisting></section></docbook>