1 isql 命令ttl数据导入
DB.DBA.TTLP_MT(file_to_string_output('/usr/local/share/virtuoso/data/testly2.ttl'),'','http://test2.com');
2 virtuoso导入的图数据删除
SPARQL CLEAR GRAPH <http://test2.com>;
3为操作方便,shell脚本执行
使用的时候注意,不要误删,也不要误导入数据
#!/bin/bash
isql <<END
SPARQL CLEAR GRAPH <http://test/testSparql.com>;
DB.DBA.TTLP_MT(file_to_string_output('/usr/local/share/virtuoso/data/test.ttl'),'','http://test/testSparqlNew.com');
END
4 SPARQL基本语法
5 无条件查询
select ?s ?p ?o
from <http://test.com>
where {?s ?p ?o};
6 已知某个条件
说三元组的第一个等于指定值的查询,也可以用filter过滤