Confusing impdp and expdp stuff

Hello, I am kinda new to Oracle in general.
Building a test environment.
Want to move a production schema to a test RAC db i have built.
I read up and decided that expdp would be the best method ( correct me if i am wrong please )
I am on oracle linux.
Now I have expdp'ed a schme succesfully but when impdping on the other system i am getting a total of 735 errors.
I have created the same exact user and am using the following command
Please let me know whether I am missing a step here.
$>impdp system/<password> directory=impdp_dir dumpfile=UNIXDATA.DMP logfile=impdpUNIXdata.log fromuser='unixdata' touser='unixdata' commit=Y ignore=Y
would the log file help?
one of them
Processing object type SCHEMA_EXPORT/JOB
ORA-39083: Object type JOB failed to create with error:
ORA-00001: unique constraint (SYS.I_JOB_JOB) violated
also this
ORA-39083: Object type MATERIALIZED_VIEW failed to create with error:
ORA-31625: Schema UNIXDATA is needed to import this object, but is unaccessible
ORA-01435: user does not exist
THANKS ALOT FOR YOUR HELP!
Ali
Edited by: user10270464 on Apr 16, 2010 5:40 AM

Hi,
You don't say what version of Oracle you are using so trying to help without that info is more difficult. It also looks like you are using some old exp parameters and some new expdp parameters. Your mixed command is:
impdp system/<password> directory=impdp_dir dumpfile=UNIXDATA.DMP logfile=impdpUNIXdata.log fromuser='unixdata' touser='unixdata' commit=Y ignore=Y
You said that you did a schema mode export, so I would change the impdp command to be:
impdp system/<password> directory=impdp_dir dumpfile=UNIXDATA.DMP logfile=impdpUNIXdata.log table_exists_action=append
The parameters I changed were:
fromuser='unixdata' -- if the only thing in the dumpfile is what you want, then you don't need fromuser
touser='unixdata' -- since you are importing into the same schema, you don't need touser
commit=y -- no such equivalent in datapump
ignore=y -- the same as table_exists_action=append
Now for your errors.
The first one is not familiar with me, but I have seen the second error, but can't remember the details. Having the version that you are running may help job my memory.
Dean

