How can I select random sample from DBpedia using the sparql endpoint?
This query
SELECT ?s WHERE { ?s ?p ?o . FILTER ( 1 > bif:rnd (10, ?s, ?p, ?o) ) } LIMIT 10
(found here) seems to work ok on most SPARQL endpoints, but on http://dbpedia.org/sparql it gets cached (so it returns always the same 10 nodes).
If i try from JENA, I get the following exception:
Unresolved prefixed name: bif:rnd
And I can't find the what the 'bif' namespace is.
Any idea on how to solve this?
Mulone