On 30/09/16 09:24, Yves Dorfsman wrote:
Is there a place to make suggestions on improvement for monetdb?
The official place: http://bugs.monetdb.org/ and mark the severity of the "bug" as Enhancement.
Three things that probably seem minor compared to the goals of monetdb, but which would be very helpful in my opinion:
- better copy to csv, a la postgres, with keywords lile "csv" and "header"
I usually use this, in interactive mclient: \> somefile.csv \f csv+, select * from table; \> \f sql See the mclient manual.
- ctrl-c to cancel a query but not kill the mclient sesion
mserver already stops executing a query if the connection to the client falls away. What is needed is that mclient closes the connection to the server when an interrupt happens and then makes a new connection. This is a bit harder than it sounds since mclient was never designed to do this. It is definitely easier to stop mclient and restart it.
- history kept and re-used between mclient sessions
It's already there. Use the -H option. -- Sjoerd Mullender