Bruce; I think you will find that the triples are there, but the data
you show just doesn't have any modeling elements - class and property
definitions.  This is perfectly legitimate for RDF data.  You can
always find out what data is in a model with the Triples view.  Go to
Window > Show View > Triples.  A view will appear and you can select
the namespace you want to view.

Given that you are looking into SPARQL, to find all triples you can
always run a SPO query:

SELECT *
WHERE
{  ?s ?p ?o
}

The SPARQL View will limit you to the first 1000 matches (which can be
modified in Preferences), so it is safe to run across large data
sets.  If you run this with "Run on base model only" (mode icon in
upper-right of SPARQL view) you will get only the triples defined in
the currently open model.

-- Scott

On Jan 25, 7:57 pm, Bruce Whealton <[email protected]> wrote:
> I am wondering why I cannot run the files from the book by Bob
> DuCharme inside of TBC.  I created a project called LearningSparql.  I
> then dragged the exercise files from where I had unzipped them and and
> dropped them inside TBC inside the LearningSparql folder.
>
> What step could I be missing?  I then open up ex002.ttl inside TBC and
> I don't see anything.  I mean starting with owl:Thing there is nothing
> in there.  Needless to say the first query does not work.
> I can do this from the command line.  Although, it doesn't seem to
> accept my path.
> I have to type in c:\arq\bat\arq
> to get arq to run.  I have tried to put into the path c:\arq\bat and
> also c:\arq
> I know this is a bit off topic, though.  I do have the ARQROOT set to
> c:\arq
>
> Anyway, I was curious as to why I cannot open ex002.ttl inside TBC.
> The contents of the file are:
>
> # filename: ex002.ttl
>
> @prefix ab: <http://learningsparql.com/ns/addressbook#> .
>
> ab:richard ab:homeTel "(229) 276-5135" .
> ab:richard ab:email   "[email protected]" .
>
> ab:cindy ab:homeTel "(245) 646-5488" .
> ab:cindy ab:email   "[email protected]" .
>
> ab:craig ab:homeTel "(194) 966-1505" .
> ab:craig ab:email   "[email protected]" .
> ab:craig ab:email   "[email protected]" .
>
> Thanks,
> Bruce

-- 
You received this message because you are subscribed to the Google
Group "TopBraid Suite Users", the topics of which include Enterprise Vocabulary 
Network (EVN), TopBraid Composer,
TopBraid Live, TopBraid Ensemble, SPARQLMotion and SPIN.
To post to this group, send email to
[email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/topbraid-users?hl=en

Reply via email to