I am trying to export data from a database via a query.
Unfortunately the table I am trying to export is large ( > 3 GB ) and consequently I get an out of memory error.
The data is retrieved on a seperate thread.
Is it possible to free the data written to file?
And could I check the size of the data already retrieved?
That way I could pause the thread and wait for some of the data to be written to file before continuing.