I did get some errors
=============
IMP-00019: row rejected due to ORACLE error 1
IMP-00003: ORACLE error 1 encountered
ORA-00001: unique constraint (constraint_name) violated
and similar errors.
My questions:
1. Is it because, I have not disabled the constraints?
2. If I disable the constraints such as primary key, won't it insert duplicate records?
3. Say for example, in the table exported, there are 5 columns and the table already there in the database in which import to be done, has 4 or 6 columns, will it still do import into that table?
4. If I drop the table before doing import, what happens to the privileges granted on that table to users?
5. Should I drop whole user with cascade option before doing import and then do the userbased import instead of FULL?
Pl. help.
Thanks in Adv.
Sam
------------------------
To handle yourself, use your head. To handle others, use your heart
I asked u about rows, because u should deside for yourself :
"Me need old rows in this table or not? If not need, then i can truncate table, if need i'll get a lot of messages about constraints violation.
And that's it.
3. 4-no, 6-yes as long as they are named the same.
4. the privs get dropped
5. if you do, you also drop any privs that might be granted to that user from other schemas.
Bookmarks