Expansion of ARQ acronym

2016-10-08 Thread Kumar,Abhishek
Hi all, What is the expansion of the acronym ARQ - the query engine for Jena? Thanks & Regards Abhishek

Re: Applications/Projects Using Jena

2016-10-08 Thread Kumar,Abhishek
Thank you all for providing this info and sharing your experiences with Jena. This helped a lot in my presentation. Best Regards Abhishek From: Claude Warren Sent: Friday, October 7, 2016 3:10:42 AM To: users@jena.apache.org Subject: Re:

Re: How to set data type for OWL restriction using Apache Jena?

2016-10-08 Thread Darko Androcec
Hi, I have got this suggestion on StackOverFlow: "OWL max cardinality is not a restriction on the datatype as you already recognized. What you're after is known as OWL data range, in particular, FacetRestriction: w3.org/TR/owl2-syntax/#Data_Ranges . Note, the Ontology API is not complete for

Re: sum property values

2016-10-08 Thread neha gupta
Will it works like: SELECT (SUM(?worldcupgoals ?eurogoals ?othergoals)) where { ?team rdf:type ont:Team . ?team ont:WorldCup_Goals ?worldcupgoals; ont:EuroCup_Goals ?eurogoals ; ont:Other_Goals ?othergoals} On Sat, Oct 8, 2016 at 12:43 PM, Martynas Jusevičius wrote: >

Re: sum property values

2016-10-08 Thread Martynas Jusevičius
https://www.w3.org/TR/2013/REC-sparql11-query-20130321/#aggregateExample On Sat, Oct 8, 2016 at 9:35 PM, neha gupta wrote: > I am sorry but need some details? I really have no idea how to sum multiple > values (data properties) using SPARQL, despite searched the web. > >

Re: sum property values

2016-10-08 Thread neha gupta
I am sorry but need some details? I really have no idea how to sum multiple values (data properties) using SPARQL, despite searched the web. On Sat, Oct 8, 2016 at 11:21 AM, Andy Seaborne wrote: > SUM and GROUP BY > > Andy > > > On 08/10/16 19:14, neha gupta wrote: > >>

Re: sum property values

2016-10-08 Thread Andy Seaborne
SUM and GROUP BY Andy On 08/10/16 19:14, neha gupta wrote: team1 WorldCup_Goals 20 team1 EuroCup_Goals 25 team1 Other_Goals50 WorldCup_Goals, EuroCup_Goals and Other_Goals are my properties. How to calculate total goals of team1 using SPARQL?

sum property values

2016-10-08 Thread neha gupta
team1 WorldCup_Goals 20 team1 EuroCup_Goals 25 team1 Other_Goals50 WorldCup_Goals, EuroCup_Goals and Other_Goals are my properties. How to calculate total goals of team1 using SPARQL?

Re: garbage data stores in owl file

2016-10-08 Thread kumar rohit
Don't write the inference model to disk unless you want all the inferences. You mean once all the inference or rules done, I write the inference to disk? Or I have misinterpreted your answer, Dave? On Sat, Oct 8, 2016 at 10:08 AM, Dave Reynolds wrote: > > > On

Re: garbage data stores in owl file

2016-10-08 Thread Dave Reynolds
On 08/10/16 11:28, kumar rohit wrote: I have added my model to the disk file but it adds some garbage data to my file like Alt, Bag etc. Why this happens? I read the model, did some changes and write the model to disk. (I write the inference model to the disk) Don't write the inference

Re: Inference model or Model

2016-10-08 Thread A. Soroka
Generally, an inference model can produce both the triples of a wrapped Model and its inferred triples. --- A. Soroka The University of Virginia Library > On Oct 7, 2016, at 4:30 PM, tina sani wrote: > > Hello, if I we have a model1 (not inference model) and we make

Re: garbage data stores in owl file

2016-10-08 Thread A. Soroka
Please, please, please take the advice that has repeatedly been given on this list and include with your question at least: - a code listing - the data you are using - what you expect to happen - what actually happens https://stackoverflow.com/help/mcve --- A. Soroka The University of Virginia

garbage data stores in owl file

2016-10-08 Thread kumar rohit
I have added my model to the disk file but it adds some garbage data to my file like Alt, Bag etc. Why this happens? I read the model, did some changes and write the model to disk. (I write the inference model to the disk)