Re: [firebird-support] Bulk upload options

2018-05-18 Thread 'Carlos H. Cantu' lis...@warmboot.com.br [firebird-support]

Re: [firebird-support] Bulk upload options

2018-05-18 Thread hamacker sirhamac...@gmail.com [firebird-support]
Well, I wrote that scripts by isql.exe < script.sql is more fast than transfer from machine to another because... I did and compare. Is more fast because dont depends of any kind of application that use data layers(ado, odbc,...) and network protocols, it´s more similar that 'bulk insert' in

Re: [firebird-support] Bulk upload options

2018-05-17 Thread fabia...@itbizolutions.com.au [firebird-support]
hoogroups.com> To: <firebird-support@yahoogroups.com> Sent: Wednesday, May 16, 2018 7:10 PM Subject: Re: [firebird-support] Bulk upload options > 16.05.2018 4:48, fabia...@itbizolutions.com.au [firebird-support] wrote: >> Does anyone have experience with bulk updates via isql? Woul

Re: [firebird-support] Bulk upload options

2018-05-16 Thread 'Carlos H. Cantu' lis...@warmboot.com.br [firebird-support]
Script is just a bunch of SQL statements executed in sequence. An insert script will never be faster than using prepared parametrized statements, since with scripts, Firebird will have to prepare/execute statements one by one. For specific cases, user may try to put the "inserts" inside an

Re: [firebird-support] Bulk upload options

2018-05-16 Thread hamacker sirhamac...@gmail.com [firebird-support]
would fly, right?? > > Cheers, > Fabian > > > > - Original Message - > From: "Dimitry Sibiryakov s...@ibphoenix.com [firebird-support]" > <firebird-support@yahoogroups.com> > To: <firebird-support@yahoogroups.com> > Sent: Wednesday, May 16

Re: [firebird-support] Bulk upload options

2018-05-16 Thread fabia...@itbizolutions.com.au [firebird-support]
ebird-support@yahoogroups.com> To: <firebird-support@yahoogroups.com> Sent: Wednesday, May 16, 2018 7:10 PM Subject: Re: [firebird-support] Bulk upload options > 16.05.2018 4:48, fabia...@itbizolutions.com.au [firebird-support] wrote: >> Does anyone have experience with bulk updates via isql?

Re: [firebird-support] Bulk upload options

2018-05-16 Thread hamacker sirhamac...@gmail.com [firebird-support]
I dont know bulk method in firebird. You can write scripts, scripts is more fastest than transfer from machine to another. You can run isql.exe < script.sql If is not possible to create scripts then use (hard) commit each 1000 (or more) transfers, if you not to do, transaction will be slowing at

Re: [firebird-support] Bulk upload options

2018-05-16 Thread Dimitry Sibiryakov s...@ibphoenix.com [firebird-support]
16.05.2018 4:48, fabia...@itbizolutions.com.au [firebird-support] wrote: > Does anyone have experience with bulk updates via isql? Would it be X times > faster than using a normal application inserting the records inside a begin > transaction and commit at the end? No, because it is exactly

Re: [firebird-support] Bulk upload options

2018-05-15 Thread fabia...@itbizolutions.com.au [firebird-support]
support@yahoogroups.com> Sent: Wednesday, May 16, 2018 12:43 PM Subject: [firebird-support] Bulk upload options >I am looking for the fastest way to run a bulk insert. > I believe one way would be using isql.exe , I need to plan a solution to > upload into a single table around 500 millio

[firebird-support] Bulk upload options

2018-05-15 Thread fabia...@itbizolutions.com.au [firebird-support]
I am looking for the fastest way to run a bulk insert. I believe one way would be using isql.exe , I need to plan a solution to upload into a single table around 500 million records. Does anyone have experience with bulk updates via isql? Would it be X times faster than using a normal