Trying to re-use this script which used to work before, but it gives errors now:
Virtuoso 37000 Error SP030: SPARQL compiler, line 5: Undefined namespace prefix at 'dbpedia-owl' before 'dbpedia-owl:SportsTeam'
and the script itself:
select ?a ?b ?super (?aLength + ?bLength as ?length)
{
values (?a ?b) { (dbpedia-owl:Person dbpedia-owl:SportsTeam) }
{ select ?a ?super (count(?mid) as ?aLength) {
?a rdfs:subClassOf* ?mid .
?mid rdfs:subClassOf+ ?super .
}
group by ?a ?super
}
{ select ?b ?super (count(?mid) as ?bLength) {
?b rdfs:subClassOf* ?mid .
?mid rdfs:subClassOf+ ?super .
}
group by ?b ?super
}
}
order by ?length
limit 1
Any ideas how to update it?
The namespace
dbpedia-owl
is not a prefixed namespace in DBPedia.If you know the URL for the namespace, you can use
PREFIX dbpedia-owl: <NAMESPACE_URL>
before the SPARQL query. But if you're looking for DBpedia resource definitions ofPerson
andSportsTeam
, then you should be using (perhaps)dbo
instead ofdbpedia-owl
.