Hello,

I commanded Virtuoso to insert the results of a query into a table and then
I got this error message about 24 hours after I started the insert command.
This is the error message:

*** Error 40005: [Virtuoso Driver][Virtuoso Server]SR325: Transaction
aborted because it's log after image size went above the limit
in lines 37-53 of Top-Level:
#line 37 "(console)"
insert soft dbpedia_article
    select uri, title, abstract, count(*) as specificity

    from
    (
        sparql select * where
        {
            graph <http://dbpedia.org/>
            {
                ?s <http://dbpedia.org/property/wikilink> ?uri.
                ?uri <http://dbpedia.org/property/abstract> ?abstract.
                ?uri <http://www.w3.org/2000/01/rdf-schema#label> ?title.
            }
        }
    ) as triples

    group by uri, title, abstract

How can I solve it?

Thank you.

-- 
Atenciosamente,
André Ramos Fernandes da Silva

Reply via email to