Hi all,
I have been trying to do a full import into a database. But all the rows get appended to the table instead of overwriting it. Does anyone have any idea why is this so?
Thanks,
Shiva.
Printable View
Hi all,
I have been trying to do a full import into a database. But all the rows get appended to the table instead of overwriting it. Does anyone have any idea why is this so?
Thanks,
Shiva.
Imp does not perform UPDATES, only INSERTS.
If you only want to see the new data and none of the
old data, trucate your tables first.
-John
Thanks John.