Subject Re: [firebird-support] C-ISAM files to firebird DB
Author Wolfgang Rohdewald
On Samstag, 5. Juli 2008, Maurizio wrote:
> anyway i ask if anyone has experience on transfer data from
> C-ISAM data files ( .dat .idx ) , and if exists any tools or other
> for that .

if you rebuild the C-ISAM file it contains only valid records with
a fixed length.

Then you can use

create table isam external file 'isam.dat' (
...
)

and directly access the data using sql

--
Wolfgang