Re: [Virtuoso-users] Possible compatibility between 6.1.16 and 6.1.8?

2014-02-03 Thread Frederick Giasson
Hi Hugh, You can track withthe atom feed, to see when a fix for this issue has been published: https://github.com/openlink/virtuoso-opensource/commits/develop/6.atom or you could log the issue on the git tracker and would get notification when the issue has been fixed ...

[Virtuoso-users] Dump graph to file

2014-02-03 Thread Dimitris Kontokostas
Hi I am trying to dump a graph to file as RDF (ttl or nt preferred) I use the following code (according to some old notes) create procedure graph_to_ttl_file (in graph_iri varchar, in f_name varchar) { declare ses any; ses := string_output(); DB.DBA.RDF_GRAPH_TO_TTL (graph_iri, ses);

Re: [Virtuoso-users] Dump graph to file

2014-02-03 Thread Purohit, Sumit
Hi Dimitris, I recently used following procedure(s) to dump rdf graph into ttl files. http://virtuoso.openlinksw.com/dataspace/doc/dav/wiki/Main/VirtRDFDatasetDump and these worked perfectly . I am not sure about validity of the link you provided but you can try above link. Hope this helps.