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

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

PrefixNamespace IRI
n5http://ods.openlinksw.com/dataspace/person/dav#
dctermshttp://purl.org/dc/terms/
n9http://ods.openlinksw.com/dataspace/owiki/wiki/
atomhttp://atomowl.org/ontologies/atomrdf#
foafhttp://xmlns.com/foaf/0.1/
oplhttp://www.openlinksw.com/schema/attribution#
n4http://ods.openlinksw.com/dataspace/owiki#
dchttp://purl.org/dc/elements/1.1/
rdfshttp://www.w3.org/2000/01/rdf-schema#
n2http://ods.openlinksw.com/dataspace/owiki/wiki/ODS/
siocthttp://rdfs.org/sioc/types#
n14http://ods.openlinksw.com/dataspace/person/owiki#
rdfhttp://www.w3.org/1999/02/22-rdf-syntax-ns#
n12http://ods.openlinksw.com/dataspace/owiki/wiki/ODS/VirtTipsAndTricksIsPropertyOfSyntaxInTurtleConductor/sioc.
xsdhhttp://www.w3.org/2001/XMLSchema#
n8http://ods.openlinksw.com/dataspace/dav#
siochttp://rdfs.org/sioc/ns#
Subject Item
n5:this
foaf:made
n2:VirtTipsAndTricksIsPropertyOfSyntaxInTurtleConductor
Subject Item
n4:this
sioc:creator_of
n2:VirtTipsAndTricksIsPropertyOfSyntaxInTurtleConductor
Subject Item
n9:ODS
sioc:container_of
n2:VirtTipsAndTricksIsPropertyOfSyntaxInTurtleConductor
atom:entry
n2:VirtTipsAndTricksIsPropertyOfSyntaxInTurtleConductor
atom:contains
n2:VirtTipsAndTricksIsPropertyOfSyntaxInTurtleConductor
Subject Item
n2:VirtTipsAndTricksIsPropertyOfSyntaxInTurtleConductor
rdf:type
atom:Entry sioct:Comment
dcterms:created
2017-06-13T06:08:29.033262
dcterms:modified
2018-04-05T18:03:16.055779
rdfs:label
VirtTipsAndTricksIsPropertyOfSyntaxInTurtleConductor
foaf:maker
n5:this n14:this
dc:title
VirtTipsAndTricksIsPropertyOfSyntaxInTurtleConductor
opl:isDescribedUsing
n12:rdf
sioc:has_creator
n4:this n8:this
sioc:content
%META:TOPICPARENT{name="VirtTipsAndTricksIsPropertyOfSyntaxInTurtle"}% ---+ Load Turtle Example Resource using Conductor "Quad Store Upload" %TOC% The following example demonstrates how to load triples from a remote Turtle resource into the Virtuoso Quad Store, using the Conductor. ---++ Prerequisites The following packages should be installed: 1 [[https://virtuoso.openlinksw.com/download/][conductor_dav.vad]] package. 1 [[https://virtuoso.openlinksw.com/download/][cartridges_dav.vad]] package. ---++ Steps 1 Assume the following [[https://s3.amazonaws.com/webid-sandbox/Enhanced-Turtle-Example.ttl][https://s3.amazonaws.com/webid-sandbox/Enhanced-Turtle-Example.ttl]] public turtle resource. 1 Go to http://host:port/conductor and enter dba credentials: %BR%%BR%<a href="%ATTACHURLPATH%/cond1.png" target="_blank"><img src="%ATTACHURLPATH%/cond1.png" width="600px" /></a>%BR%%BR% 1 Drill down to <b>Linked Data</b> -> <b>Quad Store Upload</b>: %BR%%BR%<a href="%ATTACHURLPATH%/cond2.png" target="_blank"><img src="%ATTACHURLPATH%/cond2.png" width="600px" /></a>%BR%%BR% 1 Specify for resource URL the one from above (i.e., <code><nowiki>https://s3.amazonaws.com/webid-sandbox/Enhanced-Turtle-Example.ttl</nowiki></code>) and enter for "Named Graph IRI": <verbatim> http://mytest.com </verbatim> %BR%%BR%<a href="%ATTACHURLPATH%/cond3.png" target="_blank"><img src="%ATTACHURLPATH%/cond3.png" width="600px" /></a>%BR%%BR% 1 Click <b>Upload</b>. 1 The upload should be finished: %BR%%BR%<a href="%ATTACHURLPATH%/cond4.png" target="_blank"><img src="%ATTACHURLPATH%/cond4.png" width="600px" /></a>%BR%%BR% 1 View the inserted triples by executing the following statements: <verbatim> SQL> set blobs on; SQL> SPARQL DEFINE output:format "TTL" CONSTRUCT { ?s ?p ?o } FROM <http://mytest.com> WHERE { ?s ?p ?o }; fmtaggret-TTL LONG VARCHAR _______________________________________________________________________________ @prefix foaf: <http://xmlns.com/foaf/0.1/> . @prefix ns1: <https://s3.amazonaws.com/webid-sandbox/Enhanced-Turtle-Example.ttl#> . ns1:Alice foaf:name "Alice" . @prefix wdrs: <http://www.w3.org/2007/05/powder-s#> . ns1:Alice wdrs:describedby <https://s3.amazonaws.com/webid-sandbox/Enhanced-Turtle-Example.ttl> ; foaf:age 38 ; foaf:near ns1:London ; ns1:child ns1:Bob , ns1:Charlie . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . ns1:child rdfs:label "Child Property or Attribute" . @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix ns5: <http://purl.org/vocab/relationship/> . ns1:child owl:equivalentProperty ns5:childOf ; wdrs:describedby <https://s3.amazonaws.com/webid-sandbox/Enhanced-Turtle-Example.ttl> . ns1:Edna ns1:child ns1:Alice . ns1:Fred ns1:child ns1:Alice . @prefix dbpedia: <http://dbpedia.org/resource/> . ns1:London owl:sameAs dbpedia:London ; rdfs:label "London" ; wdrs:describedby <https://s3.amazonaws.com/webid-sandbox/Enhanced-Turtle-Example.ttl> . @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . <https://s3.amazonaws.com/webid-sandbox/Enhanced-Turtle-Example.ttl> rdf:type foaf:Document . @prefix dc: <http://purl.org/dc/elements/1.1/> . <https://s3.amazonaws.com/webid-sandbox/Enhanced-Turtle-Example.ttl> dc:title "Linked Data Deployment using an Amazon S3 Bucket and a Turtle content based Document" . @prefix ns9: <http://kingsley.idehen.net/dataspace/person/kidehen#> . <https://s3.amazonaws.com/webid-sandbox/Enhanced-Turtle-Example.ttl> foaf:maker ns9:this ; foaf:topic ns1:Alice , ns1:child , ns1:London . @prefix ns10: <http://purl.org/dc/terms/> . _:vb140754 ns10:title "My life" ; ns10:date "1999" ; ns10:creator ns1:Alice . 1 Rows. -- 94 msec. SQL> </verbatim> ---++ Related * See extended [[VirtRDFGraphsSecurity][fine-grained scenarios]] using RDF GRAPH Security. * Load Turtle resource(s) using: * [[VirtTipsAndTricksIsPropertyOfSyntaxInTurtleLOAD][SPARQL 1.1 LOAD FEATURE]]; * [[VirtTipsAndTricksIsPropertyOfSyntaxInTurtleSponger][Sponger]]; * [[VirtTipsAndTricksIsPropertyOfSyntaxInTurtleCMD][Command Line Turtle Loader]]; * [[VirtTipsAndTricksIsPropertyOfSyntaxInTurtle][Using {is property of} for inverse relations in Turtle]] * [[VirtTipsAndTricksGuide][Virtuoso Tips and Tricks Collection]] * [[http://docs.openlinksw.com/virtuoso/rdfsparql.html][Virtuoso Documentation]]
sioc:id
122de46fa8b4fb616550dd39d9f3346d
sioc:link
n2:VirtTipsAndTricksIsPropertyOfSyntaxInTurtleConductor
sioc:has_container
n9:ODS
atom:title
VirtTipsAndTricksIsPropertyOfSyntaxInTurtleConductor
atom:source
n9:ODS
atom:author
n5:this
atom:published
2017-06-13T06:08:29Z
atom:updated
2018-04-05T18:03:16Z
Subject Item
n8:this
sioc:creator_of
n2:VirtTipsAndTricksIsPropertyOfSyntaxInTurtleConductor