Hi I have an SDB model called "SampleModel" in an SDB store (PostgreSQL), created with
factory = ModelFactory.createModelRDBMaker(conn); model = factory.createModel("SampleModel"); Using the SDB Java API I can open the model and execute a simple SPARQL SELECT query like SELECT ?s WHERE { ?s ?p ?o .} If I execute the same query using the command line tool 'sdbquery' I always get an empty Dataset, eventhough the model has been loaded with tripples. Is there a way to submit a query with 'sdbquery' against a specific model? Karl