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.

Namespace Prefixes

PrefixIRI
n19http://bit.ly/
dctermshttp://purl.org/dc/terms/
atomhttp://atomowl.org/ontologies/atomrdf#
foafhttp://xmlns.com/foaf/0.1/
n6http://vos.openlinksw.com/dataspace/services/wiki/
oplhttp://www.openlinksw.com/schema/attribution#
n2http://vos.openlinksw.com/dataspace/owiki/wiki/VOS/
n9http://www.w3.org/TR/rdf-sparql-protocol/
dchttp://purl.org/dc/elements/1.1/
n8http://virtuoso.openlinksw.com/tutorials/sparql/SPARQL_Tutorials_Part_9/
n16http://vos.openlinksw.com/dataspace/dav#
n21http://vos.openlinksw.com/dataspace/owiki/wiki/VOS/VirtTipsAndTricksSPARQL11Copy/
n13http://docs.openlinksw.com/virtuoso/
rdfshttp://www.w3.org/2000/01/rdf-schema#
n5http://rdfs.org/sioc/services#
siocthttp://rdfs.org/sioc/types#
n14http://vos.openlinksw.com/dataspace/person/dav#
n7http://vos.openlinksw.com/dataspace/owiki/wiki/
rdfhttp://www.w3.org/1999/02/22-rdf-syntax-ns#
n15http://vos.openlinksw.com/dataspace/owiki#
xsdhhttp://www.w3.org/2001/XMLSchema#
n17http://www.w3.org/TR/2012/PR-sparql11-update-20121108/#
n11http://vos.openlinksw.com/dataspace/person/owiki#
siochttp://rdfs.org/sioc/ns#

Statements

Subject Item
n2:VirtTipsAndTricksSPARQL11Copy
rdf:type
atom:Entry sioct:Comment
dcterms:created
2017-06-13T05:49:59.324376
dcterms:modified
2017-06-13T05:49:59.324376
rdfs:label
VirtTipsAndTricksSPARQL11Copy
foaf:maker
n11:this n14:this
dc:title
VirtTipsAndTricksSPARQL11Copy
opl:isDescribedUsing
n21:sioc.rdf
sioc:has_creator
n15:this n16:this
sioc:content
%META:TOPICPARENT{name="VirtTipsAndTricksSPARQL11FeaturesExamplesCollection"}% ---+Virtuoso SPARQL 1.1. COPY Usage Examples %TOC% ---++What? This guide contains Virtuoso SPARQL 1.1. COPY Usage examples queries which you can run against any SPARQL endpoint that supports SPARQL 1.1 and the ability to allow a verified user perform INSERT operations. ---++Why? Use as shortcut for inserting all data from an input graph into a destination graph. <b>Note</b> that the original content in the destination graph is lost by a COPY operation. ---++How? Here are some examples showcasing Virtuoso's support for this functionality: ---+++COPY Example This example copies all triples from a named graph identified by the IRI &lt;urn:sparql:tests:copy:data&gt; to a named graph identified by the IRI &lt;urn:sparql:tests:copy2:data&gt; 1 Assume the following Raw Data Representation in Turtle: <verbatim> <#book1> <#price> 41 . <#book2> <#price> 42 . </verbatim> 1 Load the sample data into &lt;urn:sparql:tests:copy:data&gt;: <verbatim> INSERT DATA { GRAPH <urn:sparql:tests:copy:data> { <#book1> <#price> 41 . <#book2> <#price> 42 . } } </verbatim> 1 Query graph &lt;urn:sparql:tests:copy:data&gt; data: <verbatim> SELECT * FROM <urn:sparql:tests:copy:data> WHERE { ?s ?p ?o } </verbatim> * [[http://bit.ly/YZlqAk][View the SPARQL Query Definition via SPARQL Protocol URL]]; * [[http://bit.ly/126rtUa][View the SPARQL Query Results via SPARQL Protocol URL]] 1 Assume the following Raw Data Representation in Turtle: <verbatim> <#book3> <#price> 43 . <#book4> <#price> 44 . </verbatim> 1 Load the sample data into &lt;urn:sparql:tests:copy2:data&gt;: <verbatim> INSERT DATA { GRAPH <urn:sparql:tests:copy2:data> { <#book3> <#price> 43 . <#book4> <#price> 44 . } } </verbatim> 1 Query graph &lt;urn:sparql:tests:copy2:data&gt; data: <verbatim> SELECT * FROM <urn:sparql:tests:copy2:data> WHERE { ?s ?p ?o } </verbatim> * [[http://bit.ly/10sxqob][View the SPARQL Query Definition via SPARQL Protocol URL]]; * [[http://bit.ly/XBiZSu][View the SPARQL Query Results via SPARQL Protocol URL]] 1 Copy all triples from &lt;urn:sparql:tests:copy:data&gt; to &lt;urn:sparql:tests:copy2:data&gt; <verbatim> COPY <urn:sparql:tests:copy:data> TO <urn:sparql:tests:copy2:data>; </verbatim> 1 Query graph &lt;urn:sparql:tests:copy2:data&gt; data: <b>Note</b> that the original content in &lt;urn:sparql:tests:copy2:data&gt; is lost by a COPY operation: <verbatim> SELECT * FROM <urn:sparql:tests:copy2:data> WHERE { ?s ?p ?o } </verbatim> * [[http://bit.ly/10sxqob][View the SPARQL Query Definition via SPARQL Protocol URL]]; * [[http://bit.ly/XBiZSu][View the SPARQL Query Results via SPARQL Protocol URL]] ---++Related * [[http://www.w3.org/TR/2012/PR-sparql11-update-20121108/#copy][SPARQL 1.1 COPY]] * [[VirtTipsAndTricksGuideRenameGraph][Rename RDF Graph Example]] * [[http://www.w3.org/TR/rdf-sparql-protocol/][SPARQL Protocol (HTTP based Query Service)]] * [[VirtTipsAndTricksGuide][Virtuoso Tips and Tricks Collection]] * [[VirtTipsAndTricksSPARQL11FeaturesExamplesCollection][Virtuoso SPARQL 1.1 Usage Examples Collection]] * [[http://virtuoso.openlinksw.com/tutorials/sparql/SPARQL_Tutorials_Part_9/SPARQL_Tutorials_Part_9.html][Virtuoso SPARQL 1.1 Syntax Tutorial]] * [[http://docs.openlinksw.com/virtuoso/rdfsparql.html][Virtuoso Documentation]]
sioc:id
aa79435cbae2d90d1e91b58104aef709
sioc:link
n2:VirtTipsAndTricksSPARQL11Copy
sioc:has_container
n7:VOS
n5:has_services
n6:item
atom:title
VirtTipsAndTricksSPARQL11Copy
sioc:links_to
n8:SPARQL_Tutorials_Part_9.html n9: n2:VirtTipsAndTricksSPARQL11FeaturesExamplesCollection n2:VirtTipsAndTricksGuide n13:rdfsparql.html n2:VirtTipsAndTricksGuideRenameGraph n17:copy n19:10sxqob n19:XBiZSu n19:YZlqAk n19:126rtUa
atom:source
n7:VOS
atom:author
n14:this
atom:published
2017-06-13T05:49:59Z
atom:updated
2017-06-13T05:49:59Z
sioc:topic
n7:VOS