我的Virtuoso RDF Store出現問題。Virtuoso SPARQL檢索已刪除的RDF文件
我上傳了一些含有天氣信息的RDF文件。這些信息在RDF文件中重複出現,因此我決定刪除它們。儘管當我進行SPARQL查詢時,仍然檢索到已刪除的RDF文件中的信息。
爲什麼會出現這種情況?這是一個查詢我提出的一個例子:
SELECT *
FROM <miOnt:move>
WHERE
{
?ws <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.contextdatacloud.org/ontology/WeatherSituation>.
?ws <http://www.contextdatacloud.org/ontology/hasWeatherTime> ?time.
?time <http://www.w3.org/2006/time#inXSDDateTime> "2015-06-16T09:00:00".
?ws <http://www.contextdatacloud.org/ontology/hasTemperature> ?temperature
}
我已經在Linux的
curl -T example01.rdf http://localhost:8890/home/myFolder/example01.rdf -u user:pass
要刪除它們使用curl命令,我只是用選項從炫技UI刪除:
在此先感謝
你怎麼上傳?你是如何刪除它們的?你正在查詢的圖表是空的嗎? –
我使用Virtuoso UI並使用curl命令來上傳它們。 「curl -T example01.rdf http:// localhost:8890/home/myfolder/example01.rdf -u user:password」 要刪除它們,我只是簡單地使用了Virtuoso UI。 我不知道圖的狀態。我在哪裏可以找到它? – Havor