This HTML5 document contains 31 embedded RDF statements represented using HTML+Microdata notation.

The embedded RDF content will be recognized by any processor of HTML5 Microdata.

PrefixNamespace IRI
dctermshttp://purl.org/dc/terms/
atomhttp://atomowl.org/ontologies/atomrdf#
foafhttp://xmlns.com/foaf/0.1/
n7http://vos.openlinksw.com/dataspace/services/wiki/
oplhttp://www.openlinksw.com/schema/attribution#
n2http://vos.openlinksw.com/dataspace/owiki/wiki/VOS/
n13http://vos.openlinksw.com/dataspace/owiki/wiki/VOS/VirtBulkRDFLoaderExampleMultiple/sioc.
dchttp://purl.org/dc/elements/1.1/
n19http://docs.openlinksw.com/virtuoso/databaseadmsrv.html#
n14http://vos.openlinksw.com/dataspace/dav#
rdfshttp://www.w3.org/2000/01/rdf-schema#
n8http://rdfs.org/sioc/services#
siocthttp://rdfs.org/sioc/types#
n10http://vos.openlinksw.com/dataspace/person/dav#
n4http://vos.openlinksw.com/dataspace/owiki/wiki/
rdfhttp://www.w3.org/1999/02/22-rdf-syntax-ns#
n20http://kidehendata.
n6http://vos.openlinksw.com/dataspace/owiki#
xsdhhttp://www.w3.org/2001/XMLSchema#
n16http://vos.openlinksw.com/dataspace/person/owiki#
siochttp://rdfs.org/sioc/ns#
Subject Item
n10:this
foaf:made
n2:VirtBulkRDFLoaderExampleMultiple
Subject Item
n14:this
sioc:creator_of
n2:VirtBulkRDFLoaderExampleMultiple
Subject Item
n7:item
n8:services_of
n2:VirtBulkRDFLoaderExampleMultiple
Subject Item
n6:this
sioc:creator_of
n2:VirtBulkRDFLoaderExampleMultiple
Subject Item
n4:VOS
sioc:container_of
n2:VirtBulkRDFLoaderExampleMultiple
atom:entry
n2:VirtBulkRDFLoaderExampleMultiple
atom:contains
n2:VirtBulkRDFLoaderExampleMultiple
Subject Item
n2:VirtBulkRDFLoaderExampleMultiple
rdf:type
atom:Entry sioct:Comment
dcterms:created
2017-06-13T05:39:12.278814
dcterms:modified
2017-06-29T07:36:00.510717
rdfs:label
VirtBulkRDFLoaderExampleMultiple
foaf:maker
n10:this n16:this
dc:title
VirtBulkRDFLoaderExampleMultiple
opl:isDescribedUsing
n13:rdf
sioc:has_creator
n14:this n6:this
sioc:content
%META:TOPICPARENT{name="VirtBulkRDFLoader"}% ---++Example for Multiple RDF Source Files Upload The following example demonstrates how to upload multiple RDF source files using the Bulk Loading Sequence. 1 Assuming there is a folder with name "tmp" in your FS and it is under a directory specified in the <b><code>[[http://docs.openlinksw.com/virtuoso/databaseadmsrv.html#fp_acliniallowed][DirsAllowed]]</code></b> param defined in your virtuoso ini file. 1 Also assume in the folder "tmp" you have the files: "file1.n3" and "file2.n3", that contain: <verbatim> -- file1.n3 <http://www.openlinksw.com/dataspace/kidehen@openlinksw.com#this> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://rdfs.org/sioc/ns#User> . <http://www.openlinksw.com/dataspace/kidehen@openlinksw.com#this> <http://rdfs.org/sioc/ns#name> "Kingsley Uyi Idehen" . <http://www.openlinksw.com/dataspace/kidehen@openlinksw.com#this> <http://rdfs.org/sioc/ns#has_function> <http://www.openlinksw.com/dataspace/kidehen@openlinksw.com/briefcase/My%20Web%20Drive#owner> . --file2.n3 <http://www.openlinksw.com/dataspace/kidehen@openlinksw.com#this> <http://rdfs.org/sioc/ns#id> "kidehen@openlinksw.com" . <http://www.openlinksw.com/dataspace/kidehen@openlinksw.com#this> <http://rdfs.org/sioc/ns#link> <http://www.openlinksw.com/dataspace/kidehen@openlinksw.com> . <http://www.openlinksw.com/dataspace/kidehen@openlinksw.com#this> <http://rdfs.org/sioc/ns#account_of> <http://www.openlinksw.com/dataspace/person/kidehen@openlinksw.com#this> . </verbatim> 1 Make sure the [[VirtBulkRDFLoaderScript][Bulk Loading script]] is executed. 1 Register the files file1.n3 and file2.n3 with graph IRI the triples to go to "http://kidehendata.com#": <verbatim> SQL>ld_dir ('tmp', '*.n3', 'http://kidehendata.com#'); Done. -- 90 msec. </verbatim> 1 Note that if there are other *.n3 files in your folder (tmp), then their content also will go to the location specified by the above graph. 1. Also is recommended files with *. ext.graph to be deleted from the tmp folder. 1 Create in the "tmp" folder an empty file with name: <b>global.graph</b> 1 Edit the <b>global.graph</b> by adding the graph URI, so the content of the file to be: <verbatim> http://kidehendata.com# </verbatim> 1 Finally execute: <verbatim> SQL>rdf_loader_run (); Done. -- 100 msec. </verbatim> 1 As result in the Virtuoso log should be notification of the loading having completed: <verbatim> 10:21:50 PL LOG: Loader started 10:21:50 PL LOG: No more files to load. Loader has finished </verbatim> 1 To check the inserted triples for the given graph, execute: <verbatim> SQL>SPARQL SELECT * FROM <http://kidehendata.com#> WHERE { ?s ?p ?o } ; s p o VARCHAR VARCHAR VARCHAR _______________________________________________________________________________ http://www.openlinksw.com/dataspace/kidehen@openlinksw.com#this http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://rdfs.org/sioc/ns#User http://www.openlinksw.com/dataspace/kidehen@openlinksw.com#this http://rdfs.org/sioc/ns#name Kingsley Uyi Idehen http://www.openlinksw.com/dataspace/kidehen@openlinksw.com#this http://rdfs.org/sioc/ns#has_function http://www.openlinksw.com/dataspace/kidehen@openlinksw.com/briefcase/My%20Web%20Drive#owner http://www.openlinksw.com/dataspace/kidehen@openlinksw.com#this http://rdfs.org/sioc/ns#id kidehen@openlinksw.com http://www.openlinksw.com/dataspace/kidehen@openlinksw.com#this http://rdfs.org/sioc/ns#link http://www.openlinksw.com/dataspace/kidehen@openlinksw.com http://www.openlinksw.com/dataspace/kidehen@openlinksw.com#this http://rdfs.org/sioc/ns#account_of http://www.openlinksw.com/dataspace/person/kidehen@openlinksw.com#this 6 Rows. -- 20 msec. </verbatim>
sioc:id
f758a34aa090f6d699e041ed17a7f61a
sioc:link
n2:VirtBulkRDFLoaderExampleMultiple
sioc:has_container
n4:VOS
n8:has_services
n7:item
atom:title
VirtBulkRDFLoaderExampleMultiple
sioc:links_to
n19:fp_acliniallowed n20:com
atom:source
n4:VOS
atom:author
n10:this
atom:published
2017-06-13T05:39:12Z
atom:updated
2017-06-29T07:36:00Z
sioc:topic
n4:VOS