Subject | Re: Re[2]: [ib-support] FAST DATA PUMPING - BEST PRACTICE |
---|---|
Author | Marco Krause |
Post date | 2003-04-04T07:30:35Z |
Alexander,
definition guide for Interbase6 (located on www.ibphoenix.com)
select * from matchcode_external
insert into matchcode
fieldnames an iterate through all fields.
--
marco krause
> >- load all records from the as/400 und store them directly in theExternal tables are simple ascii files. For a description look in the data
> > ascii files (without using firebird !!)
>
> What do you mean by that? Using raw data access to the file. Where can
> I see the format of external files?
definition guide for Interbase6 (located on www.ibphoenix.com)
> >- pump all records with an sql statement from the external tableyes, but you can use one sql statement for this
> > in the final table
>
> Does it mean that I must have one external and one final table, so
> after populating the external I must select everything and insert it
> into the final table?
select * from matchcode_external
insert into matchcode
> What is the main reason for this. I do not think that usingBecause a ParamByName must compare the given paramname with the internal
> ParamByName would be slow. Is there anything else?
fieldnames an iterate through all fields.
--
marco krause