You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Old

This page contains information from older versions of VIVO

 

This query returns the number of Agents Persons; foaf:Organization without a label (#38 as of 3/7/11)

Select count(?s)

Where {

?s rdf:type foaf:Agent .

Optional {?s rdfs:label ?l} .

Filter (!bound (?l))

}

This query returns the number of UF Persons with a ufid and without a label (#0 as of 3/7/11)

Select count(?s)

Where {

?s rdf:type foaf:Person .

?s ufVivo:ufid ?u .

Optional {?s rdfs:label ?l} .

Filter (!bound (?l))

}

This query returns the number of UF Organizations with a deptID and without a label (#37 as of 3/7/11)

Select count(?s)

Where {

?s rdf:type foaf:Organization .

Optional {?s rdfs:label ?l} .

?s ufVivo:deptID ?d

Filter (!bound (?l))

}

This query returns the number of grants harvested from the DSR that do not have a label (#0 as of 3/7/11)

SELECT count(?s)

WHERE {

?s rdf:type core:Grant .

?s ufVivo:harvestedBy "DSR-Harvester" .

Optional {?s rdfs:label ?l} .

Filter (!bound (?l))

}

This query returns the number of Positions that do not have a label (#2339 as of 3/7/11)

SELECT count(?s)

WHERE {

?s rdf:type core:DependentResource .

Optional {?s rdfs:label ?l} .

Filter (!bound (?l))

}

This query returns the number of Publications that do not have a label (#0 as of 3/7/11)

SELECT count(?s)

WHERE {

?s rdf:type core:InformationResource .

Optional {?s rdfs:label ?l} .

Filter (!bound (?l))

}

  • No labels