Re: [Virtuoso-users] Dump graph to file

2014-02-03 Thread Purohit, Sumit
. Thanks Sumit Purohit From: Dimitris Kontokostas [mailto:jimk...@gmail.com] Sent: Monday, February 03, 2014 10:26 AM To: virtuoso-users Subject: [Virtuoso-users] Dump graph to file 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

[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);