Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am looking for the right tool to export specific rows (WHERE condition) of some oracle database tables. There is one column with CLOB Data which can be larger than 4000 characters, therefore exports as "INSERT INTO" statements do not work.

Using exp works but also exports the DDL, which gives errors when using imp as the Table is already existing.

share|improve this question

1 Answer

up vote 2 down vote accepted

Use the IGNORE=Y parameter when importing the dump file. This tells the import to ignore creation errors. Find out more.

share|improve this answer
+1 seems to be a workaround that works – stracktracer Jun 28 '12 at 9:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.