disabling constraints while copying
523861Sep 11 2006 — edited Sep 12 2006just a quick question I'm sure:
I'm copying data from one database to another I want the copy to ignore any
constraints on the target table.
copy from [schema]/[password]@[database] insert [schema].[table] -
using select * from [schema].[table] where [criteria];
is there something I can append to that to disable the constraints temporarily?