Re: How import big amounts of data?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



At 04:48 AM 12/29/2005, Arnau wrote:
Hi all,

Which is the best way to import data to tables? I have to import 90000 rows into a column and doing it as inserts takes ages. Would be faster with copy? is there any other alternative to insert/copy?
Compared to some imports, 90K rows is not that large.

Assuming you want the table(s) to be in some sorted order when you are done, the fastest way to import a large enough amount of data is:
-put the new data into a temp table (works best if temp table fits into RAM)
-merge the rows from the original table and the temp table into a new table
-create the indexes you want on the new table
-DROP the old table and its indexes
-rename the new table and its indexes to replace the old ones.

If you _don't_ care about having the table in some sorted order,
-put the new data into a new table
-COPY the old data to the new table
-create the indexes you want on the new table
-DROP the old table and its indexes
-rename the new table and its indexes to replace the old ones

Either of these procedures will also minimize your downtime while you are importing.

If one doesn't want to go to all of the trouble of either of the above, at least DROP your indexes, do your INSERTs in batches, and rebuild your indexes.
Doing 90K individual INSERTs should usually be avoided.

cheers,
Ron




[Postgresql General]     [Postgresql PHP]     [PHP Users]     [PHP Home]     [PHP on Windows]     [Kernel Newbies]     [PHP Classes]     [PHP Books]     [PHP Databases]     [Yosemite]

  Powered by Linux