Subject | Re: [firebird-support] Importing large amount of data. |
---|---|
Author | Martijn Tonies |
Post date | 2006-05-16T16:36:29Z |
Hello Darin,
them ( Database Workbench - www.upscene.com )
The fastest way to import fixed length text data, is by using an external
table. This allows you to do an:
insert into normal_table select * from external_table
You can check the InterBase 6 documentation on how to use this.
Martijn Tonies
Database Workbench - development tool for Firebird and more!
Upscene Productions
http://www.upscene.com
My thoughts:
http://blog.upscene.com/martijn/
Database development questions? Check the forum!
http://www.databasedevelopmentforum.com
> I am importing a large number of records into a firebird tableThere are plenty of tools that can do this for you ... Ours is one of
> programatically from a text file with ansi C. ie 1 million records. It
> seems stupid to generate a sql statement for each record, that would
> be really slow. What support does Firebird have for such an import?
> Can the SQL interface help me or is there another way to do it?
them ( Database Workbench - www.upscene.com )
The fastest way to import fixed length text data, is by using an external
table. This allows you to do an:
insert into normal_table select * from external_table
You can check the InterBase 6 documentation on how to use this.
Martijn Tonies
Database Workbench - development tool for Firebird and more!
Upscene Productions
http://www.upscene.com
My thoughts:
http://blog.upscene.com/martijn/
Database development questions? Check the forum!
http://www.databasedevelopmentforum.com