0
votes
0answers
23 views

Sparql Select Query works on Sesame-Workbench but not on Java

I'm trying to create a Sparql-Query to get all messages, that are related to a lecture. I'm new at the whole 'semantic web'-story so be patient if the usage namespace is completely wrong. The query I ...
0
votes
1answer
39 views

i need away to write rdf triples with Time attributes and make sparql query to get the time

i have triples: Fadi eat Apple. (subject = Fadi, predicate = eat, object = Apple). and i have the Time when fadi eat the Apple, its: 00:00:13 and i have the time when fadi ate the apple, its: 00:00:50 ...
0
votes
1answer
22 views

getting rdf xml:attribute in sparql query

Given This RDF: <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE rdf:RDF [<!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs ...
0
votes
1answer
45 views

sparql query about object to find another object

Given This RDF: <?xml version="1.0" encoding="utf-8"?><!DOCTYPE rdf:RDF [<!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs ...
0
votes
1answer
40 views

dotnetrdf Graph Sparql query

with rdf triples like this: <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE rdf:RDF [<!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs ...
1
vote
2answers
105 views

sparql querying RDF triples

Given this RDF: <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE rdf:RDF [<!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs ...
0
votes
2answers
58 views

RDF DB Duplicate Identification [closed]

I have a RDF database like following. I need to find duplicate by using combinations of records. Like following output. Please let me know what SQL query I can use to identify the duplicates I am ...
3
votes
1answer
83 views

Recursive queries in SPARQL to browse collections of collections

I am trying to create an RDF graph from a Mulgara RDF store, using a Sparql query to return results. I'm just beginning to get comfortable with simple queries, effectively asking, "which objects are ...
0
votes
0answers
71 views

MINUS or NOT EXIST in SPARQL

I have a query and want NOT to show some information SELECT ?Recipe WHERE { ?Ingredient <http://linkedrecipes.org/schema/ingredientOf> ?Recipe . MINUS { ...
1
vote
2answers
79 views

No results in query SPARQL

I am using JENA and I am making some simple queries for learning purposes. One of them is: PREFIX uni:<http://www.university.fake/university#> PREFIX ...
1
vote
2answers
121 views

Boolean checks in SPARQL, check for existence of a statement

Let's say I have a triple store full of video metadata. A video can have an arbitrary selection of pre-defined tags, like this: v1 ex:hasTag A. v2 ex:hasTag B. v3 ex:hasTag A; ex:hasTag B. So ...
1
vote
1answer
134 views

XQuery Regular Expression

Given the string/uri http://www.HomeBaseLine.com/Records#First_Class , I need to write a regular expression for the above string that filters all such strings for the one that contains the word ...
1
vote
1answer
55 views

SPARQL Return records from second Query ONLY IF no records in recordset from execution of First Query

I am new to SPARQL and so would appreciate help with this. I have two queries to run. The one returns records from a source. However in the case that no records are returned in the first case, I ...
4
votes
1answer
108 views

Can't get this SPARQL query to work

Okay, I'm just learning to use SPARQL to query data from dbpedia.org and I'm using dbpedia's http://dbpedia.org/snorql/ to run my queries in. I am trying to get a list of MusicalArtists based on ...
4
votes
3answers
1k views

SPARQL select optional with language

I have some triples that look like this: test:thing rdfs:label "Non-Language Label" test:thing rdfs:label "English Label"@en test:thing rdfs:label "French Label"@fr I'd like to form a sparql query ...
2
votes
1answer
229 views

Can I combine local and remote dataset within SPARQL query?

I've been reading about SPARQL and RDF and please correct me if my reasoning about these technologies is wrong here. Assuming that we have a local SPARQL database called LOCAL.. and url to remote RDF ...
5
votes
2answers
870 views

selecting using sparql based on 'triple does not exist'

I need a little help selecting the right triples from my store.... <a> a <type/1> . <b> a <type/1> . <c> a <type/1> . <c> a <type/2> . i want to ...
1
vote
1answer
363 views

SPARQL Select two columns

I'm new to SPARQL and I'm trying to select two or more data properties from entity. I have Artist entity which has two data properties (id and name). I'm trying to obtain a result like this: id ...
4
votes
4answers
1k views

Getting DBPedia Infobox categories

I'm currently looking for a way to query DBPedia's Infobox Onyology database via the SPARQL endpoint to get a list of the classes, the subclasses of a selected class, and the properties of a given ...
2
votes
3answers
1k views

Desktop SPARQL client for Jena (TDB)?

I'm working on an app that uses Jena for storage (with the TDB backend). I'm looking for something like the equivalent of Squirrel, that lets me see what's being stored, run queries etc. This seems ...
2
votes
3answers
997 views

How do I make a SPARQL query to find the highest value for a property?

Lets say I have a predicate like 'age' where the values of all age triples are integer literals. What SPARQL query would return the subject with the highest age in the data?
2
votes
2answers
915 views

[SPARQL/DBPedia]make a query with a zip-code and get some information about the city

Hey, i want to make a query with a zip-code to get some informations about the City. But how it works? Can someone tell me how the query must look? Greetz sheepy
3
votes
1answer
752 views

Querying Project Gutenberg catalog.rdf via SPARQL

I'm having difficulty structuring a SPARQL query for the Project Gutenberg catalog (available at Gutenberg Feeds toward the bottom of the page). I know it is a fundamental lack of understanding on my ...
11
votes
3answers
3k views

exploratory SPARQL queries?

whenever i start using sql i tend to throw a couple of exploratory statements at the database in order to understand what is avaliable, and what form the data takes. eg. show tables describe table ...
5
votes
2answers
638 views

Very basic SPARQL beginner problem (or RDF modelling problem)

Hi to you all (and thanks for this great website since there doesn't seem to exist a forum on beginner-SPARQL-questions), i hope someone can help me on this probably totally easy-to-solve problem: I ...