-- -- $Id$ -- -- This file is part of the OpenLink Software Virtuoso Open-Source (VOS) -- project. -- -- Copyright (C) 1998-2014 OpenLink Software -- -- This project is free software; you can redistribute it and/or modify it -- under the terms of the GNU General Public License as published by the -- Free Software Foundation; only version 2 of the License, dated June 1991. -- -- This program is distributed in the hope that it will be useful, but -- WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -- General Public License for more details. -- -- You should have received a copy of the GNU General Public License along -- with this program; if not, write to the Free Software Foundation, Inc., -- 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -- DB.DBA.XML_SET_NS_DECL ('foaf', 'http://xmlns.com/foaf/0.1/', 2); DB.DBA.XML_SET_NS_DECL ('rev', 'http://purl.org/stuff/rev#', 2); DB.DBA.XML_SET_NS_DECL ('sioc', 'http://rdfs.org/sioc/ns#', 2); DB.DBA.XML_SET_NS_DECL ('geonames', 'http://www.geonames.org/ontology#', 2); DB.DBA.XML_SET_NS_DECL ('geo', 'http://www.w3.org/2003/01/geo/wgs84_pos#', 2); DB.DBA.XML_SET_NS_DECL ('usc', 'http://www.rdfabout.com/rdf/schema/uscensus/details/100pct/', 2); DB.DBA.XML_SET_NS_DECL ('b3s', 'http://b3s.openlinksw.com/', 2); DB.DBA.XML_SET_NS_DECL ('lod', 'http://lod.openlinksw.com/', 2); DB.DBA.XML_SET_NS_DECL ('lgv', 'http://linkedgeodata.org/ontology/', 2); DB.DBA.XML_SET_NS_DECL ('category', 'http://dbpedia.org/resource/Category:', 2); DB.DBA.XML_SET_NS_DECL ('grs', 'http://www.georss.org/georss/', 2); DB.DBA.XML_SET_NS_DECL ('gr', 'http://purl.org/goodrelations/v1#', 2); DB.DBA.XML_SET_NS_DECL ('yp', 'http://dbpedia.org/class/yago/', 2); delete from rdf_quad where g = iri_to_id ('b3sonto'); ttlp (' @prefix foaf: @prefix dc: @prefix rdfs: @prefix b3s: rdfs:label rdfs:subPropertyOf b3s:label . dc:title rdfs:subPropertyOf b3s:label . foaf:name rdfs:subPropertyOf b3s:label . foaf:nick rdfs:subPropertyOf b3s:label . rdfs:subPropertyOf b3s:label . ', 'xx', 'b3sonto'); rdfs_rule_set ('b3s', 'b3sonto'); ttlp (' @prefix foaf: @prefix owl: @prefix rdfs: @prefix lod: foaf:mbox_sha1sum a owl:InverseFunctionalProperty . foaf:mbox_sha1sum rdfs:subPropertyOf lod:ifp_like . foaf:mbox a owl:InverseFunctionalProperty . foaf:mbox rdfs:subPropertyOf lod:ifp_like . # rdfs:label a owl:InverseFunctionalProperty . # rdfs:label rdfs:subPropertyOf lod:ifp_like . a owl:InverseFunctionalProperty . rdfs:subPropertyOf lod:ifp_like . ', 'xx', 'b3sifp'); rdfs_rule_set ('b3sifp', 'b3sifp'); SPARQL PREFIX skos: PREFIX rdfs: INSERT INTO GRAPH { skos:broader rdfs:subPropertyOf skos:broaderTransitive . skos:narrower rdfs:subPropertyOf skos:narrowerTransitive } ; rdfs_rule_set ('skos-trans', 'urn:rules.skos'); create procedure fct_load_oplweb () { for select RES_CONTENT as cnt from WS.WS.SYS_DAV_RES where RES_FULL_PATH = '/DAV/VAD/fct/oplweb.owl' do { DB.DBA.RDF_LOAD_RDFXML (cast (cnt as varchar), 'http://www.openlinksw.com/schemas/oplweb#', 'http://www.openlinksw.com/schemas/oplweb#'); } } ; fct_load_oplweb (); rdfs_rule_set ('oplweb', 'http://www.openlinksw.com/schemas/oplweb#');