Similar Messages

  • IMPDP and EXPDP

    Is there an option to be specified in EXPDP(Data Pump Export) and IMPDP(Data Pump import) to export/import the packages, procedures from one user/schema to the other with in the same database?

    You can use include parameter and the remap schema parameter.
    Expdp user/password include=procedure,packages ...
    If you have a loopback dblink, then you can do it all pin one command without creating a dump file. There is no expdp required. Do this
    Impdp user/password network_link=your_loopback_dblink include=package,procedure remap_schema=old:new schemas=old ...
    Hope this helps
    Dean

  • Impdp and expdp failed due to following error

    hi,
    to every one
    when ever i issue impdp or empdp command it gives the error
    i have used intesivly data pump but i am not get the idea that why this going to do on this DBserver only.
    even i have just give impdp username and passward but the error is same if any one have information then me is waiting for u'r reply.
    error is :
    Import: Release 10.2.0.1.0 - Production on Friday, 24 February, 2006 18:53:06
    Copyright (c) 2003, 2005, Oracle. All rights reserved.
    Password:
    Connected to: Oracle Database 10g Release 10.2.0.1.0 - Production
    ORA-39006: internal error
    ORA-39065: unexpected master process exception in DISPATCH
    ORA-01775: looping chain of synonyms
    ORA-39097: Data Pump job encountered unexpected error -1775

    Hi,
    Error: ORA-01775: looping chain of synonyms
    Cause: You created a series of synonyms that resulted in a circular reference.
    Action: The options to resolve this Oracle error are:
    Correct the synonyms so that the circular reference is removed.
    A circular reference can occur as follows:
    CREATE SYNONYM syn1 for syn2;
    CREATE SYNONYM syn2 for syn3;
    CREATE SYNONYM syn3 for syn1;
    see user_synonyms ...

  • Datapump expdp impdp and sequences

    Hi all. I have a 10g XE database on my dev machine witha whole load of test data in it. I want to copy the schema to another machine without the data which I can do with expdp usr/pwd CONTENT=metadata_only and I can import it with impdp and everyhing works tickety boo. Except that all the sequences are populated where the test data left off. Can someone please tell me how to copy the schema with the sequences reset please ? I'm guessing either I can export the schema resetting the sequences (somehow) or export EXCLUDING the sequeces and create them seperately (somehow). Thanks for reading.

    I don't think you can reset the sequences directly. You can run the import to an sql file and then use search/replace on it:
    $ impdp user/pass dumpfile=test.dmp directory=MY_DIR include=SEQUENCE sqlfile=sequences.sql
    You will have several lines like this inside "sequences.sql":
    CREATE SEQUENCE "USER"."SEQ_NAME" MINVALUE 1 MAXVALUE 99999999 INCREMENT BY 1 START WITH 1857 CACHE 20 ORDER CYCLE ;
    Then just use regular expressions to replace "START WITH NNNN" by "START WITH 1"

  • I have a Mac OS X version 10.6.8 bought in 2010.  My computer is super slow uploading and downloading stuff all of a sudden so is there any way of speeding it up again?

    I have a Mac OS X version 10.6.8 bought in 2010.  When uploading and downloading stuff my computer is all of a sudden slower than usual.  The rainbow disc is always appearing and I have to sit and wait for items to finally pop up!  Can someone help me figure out how to speed up my computer again?  I am just confused to why this is happening all of a sudden.  Thank you.

    Usually the HDD is the frist place to look.  Use the original install disk and start up the MBP with the C key down.  Go through the installation process until you see on the display a menu bar on top.
    Click on UTILITIES.
    From the drop down menu select Disk Utility.
    Open Disk Utility>First Aid and run Verify and Repair.
    What are the results?
    Also look at these articles:
    https://discussions.apple.com/docs/DOC-3521
    http://www.thesafemac.com/mpg/
    Ciao.

  • I need help with IMPDP and the parameter 'EXCLUDE'...

    Hi all... Im new at this forum and Im looking for some help =)
    I'm working with DataPump (EXPDP and IMPDP), and I'm importing some tables from HR... I'm able to import those tables without any problem, but I have to exclude the TRIGGER and PROCEDURES. I'm using the parameter EXCLUDE=TRIGGER,PROCEDURE and it shows me an error message , because its unable to find the object call "PROCEDURE"... if I remove the EXCLUDE=PROCEDURE then it shows no error message... can someone help me?
    this is the script Im using....
    IMPDP system/mypassword directory=DATA_PUMP REMAP_SCHEMA=HR:EXAMEN include=table:\"in('DEPARTAMENTS','EMPLOYEES','JOB_HISTORY','JOBS')\" EXCLUDE=TRIGGER,PROCEDURE DUMPFILE=IMP_HR.DMP LOGFILE=IMP_HR_.LOG

    Hi,
    Use:
    EXCLUDE=TRIGGER
    EXCLUDE=PROCEDURE
    Always read the docs first:
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14215/dp_import.htm#i1010670

  • TS2446 If i create a new apple id account on my ipod, will i still have all my music, apps, books and other stuff on my ipod that i downloaded and bought with my old account or will i loose everything; will i be able to still do the updates to those apps?

    If I create a new apple id account on my ipod, will I still have all my music, apps, books and other stuff on my ipod that I downloaded and bought with my old account or will I loose everything; will I be able to still do the updates to those apps?
    I really need help!

    I don't think you understood what I wrote. You don't HAVE to pay for everything if you are happy with using the other account for updates, etc. But if you don't want to do that then you will have to buy new copies of everything for the new account. There's only one purchase item per account, but you can redownload an item in the account many times.
    The idea is this:
    One computer, multiple devices, one Apple ID.
    One user, multiple devices, one Apple ID.
    The basic idea is that each user has an Apple ID under which he/she can manage multiple devices on a single computer.
    Once you step outside of that model you create such problems as not being able to use or update apps purchase under one Apple ID when using a different Apple ID. Or not being able to easily sync one device on more than one computer.

  • How do I create a new account and get stuff from the old account to the new account

    How do I create a new account and get stuff from the old account to the new account

    There are instructions on this page for creating a new account : Set up an Apple ID in iTunes
    Or if you don't want to give credit card details : Create an iTunes Store, App Store, or iBooks Store account without a credit card or other payment method
    But you won't be able to transfer purchases from your old account to it, all content that you download from the store will remain tied to the account that downloaded it.

  • I know that iCloud backs-up apps and other stuff to your phone incase you want restore from a back-up if you start a New iPhone. My question is if I start a new iPhone (not use the restore from back-up option) and redownload apps like (games, Instagram),

    I know that iCloud backs-up apps and other stuff to your phone incase you want restore from a back-up if you start a New iPhone. My question is if I start a new iPhone (not use the restore from back-up option) and redownload apps like (Games, Instagram), would my pics show up on Instagram and would my Games show it was saved and the acccomplisments will remain from the last place I left out.

    Davin12 wrote:
    I know that iCloud backs-up apps and other stuff to your phone incase you want restore from a back-up if you start a New iPhone. My question is if I start a new iPhone (not use the restore from back-up option) and redownload apps like (Games, Instagram), would my pics show up on Instagram and would my Games show it was saved and the acccomplisments will remain from the last place I left out.
    Icloud or itunes backup, only backs up app data, not the app itself.
    so if you restore as new, then there is no app data on your phone, you start out new...

  • My computer has been seen at Genius bar 6 times for freezing up, reloaded all original settings and even went to the apple shop where they replaced the battery and logic board. Still freezes after I try to reload iTunes stuff and app stuff from apple

    my computer has been seen at Genius bar 6 times for freezing up, reloaded all original settings, all of their diagnostics, and they even sent it to the apple shop where they replaced the battery and logic board. Still freezes after I try to reload iTunes stuff and app stuff from apple, especially iPhoto which is seems to refuse to load and then begins freezing up all over again. Anyone else have this problem. Other than this, I have had absolutely no problems with this computer. Now, it's a file of junk.

    Hi Ronald ...
    Have you checked lately to see how much free space there is on the disk? Especially since iPhoto freezes at launch ...
    Click your Apple menu icon top left in your screen. From the drop down menu click About This Mac > More Info > Storage
    Make sure there's at least 15% free disk space.
    And make sure the OS X software is up to date.
    Click the Apple  top left in your screen.
    From the drop down menu click:   Software Update
    If you have anti virus software installed or are using third party Mac cleaning utiliites, that may be part and parcel of the your problems.

  • I cant create account because i dont have credit card but I have ipod touch and I need it to download free games and other stuff

    I cant create account because i dont have credit card but I have ipod touch and I need it to download free games and other stuff.Is there any option i can write i dont have any credit card?
    Sorry abaot my english

    Hi...
    Click None in the Payment Information window.
    Instructions for either using your iPhone or a computer > Creating an iTunes Store, App Store, iBookstore, and Mac App Store account without a credit card

  • All of a sudden, new tabs have started opening up (in Firefox) advertising games and other stuff. Any idea's of what is going on here?

    All of a sudden, new tabs have started opening up (in Firefox) advertising games and other stuff. Any idea's of what is going on here?

    Try scanning for malware using the removal tools listed near the bottom of the [[Troubleshoot Firefox issues caused by malware]] article.
    It might also help if you could copy and paste troubleshooting information into your reply. See [[Use the Troubleshooting Information page to help fix Firefox issues]] for details.

  • I had to replace my i4s with another one from the apple store.shouldn't i be able to go to the cloud to get all my contact info and other stuff that was stored in the cloud from the first phone?

    i had to replace my i4s phone with another one from the apple store. i need to download all my contact info and other stuff from the cloud to my new phone.i see a screen that says  RESTORE I PHONE   and are you sure you want to restore the iphone to its facory settings?  all of your media and other data will be erased. they i tunes will verify restore with apple. After this you will have the option to restore your contacts and other settins.  The question is will it restore my first phones info?  I am hesitant to delete anything  lol.

    No. If you made your backup to iCloud, iTunes will not restore from an iCloud backup. See:
    iOS: Backing Up and Restoring Data to a New Device

  • Trigger-Body isnt remaped during IMPDP and REMAP_SCHEMA in Oracle 10g

    Hello,
    we are facing the following problem:
    During an IMPDP we are remaping the schema. The schema includes triggers. The trigger bodys are of normal syntax without a relation to the schema/user.
    If we start the import with datapump using the remap_schema option the triggers are remap to the new schema. But the trigger bodys point to the old schema.
    For example:
    CREATE OR REPLACE TRIGGER "OLD_SCHEMA".NAME_OF_TRIGGER
    BEFORE INSERT ON "OLD_SCHEMA"."TABLE_NAME" REFERENCING OLD AS OLD NEW AS NEW FOR EACH ROW BEGIN
    END;
    After using the REMAP_SCHEMA option:
    CREATE OR REPLACE TRIGGER "NEW_SCHEMA".NAME_OF_TRIGGER
    BEFORE INSERT ON "OLD_SCHEMA"."TABLE_NAME" REFERENCING OLD AS OLD NEW AS NEW FOR EACH ROW BEGIN
    END;
    So the Trigger Body in the NEW_SCHEMA uses a link to the OLD_SCHEMA and the trigger doesn't work. We wrote the trigger without referencing to a schema. So the OLD_SCHEMA resp. NEW_SCHEMA syntax must be added by datapump.
    The question: Is there a way to remap the triggers correctly in the new schema or is this behavior "normal" to Oracle 10g Datapump?
    We are using Oracle 10g Database 10.2.0.4 with the latest Patches on Windows Server 2003 SP2.
    Thank you for you attention.

    Hello,
    I had the same problem and you can't fix it by changing a parameter of impdp. You really need to change the source of those triggers so they don't use hard-code schema references.
    Solution would be to change the source code of those triggers. Or to use the "script" parameter of impdp and recreate the triggers yourself after the impdp has finished.
    For more info check Metalink note: 750783.1
    I hope this helps.
    Regards,
    Michiel.

  • I have a problem, my wife has an ipad with photos , emails etc etc, she has recently got herself a new iPad Air, has now been using that for two or more months, more photos (new) more emails and other stuff. Will send next query as running out of room to

    I have a problem, my wife has an ipad with photos , emails etc etc, she has recently got herself a new iPad Air, has now been using that for two or more months, more photos (new) more emails and other stuff. What she wants to do is get all she wants from ipad 1 to new ipad without finishing up with 2 of everything which happen on previous occasion. I realise that she needs to tidy up ipad 1 first and get rid of thousands of emails etc. I need help.
    Thanks kiwihdrider

    Hi yes that works well when the new ipad hasn't been used. Trouble new one has been used for two months or more, has lots photos email etc etc. I am worried that these will go. When we did iPhone thru same process finished up with two of most things pics and emails. The emails alone were over 2 thousand and wife reluctant to delete them all. I would and just sort pics. Any other ideas
    Ta

Maybe you are looking for

  • Posting to Accounts Receivable using WPUBON, when WPUBON contains tenders

    Hi all! My client has some special requirements when invoicing specific customers in SAP ERP using WPUBON from POS DM. They want accounts receivable to be involved, even though the WPUBON idoc have all tenders/means of payment that is required to pay

  • Aggiornamento ios 6.1 con Iphone 4! Aiuto!

    Salve ragazzi ho appena aggiornato il mio a iphone 4 da ios 5.0.1 ad ios 6.1, prima dell'aggiornamento andava tutto bene con il nuovo ios 6.1 non funziona ne wifi nel senso che si connette ma non naviga, e non aggancia la rete 3g! Ho fatto già un rip

  • Using MobileMe Family Pack with iPad

    I have a iPad and a MobileMe Family Pack subscription. Why can't I have more MobileMe mail accounts, but not have my Calendars and Contacts of more then one MobileMe member account? I also would like to see user management on the iPad! Is there a wor

  • Sales Order Header Text....

    Hi All, I have given some text in sales order header. I want a field and table name of text entered in sales order header. Yusuf.

  • Firewall applet

    Hi, I would like to know if the firewall applet can be considered as an applet stored inside the Rom by the card's provider and that uses native methods.