Attributes | Values |
---|
type
| |
Date Created
| |
Date Modified
| |
label
| - VirtTipsAndTricksSPARQL11Move
|
maker
| |
Title
| - VirtTipsAndTricksSPARQL11Move
|
isDescribedUsing
| |
has creator
| |
content
| - %META:TOPICPARENT{name="VirtTipsAndTricksSPARQL11FeaturesExamplesCollection"}%
---+Virtuoso SPARQL 1.1. Move Usage Examples
%TOC%
---++What?
This guide contains Virtuoso SPARQL 1.1. Move 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?
The MOVE operation is a shortcut for moving all data from an input graph into a destination graph.
---++How?
Here are some examples showcasing Virtuoso's support for this functionality:
---+++Move DATA Example
This example request moves all statements from the named graph identified by the IRI <urn:sparql:tests:move:data> into a named graph identified by the IRI <urn:sparql:tests:move2:data>
1 Assume the following Raw Data Representation in Turtle:
<verbatim>
<#book1> <#price> 41 .
<#book2> <#price> 42 .
<#book3> <#price> 43 .
<#book4> <#price> 44 .
</verbatim>
1 Load the sample data:
<verbatim>
INSERT DATA
{
GRAPH <urn:sparql:tests:move:data>
{
<#book1> <#price> 41 .
<#book2> <#price> 42 .
<#book3> <#price> 43 .
<#book4> <#price> 44 .
}
}
</verbatim>
1 Query graph <urn:sparql:tests:move:data> data:
<verbatim>
SELECT *
FROM <urn:sparql:tests:move:data>
WHERE
{
?s ?p ?o
}
</verbatim>
* [[http://bit.ly/10jPn8j][View the SPARQL Query Definition via SPARQL Protocol URL]];
* [[http://bit.ly/14Bg3bM][View the SPARQL Query Results via SPARQL Protocol URL]]
1 Move the data from graph <urn:sparql:tests:move:data> to graph <urn:sparql:tests:move2:data> :
<verbatim>
MOVE GRAPH <urn:sparql:tests:move:data> TO GRAPH <urn:sparql:tests:move2:data>;
</verbatim>
1 Query graph <urn:sparql:tests:move2:data> data:
<verbatim>
SELECT *
FROM <urn:sparql:tests:move2:data>
WHERE
{
?s ?p ?o
}
</verbatim>
* [[http://bit.ly/172QDDc][View the SPARQL Query Definition via SPARQL Protocol URL]];
* [[http://bit.ly/XLXAl7][View the SPARQL Query Results via SPARQL Protocol URL]]
---++Related
* [[http://www.w3.org/TR/2012/PR-sparql11-update-20121108/#move][SPARQL 1.1 MOVE DATA]]
* [[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]]
|
id
| - 12425eb0fff8b8597d08a82e5db907d3
|
link
| |
has container
| |
http://rdfs.org/si...ices#has_services
| |
atom:title
| - VirtTipsAndTricksSPARQL11Move
|
links to
| |
atom:source
| |
atom:author
| |
atom:published
| |
atom:updated
| |
topic
| |
is made
of | |
is container of
of | |
is link
of | |
is http://rdfs.org/si...vices#services_of
of | |
is creator of
of | |
is atom:entry
of | |
is atom:contains
of | |