Subject Re: [ib-support] connection was lost
Author Helen Borrie
At 08:46 PM 10/03/2003 +0000, you wrote:
>Hi,
>
>I am using Firebird, version 1.0.2.986, SO W2k and IBExpert/IbAdmin.
>When executing a command SQL to insert many records (above 10000) the
>connection was lost. Below the command:
>
>Insert Clientes(Campo1, campo2, campo3)
>values xCampo1, xCampo2, xCampo3
>from XClientes

Insert into Clientes (Campo1, campo2, campo3)
select xCampo1, xCamp02, xCampo3
from XClientes ;
>
>this same command, with the limitation of the number of records,
>executes with success.

I would be extremely surprised if it did.

heLen