How to upload RDF into same Graph IRI using Virtuoso 7.1 -
How to upload RDF into same Graph IRI using Virtuoso 7.1 -
i have 2 files. 1 aaa.nt, , 1 bbb.ttl.
i trying upload triples in 2 files 1 graph iri (http://xxx.xxx.xxx.xxx).
actually tried twice. first, failed, sec time, got it.
first way below.
in isql,
ld_dir('/home/temp','*.nt','http://xxx.xxx.xxx.xxx'); rdf_loader_run(); ld_dir('/home/temp','*.ttl','http://xxx.xxx.xxx.xxx'); rdf_loader_run(); second way below.
in isql,
delete load_list; # <-- making load_list clear... ld_dir('/home/temp','*.nt','http://xxx.xxx.xxx.xxx'); ld_dir('/home/temp','*.ttl','http://xxx.xxx.xxx.xxx'); rdf_loader_run(); anyway, succeeded sec way above, don't understand mechanism.
using first way, triples both files (aaa.nt, bbb.ttl). don't remember exactly, triples got 1 of files.
using sec way, triples in 2 files.
what if have situation add together more triples using .nt file. , upload same graph iri, http://xxx.xxx.xxx.xxx?
am doing wrong?
please allow me know how take care of it.
thank you.
both methods should work i.e. can load datasets either @ same time or separately in virtuoso quad store using rdf mass loader function . both time ...
rdf virtuoso isql
Comments
Post a Comment