You have taken import of a table in a database. you have got the Integrity constraint violation error. How you are going to resolve it.

Showing Answers 1 - 6 of 6 Answers

SRINIVAS

  • May 17th, 2006
 

use this DDL statement in create table script to avoid integrity constraint violation error DROP TABLE tabl_name CASCADE CONSTRAINTS ;

cascade constraints delete foreign keys associated with table and table frees with foreign keys.

  Was this answer useful?  Yes

Mirik

  • May 18th, 2006
 

You should import with option constraints=no and after that investigating which rows force the constraint

  Was this answer useful?  Yes

balakrishna

  • May 28th, 2006
 

if u want to import the table just say constraints=n the movement table got imported then u create constriant on that tables.

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions