Hi,
I am getting this error "com.stardog.http.server.undertow.ErrorHandling:writeError(138): Unexpected error on the server
Query execution cancelled: Execution time exceeded query timeout 600000"
while deleting some triples.
my query is :
PREFIX dbo: http://dbpedia.org/ontology/
PREFIX dbp: http://dbpedia.org/resource/
PREFIX foaf: http://xmlns.com/foaf/0.1/
DELETE{
?s ?r ?o .
} WHERE{
?s ?r ?o .
FILTER(REGEX(str(?s), "^http://dbpedia.org/resource/", "i"))
FILTER(?r = owl:sameAs)
}
Although query timeout in stardog.properties is 10hr.
Please help me to resolve this error?
Thank You.