This HTML5 document contains 33 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/
n14http://vos.openlinksw.com/dataspace/services/wiki/
oplhttp://www.openlinksw.com/schema/attribution#
n2http://vos.openlinksw.com/dataspace/owiki/wiki/VOS/
dchttp://purl.org/dc/elements/1.1/
n21http://www.w3.org/People/Berners-Lee/card#
n4http://vos.openlinksw.com/dataspace/dav#
rdfshttp://www.w3.org/2000/01/rdf-schema#
n6http://docs.openlinksw.com/virtuoso/rdfinsertmethods.
n13http://rdfs.org/sioc/services#
siocthttp://rdfs.org/sioc/types#
n12http://vos.openlinksw.com/dataspace/person/dav#
n10http://vos.openlinksw.com/dataspace/owiki/wiki/
rdfhttp://www.w3.org/1999/02/22-rdf-syntax-ns#
n17http://vos.openlinksw.com/dataspace/owiki#
n7http://localhost:8890/DAV/
n9http://vos.openlinksw.com/dataspace/owiki/wiki/VOS/VirtTipsAndTricksGuideLOADCommandRDF/sioc.
xsdhhttp://www.w3.org/2001/XMLSchema#
n22http://vos.openlinksw.com/dataspace/%28NULL%29/wiki/VOS/
n19http://vos.openlinksw.com/dataspace/person/owiki#
siochttp://rdfs.org/sioc/ns#
Subject Item
n12:this
foaf:made
n2:VirtTipsAndTricksGuideLOADCommandRDF
Subject Item
n4:this
sioc:creator_of
n2:VirtTipsAndTricksGuideLOADCommandRDF
Subject Item
n14:item
n13:services_of
n2:VirtTipsAndTricksGuideLOADCommandRDF
Subject Item
n17:this
sioc:creator_of
n2:VirtTipsAndTricksGuideLOADCommandRDF
Subject Item
n10:VOS
sioc:container_of
n2:VirtTipsAndTricksGuideLOADCommandRDF
atom:entry
n2:VirtTipsAndTricksGuideLOADCommandRDF
atom:contains
n2:VirtTipsAndTricksGuideLOADCommandRDF
Subject Item
n2:VirtTipsAndTricksGuideLOADCommandRDF
rdf:type
atom:Entry sioct:Comment
dcterms:created
2017-06-13T05:38:14.058007
dcterms:modified
2017-06-13T05:38:14.058007
rdfs:label
VirtTipsAndTricksGuideLOADCommandRDF
foaf:maker
n12:this n19:this
dc:title
VirtTipsAndTricksGuideLOADCommandRDF
opl:isDescribedUsing
n9:rdf
sioc:has_creator
n4:this n17:this
sioc:content
%META:TOPICPARENT{name="VirtTipsAndTricksGuide"}% ---+ How can I use the LOAD command to import RDF data? SPARQL INSERT can be done using the LOAD command: <verbatim> SPARQL INSERT INTO <..> { .... } [[FROM ...] { ... }] SPARQL LOAD <x> [INTO <y>] -- <ResourceURL> will be the Graph IRI of the loaded data: SPARQL LOAD <ResourceURL> </verbatim> ---++Examples ---+++Load from Resource URL In order to load data from resource URL for ex: http://www.w3.org/People/Berners-Lee/card#i , execute the following command with isql: <verbatim> SQL> SPARQL LOAD <http://www.w3.org/People/Berners-Lee/card#i>; callret-0 VARCHAR _______________________________________________________________________________ Load <http://www.w3.org/People/Berners-Lee/card#i> into graph <http://www.w3.org/People/Berners-Lee/card#i> -- done 1 Rows. -- 703 msec. SQL> </verbatim> ---+++Load from file 1 Create DAV collection which is visible to the public, for ex: http://localhost:8890/DAV/tmp 1 Upload to the DAV collection a file, for example with name listall.rq and with the following content: <verbatim> SPARQL PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX sioc: <http://rdfs.org/sioc/ns#> SELECT ?x ?p ?o FROM <http://mygraph.com> WHERE { ?x rdf:type sioc:User . ?x ?p ?o. ?x sioc:id ?id . FILTER REGEX(str(?id), "^King") } ORDER BY ?x </verbatim> 1 Execute the following command from isql: <verbatim> SQL>SPARQL LOAD bif:concat ("http://", bif:registry_get("URIQADefaultHost"), "/DAV/tmp/listall.rq") into graph <http://myNewGraph.com>; callret-0 VARCHAR _______________________________________________________________________________ Load <http://localhost:8890/DAV/tmp/listall.rq> into graph <http://myNewGraph.com> -- done 1 Rows. -- 321 msec. </verbatim> ---+++Directly LOAD triples using iSQL Triples can be directly loaded into Virtuoso specifying the literal values to inserted, by executing a command of the following form from isql: <verbatim> SQL>SPARQL INSERT INTO graph <http://mygraph.com> { <http://myopenlink.net/dataspace/Kingsley#this> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://rdfs.org/sioc/ns#User> . <http://myopenlink.net/dataspace/Kingsley#this> <http://rdfs.org/sioc/ns#id> <Kingsley> . <http://myopenlink.net/dataspace/Caroline#this> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://rdfs.org/sioc/ns#User> . <http://myopenlink.net/dataspace/Caroline#this> <http://rdfs.org/sioc/ns#id> <Caroline> . }; </verbatim> ---++Related * [[VirtTipsAndTricksGuide][Virtuoso Tips and Tricks Collection]] * [[http://docs.openlinksw.com/virtuoso/rdfinsertmethods.html][RDF Insert Methods in Virtuoso]]
sioc:id
5726134927731679a2a45f10ce7db854
sioc:link
n2:VirtTipsAndTricksGuideLOADCommandRDF
sioc:has_container
n10:VOS
n13:has_services
n14:item
atom:title
VirtTipsAndTricksGuideLOADCommandRDF
sioc:links_to
n6:html n7:tmp n21:i n22:VirtTipsAndTricksGuide
atom:source
n10:VOS
atom:author
n12:this
atom:published
2017-06-13T05:38:14Z
atom:updated
2017-06-13T05:38:14Z
sioc:topic
n10:VOS