DBAsupport.com Forums - Powered by vBulletin
Page 2 of 2 FirstFirst 12
Results 11 to 14 of 14

Thread: Export/Import problems

  1. #11
    Join Date
    Apr 2006
    Posts
    377
    When you say you are generating the DDL from the indexfile, does this DDL happen to include table creation w/ PRIMARY & FOREIGN keys included? If so...that's the problem.

  2. #12
    Join Date
    Dec 2001
    Posts
    337
    Yes, i think i have sorted it now. This is what i did:

    Disabled all the constraints
    trunctated the tables
    and re ran the import

    it went through ok

    Thanks all for your advice

  3. #13
    Join Date
    Sep 2002
    Location
    England
    Posts
    7,334
    such a backwards / long way to do it

  4. #14
    Join Date
    Sep 2006
    Posts
    6
    Some process has created and enabled the constraints for that user. Plain and simple. Do it all at once in single statements, ignore the index stuff.

    in the destination database (paraphrasing here):

    drop user test cascade;

    in the source database do the full export.

    on the destination system
    create user test default tablespace newtablespace
    alter user test quota unlimited on newtablespace

    imp system file=expfull.dmp fromuser=test touser=test statistics=none ignore=y log=import.log

    You shouldn't have any problems if you follow that order and fill in the commands properly.


    If that still doesn't work, the you had better pass on the logfiles.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width