HI Egon,
> I am trying to load a RDF document (made with a PHP script from a
> MySQL database) into Virtuoso with isql, but running into this
> exception:
>
> SQL> DB.DBA.RDF_LOAD_RDFXML_MT(file_to_string_output('/tmp/compounds.rdf',
> 'http://pele.farmbio.uu.se/chembl');
>
> *** Error 37000: [Virtuoso Driver][Virtuoso Server]SQ074: Line 1: syntax error
> at line 4 of Top-Level:
> DB.DBA.RDF_LOAD_RDFXML_MT(file_to_string_output('/tmp/compounds.rdf',
> 'http://pele.farmbio.uu.se/chembl')
Your line is missing a closing paren after the call to
file_to_string_output:
DB.DBA.RDF_LOAD_RDFXML_MT(
file_to_string_output('/tmp/compounds.rdf'),
'http://pele.farmbio.uu.se/chembl'
);
Patrick