Vivek Khera <khera@kcilink.com> writes: > Since this is historical data, I'm actually merging a couple of dumps > that span the time range. I've dealt with eliminating any conflicting > data (ie, clashing unique keys) but I'm not 100% sure that the foreign > key constraints are all met. Thus, when loading the data from the > second dump, I am leaving the FK triggers on. I think you'd be better off to drop the FK constraint, import, and re-add the constraint. The out-of-memory problem is probably due to the list of deferred trigger firings (one per tuple, or more if you have multiple FKs to check). Even if you had enough memory, you'd not have enough patience for all those retail FK checks to occur after the COPY finishes. At least in 7.4, adding an FK constraint on an existing table should produce a better plan than the retail checks involved in adding rows to a table with an existing FK constraint. regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 2: you can get off all lists at once with the unregister command (send "unregister YourEmailAddressHere" to majordomo@postgresql.org)