Hello list,
I get the following error when running an insert command which touches
quite a lot of triples:
iODBC Error: [OpenLink][Virtuoso iODBC Driver][Virtuoso Server]SR325:
Transaction aborted because it's log after image size went above the limit
The insert query in question is this (probably not important but just to
be sure):
sparql insert into graph <urn:crappyinference2:inferredtriples> {
?r a rdfs:Resource .
?r a nrl:Graph .
?r a nrl:Data .
?r a nrl:InstanceBase .
} where {
graph ?g {
?r a nrl:DiscardableInstanceBase .
} .
FILTER(?g!=<urn:crappyinference2:inferredtriples>) .
}
Is it possible to allow the max transaction log size to be exceeded for
single queries?
Cheers,
Sebastian