Hi Mike,
Thank you for your reply. Here is what I have done:
1) create db can point the reasoning schema to both default graph and a named graph called '
http://tbox':
bin/stardog-admin db create -o reasoning.schema.graphs=default,
http://tbox -n testDB
2) load the rule set to both default graph and the '
http://tbox'
bin/stardog data add -g
http://tbox testDB <my rule set file>
3) load the data into another named graph called 'http:abox':
bin/stardog data add -g
http://abox testDB <my data file>
Then I try a query with inference required to run, and I got nothing back:
either:
bin/stardog query execute --reasoning RDFS testDB <my query file>
bin/stardog query "testDB;reasoning=RDFS" <my query file>
However, if I load data into default graph (now both rule set and data are in default graph), when I run the same query, I can get some results.
Best,
Gang