After downloading dcatap.rdf from https://dumps.wikimedia.org/wikidatawiki/entities/ I tried to load it into RDF store and I get this:
java.util.concurrent.ExecutionException: org.openrdf.rio.RDFParseException: The prefix "xmlns" cannot be bound to any namespace explicitly; neither can the namespace for "xmlns" be bound to any prefix explicitly. [line 2, column 289]
Comparing it with old file that loaded fine, I see that the old file had:
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcat="http://www.w3.org/ns/dcat#" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:adms="http://www.w3.org/ns/adms#" xmlns:vcard="http://www.w3.org/2006/vcard/ns#"> <rdf:Description rdf:nodeID="_n42">
while the new one has:
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcat="http://www.w3.org/ns/dcat#" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:adms="http://www.w3.org/ns/adms#" xmlns:vcard="http://www.w3.org/2006/vcard/ns#" xmlns:xmlns=""> <rdf:Description rdf:nodeID="_n42" xmlns:rdf="">
Not sure what the extra empty parameters are supposed to do but doesn't look like they work properly.