What is the best practice for inserting data via INSERT statements?
In MonetDB exists operation for bulk data loading (COPY INTO) but it requires file or stream and this solution doesn't suit my project.
I tried to use START TRANSACTION; ... COMMIT; but my best result was 220 000 records in 1 minute.
I use MonetDB in my .net project via ODBC connection.
How can I insert data via INSERT the fastest way?