Not logged in : Login

About: VirtSPARUL     Goto   Sponge   NotDistinct   Permalink

An Entity of Type : atom:Entry, within Data Space : ods.openlinksw.com associated with source document(s)

AttributesValues
type
Date Created
Date Modified
label
  • VirtSPARUL
maker
Title
  • VirtSPARUL
isDescribedUsing
has creator
content
  • %VOSWARNING% %META:TOPICPARENT{name="VOSSPARQL"}% ---++SPARUL SPARUL is an Update Language For RDF Graphs. Since version 5.0, Virtuoso has supported the [[http://jena.hpl.hp.com/~afs/SPARQL-Update.html][SPARQL/Update]] (SPARUL) extension of SPARQL. This is sufficient for most routine data manipulation operations. If <nowiki>SPARQL_UPDATE</nowiki> role is granted to SPARQL user, then data manipulation statements may be executed via the SPARQL Web service endpoint; if <nowiki>SPARQL_UPDATE</nowiki> role is not granted, users are limited to data querying statements. ---+++ Related Functions Two functions allow the user to alter RDF storage by inserting or deleting all triples listed in some vector. Both functions receive an IRI of a graph that should be altered and a vector of triples that should be added or removed. The graph IRI can be either IRI ID or a string. The return values of these functions are not defined and should not be used by applications. <verbatim> create function DB.DBA.RDF_INSERT_TRIPLES (in graph_iri any, in triples any); create function DB.DBA.RDF_DELETE_TRIPLES (in graph_iri any, in triples any); </verbatim> Simple operations may be faster if written as low-level SQL code instead of using SPARUL. For instance, the use of SPARQL DELETE is redundant when the application can delete from <nowiki>RDF_QUAD</nowiki> by using simple filters like: <verbatim> delete from DB.DBA.RDF_QUAD where G = DB.DBA.RDF_MAKE_IID_OF_QNAME ( 'http://local.virt/DAV/sparql_demo/data/data-xml/source-simple2/source-data-01.rdf' ); </verbatim> On the other hand, simple filters do not work when search criteria refer to triples that are affected by the modification. Consider a function that deletes all triples whose subjects are nodes of type 'http://xmlns.com/foaf/0.1/Person'. Type information is stored in triples that will be deleted, so the simplest function is something like this: <verbatim> create procedure DELETE_PERSONAL_DATA (in foaf_graph varchar) { declare pdata_dict, pdata_array any; -- Step 1: select everything that should be deleted pdata_dict := (( sparql construct { ?s ?p ?o } where { graph ?:foaf_graph { ?s ?p ?o . ?s rdf:type <http://xmlns.com/foaf/0.1/Person> } } )); -- Step 2: delete all found triples pdata_array := dict_list_keys (pdata_dict, 1); RDF_DELETE_TRIPLES (foaf_graph, pdata_array); }; DELETE_PERSONAL_DATA ( 'http://local.virt/DAV/sparql_demo/data/data-xml/source-simple2/source-data-01.rdf' ); </verbatim> Since Virtuoso 5.0, applications may use SPARUL to do the same in a more convenient way: <verbatim> create procedure DELETE_PERSONAL_DATA (in foaf_graph varchar) { sparql delete { ?s ?p ?o } where { graph ?:foaf_graph { ?s ?p ?o . ?s rdf:type <http://xmlns.com/foaf/0.1/Person> } } }; </verbatim> ---++Virtuoso's SPARUL Implementation ---+++References #SparqlSpecs ---++++Specs * [[http://jena.hpl.hp.com/~afs/SPARQL-Update.html][SPARQL/UPDATE]] * [[http://www.w3.org/TR/rdf-sparql-query/][SPARQL Query Language for RDF]] * [[http://www.w3.org/TR/2005/WD-rdf-sparql-XMLres-20050527/][SPARQL Query Results XML Format]] * [[http://www.w3.org/TR/rdf-sparql-protocol/][SPARQL Protocol for RDF]] #SparqlFaqs ---++++FAQs #SparqlPresentations ---++++Presentations #SparqlTutorials ---++++Tutorials CategoryGlossary CategorySPARQL CategoryRDF CategoryVOS CategoryDocumentation
id
  • 4c7b918507cd463c7d86da92f0a30b70
link
has container
http://rdfs.org/si...ices#has_services
atom:title
  • VirtSPARUL
links to
atom:source
atom:author
atom:published
  • 2017-06-13T05:42:16Z
atom:updated
  • 2017-06-13T05:42:16Z
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
Faceted Search & Find service v1.17_git132 as of May 12 2023


Alternative Linked Data Documents: iSPARQL | ODE     Content Formats:   [cxml] [csv]     RDF   [text] [turtle] [ld+json] [rdf+json] [rdf+xml]     ODATA   [atom+xml] [odata+json]     Microdata   [microdata+json] [html]    About   
This material is Open Knowledge   W3C Semantic Web Technology [RDF Data] Valid XHTML + RDFa
OpenLink Virtuoso version 07.20.3238 as of May 23 2023, on Linux (x86_64-generic-linux-glibc25), Single-Server Edition (15 GB total memory, 3 GB memory in use)
Data on this page belongs to its respective rights holders.
Virtuoso Faceted Browser Copyright © 2009-2024 OpenLink Software