On 19/06/12 05:09, Don S wrote:
HI,
I was experiencing with http://localhost:3030/sparql.tpl for updating the
tuples and search queries.
The Update command is
PREFIX owl:<http://localhost:3030/ds2/search.owl#>
This should be the URI for OWL
PREFIX owl: <http://www.w3.org/2002/07/owl#>
Setting it to the service has no special effect.
PREFIX xsd:<http://www.w3.org/2001/XMLSchema#>
INSERT DATA
{
<http://localhost:3030/ds2/search.owl#name1>
owl:hasFirstname "Rex" ^^ xsd:string;
}
It is updating the tuples but when I look at the server log I saw lot of
warning messages.
This is now fixed with a temporary workaround in the development
snapshot build of 0.2.3 last night. It is recorded as JENA-260.
The transaction did successfully commit. The warning is spurious (and
long).
> 12:32:05 INFO Server :: Fuseki 0.2.3-SNAPSHOT
20120614-0506
My doubt is after updating the tuples, why I was not able to see the
updated owl file rather I can see the updated results only through
http://localhost:3030/sparql.tpl with SPARQL query.
Because Fuseki updates tehd ataabse, not any file you loaded into the
database. Data is copied on loading into the database. The database is
in /TD.
Even after restarting the window and again giving the search query
PREFIX owl:<http://localhost:3030/ds2/search.owl#>
SELECT *
WHERE
{
?Person owl:hasFirstname ?hasFirstname.
}
I am getting the results with the updated tuples.I am confusing where it
is actually storing. Still cannot able to figure out.Or we cannot see these
updated tuples physically?
Through query of /TD
Here is my server configuration java -Xmx1200M -jar fuseki-server.jar
--update --loc=/TD /ds2, but if I change to (*--loc=./TD*) and give the
search query command it will display the tuples present
inside search.owl file excluded the tuples added using the browser.
/TD and ./TD are different directories.
You have two databases.
Any solution for this.
Thanks