Hi Michel,
how do i load gzipped n3 files using isql? here's what i currently do for unzipped files: DB.DBA.TTLP_MT(file_to_string_output ('/path/myfile'), '', 'test');
For loading gzipped N3 and Turtle files you can use: DB.DBA.TTLP_MT (gz_file_open('/path/myfile.n3.gz'), 'base uri', 'graph uri', 255);Note that the last parameter means the parser uses relaxed parsing rules, the default value of 0 means strict syntax rules.
Patrick