Error when doing importing with impdp

Hi,
I tried to do export then import the schema from and to same schema. However, when doing export with expdp everything was okay.
Problem begins when I tried to do importing by using impdp. I also tried to drop the current schema and created the new one but it still doesn't work.
If I didn't drop the current schema, it logs looks like this
Processing object type SCHEMA_EXPORT/SEQUENCE/SEQUENCE
ORA-31684: Object type SEQUENCE:"HSS"."LCM-MIGRATION_ID-SEQ" already exists
ORA-31684: Object type SEQUENCE:"HSS"."WKS_IDENTITY_SEQ" already exists
ORA-31684: Object type SEQUENCE:"HSS"."ESS_FAILOVER_RESOURCE_SEQ" already exists
ORA-31684: Object type SEQUENCE:"HSS"."ESS_FAILOVER_LEASE_OWNER_SEQ" already exists
Processing object type SCHEMA_EXPORT/TABLE/TABLE
ORA-39151: Table "HSS"."HSS_COMPONENT" exists. All dependent metadata and data will be skipped due to table_exists_action of skip
ORA-39151: Table "HSS"."HSS_COMPONENT_LINKS" exists. All dependent metadata and data will be skipped due to table_exists_action of skip
ORA-39151: Table "HSS"."HSS_COMPONENT_PROPERTY_VALUES" exists. All dependent metadata and data will be skipped due to table_exists_action of skip
ORA-39151: Table "HSS"."HSS_COMPONENT_TIERS" exists. All dependent metadata and data will be skipped due to table_exists_action of skip
ORA-39151: Table "HSS"."ESS_CLUSTER_SERVER_MAPPING" exists. All dependent metadata and data will be skipped due to table_exists_action of skip
ORA-39151: Table "HSS"."HSS_COMPONENT_TYPES" exists. All dependent metadata and data will be skipped due to table_exists_action of skip
ORA-39151: Table "HSS"."CSS_IDENTITY" exists. All dependent metadata and data will be skipped due to table_exists_action of skip
ORA-39151: Table "HSS"."CSS_GROUP_MEMBERS" exists. All dependent metadata and data will be skipped due to table_exists_action of skip
ORA-39151: Table "HSS"."CSS_USERS" exists. All dependent metadata and data will be skipped due to table_exists_action of skip
Job "HSS"."SYS_IMPORT_FULL_01" completed with 95 error(s) at 08:47:21
And then this is the log when doing importing, I only highlighted the necessary part which I think related with my problem
Starting "HYPSS"."SYS_IMPORT_FULL_01": HYPSS/******** TRANSFORM=oid:n:type directory=test_dir logfile=imptest.log dumpfile=HYPSS.dmp
Processing object type SCHEMA_EXPORT/USER
ORA-31684: Object type USER:"HYPSS" already exists
. . imported "HYPSS"."CSS_ROLE_LOCALES" 1.630 MB 6358 rows
. . imported "HYPSS"."HSS_COMPONENT_FILES" 601.5 KB 33 rows
. . imported "HYPSS"."HSS_COMPONENT_PROPERTY_VALUES" 130.7 KB 1657 rows
. . imported "HYPSS"."CES_APPS" 10.54 KB 1 rows
etc....
Processing object type SCHEMA_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS
ORA-39083: Object type INDEX_STATISTICS failed to create with error:
ORA-01403: no data found
ORA-01403: no data found
Failing sql is:
DECLARE I_N VARCHAR2(60); I_O VARCHAR2(60); c DBMS_METADATA.T_VAR_COLL; df varchar2(21) := 'YYYY-MM-DD:HH24:MI:SS'; BEGIN DELETE FROM "SYS"."IMPDP_STATS"; c(1) := 'TRIGGER_NAME'; c(2) := 'TRIGGER_GROUP'; DBMS_METADATA.GET_STAT_INDNAME('HYPSS','QRTZ_TRIGGERS',c,2,i_o,i_n); INSERT INTO "SYS"."IMPDP_STATS" (type,version,flags,c1,c2,c3,c5,n1,n2,n3,n4,n5,n6,n7,n8,n
Processing object type SCHEMA_EXPORT/TABLE/COMMENT
The source schema is on USERS tablespace (default). The destination schema I tried to put on the same tablespace but it doesn't work. However when I changed the destination tablespace, it also doesn't work.
Anybody got the idea why this occurs? Thanks.

got error like this
ORA-39152: Table "HSS"."CSS_GROUP_MEMBERS" exists. Data will be appended to existing table but all dependent metadata will be skipped due to table_exists_action of append
ORA-39152: Table "HSS"."CSS_USERS" exists. Data will be appended to existing table but all dependent metadata will be skipped due to table_exists_action of append
ORA-39152: Table "HSS"."CSS_ROLES" exists. Data will be appended to existing table but all dependent metadata will be skipped due to table_exists_action of append
ORA-39152: Table "HSS"."CSS_DELEGATED_MEMBERS" exists. Data will be appended to existing table but all dependent metadata will be skipped due to table_exists_action of append
ORA-39152: Table "HSS"."CSS_ROLE_MEMBERS" exists. Data will be appended to existing table but all dependent metadata will be skipped due to table_exists_action of append
ORA-39152: Table "HSS"."CSS_ROLE_LOCALES" exists. Data will be appended to existing table but all dependent metadata will be skipped due to table_exists_action of append
ORA-39152: Table "HSS"."CSS_GROUPS" exists. Data will be appended to existing table but all dependent metadata will be skipped due to table_exists_action of append
ORA-29913: error in executing ODCIEXTTABLEFETCH callout
ORA-00001: unique constraint (HSS.COMPONENT_LINKS_PK_IND) violated
ORA-31693: Table data object "HSS"."HSS_COMPONENT_TYPES" failed to load/unload and is being skipped due to error:
ORA-00001: unique constraint (HSS.COMPONENT_TYPES_PK_IND) violated
ORA-39111: Dependent object type COMMENT skipped, base object type VIEW:"HSS"."VW_APPLICATIONS" already exists
ORA-39111: Dependent object type COMMENT skipped, base object type VIEW:"HSS"."VW_APPLICATIONS" already exists
ORA-39111: Dependent object type COMMENT skipped, base object type VIEW:"HSS"."VW_APPLICATIONS" already exists

Similar Messages

  • Does Import with impdp.exe just ADD or REPLACE a table content?

    Assume I have I dumpfile which I want to import with the impdp.exe tool.
    Part of the dumpfile is the content of e.g. TABLE testtable123
    Furthermore lets say that after the previous export of the dumpfile
    some more data is added to the table while other data rows were meanwhile deleted.
    So if I execute now the impdp.exe operation is the dumpfile data just ADDED
    to the existing data in the current table testtable123 or does it completely REPLACE
    all data rows in table testtable123?
    Peter

    So if I execute now the impdp.exe operation is the dumpfile data just ADDED
    to the existing data in the current table testtable123 or does it completely REPLACE
    all data rows in table testtable123[http://download.oracle.com/docs/cd/B14117_01/server.101/b10825/dp_import.htm#i1006538]
    Note that if CONTENT=DATA_ONLY is specified, the default is APPEND, not SKIP
    TABLE_EXISTS_ACTION={SKIP | APPEND | TRUNCATE | REPLACE}
    APPEND loads rows from the source and leaves existing rows unchanged
    REPLACE drops the existing table and then creates and loads it from the source. This is not a valid option if the CONTENT parameter is set to DATA_ONLY.
    HTH
    -Anantha

  • Strange error when doing anything with yaourt

    Hi
    I have just installed yaourt from the AUR on my arch install (with LXDE, if that makes a difference) and whenever I do anything with it, it gives me the following error:
    shell-init: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
    This will happen whenever I run any command to do with yaourt, such as:
    yaourt -s virtualbox
    Normally, I only get one error, and then the command continues as normal. It does not appear to be affecting yaourt in any way. However, if I run the command as root, with sudo, I get many errrors. This is the output from running "sudo yaourt -s virtualbox":
    shell-init: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
    job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
    job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
    job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
    job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
    job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
    job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
    job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
    Basically, my question is whether or not this is 'normal', and whether or not it would be ok to just ignore it. It is quite annoying, so can anyone see a way to stop it?
    Thanks

    Hmmm... I haven't done anything, except maybe update the mirrors with pacman -Syy, and now the problem is gone. I don't know how I fixed it!
    Sorry for any inconvenience.
    Would I mark the thread as solved? Because it wasn't really solved, the problem merely 'disappeared'. What should I do?

  • ORA-04062 error when running forms with different users

    ORA-04062 error when running forms with different users
    I have a form that has a block that should display some data from another users tables. (The other user's name is dynamic, it's selected from a list box)
    I wrote a stored procedure to get the data from other user's tables.
    When I compile the form and run it with the same user I compiled, it works without any error. But when I run the compiled form with another user I get the ORA-04062 (signature of procedure has been changed) error.
    I tried setting REMOTE_DEPENDENCIES_MODE to SIGNATURE in init.ora but it didn't help.
    My Forms version is 6i with Patch 15.
    Database version is 9.
    Here is my stored procedure:
    TYPE Scenario_Tab IS TABLE OF NUMBER(34) INDEX BY BINARY INTEGER;
    TYPE Open_Curs IS REF CURSOR;
    PROCEDURE Get_Scenarios(User_Name IN VARCHAR2, Scen_Table OUT Scenario_Tab) IS
    Curs Open_Curs;
    i NUMBER;
    BEGIN
    OPEN Curs FOR
    'SELECT Seq_No FROM '|| User_Name ||'.scenario';
    i := 1;
    LOOP
    FETCH Curs INTO Scen_Table(i);
    EXIT WHEN Curs%NOTFOUND;
    i := i + 1;
    END LOOP;
    END Get_Senarios;
    I would be happy to solve this problem. It's really important.
    Maybe somebody can tell me another way to do what I want to do. (getting a list of values from another users tables)

    I think it should be a better solution to create a package,
    and put your own TYPES and procedure into it.
    CREATE OR REPLACE PACKAGE PKG_XXX IS
    TYPE TYP_TAB_CHAR IS TABLE OF .... ;
    PROCEDURE P_XX ( Var1 IN VARCHAR2, var2 IN OUT TYP_TAB_CHAR );
    END ;
    Then in your Form :
    Declare
    var PKG_XXX.TYP_TAB_CHAR ;
    Begin
    PKG_XXX.P_XX( 'user_name', var ) ;
    End ;

  • Error when extracting data with extractor 2lis_04_matnr - NEED HELP ASAP !!

    Hi experts!
    Got an error when extracting data with extractor 2lis_04_matnr.
    System says (short dump):
    DUMP TEXT START----
    Runtime error:    CONNE_IMPORT_WRONG_COMP_TYPE
    Exception:   CX_SY_IMPORT_MISMATCH_ERROR
    Error when attempting to import object "MC04P_0MAT_TAB".
    The current ABAP program "SAPLMCEX" had to be terminated because one of the statements could not be executed. This is probably due to an error in the ABAP program. When attempting to import data, it was discovered that the data type of the stored data was not the same as that specified in the program.
    An exception occurred. This exception is dealt with in more detail below. The exception, which is assigned to the class 'CX_SY_IMPORT_MISMATCH_ERROR', was neither caught nor passed along using a RAISING clause, in the procedure  "MCEX_BW_LO_API" "(FUNCTION)".                                                                             
    Since the caller of the procedure could not have expected this exception      
    to occur, the running program was terminated.                                
    The reason for the exception is:  When importing the object "MC04P_0MAT_TAB", the component no. 5 in the dataset has a different type from the corresponding component of the target object in the program "SAPLMCEX". <b>The data type is "D" in the dataset, but "C" in the program.</b>
    DUMP TEXT END----
    Please, can someone explain me how to solve it? 
    Really need help ASAP!
    Thanks in advance,
    Jaume
    Message was edited by:
            Jaume Saumell
    Message was edited by:
            Jaume Saumell

    Hi,
    Check this note: 328181
    So you need to delete entries in SM13/LBWQ for application and also detup table content.
    And then refill teh set up table.
    If you are in production clear the entries by running collective run no of times for this application 04.
    With rgds,
    Anil Kumar Sharma .P

  • Error when opening document with ECL control: INVALID_DATA

    Hi Gurus,
    I've tried to search the net for this problem but could not find anything and I'm stuck now.
    Description:
    we're using ECL to view attached documents (to POs etc.) which are stored through ArchiveLink on the content repository.
    when we try to open this document, time-to-time we get following error:
    Error when opening document with ECL control: INVALID_DATA
    Message no. SDV004
    by time-to-time I mean that when we try to open same attachment again it opens successfully (sometimes we need to re-open it 3-4 times to get it)
    what we've tried is to enlarge timeout for HTTP protocol (tx SMICM, from former 30 to actual 60) but only effect we got is that we're waiting for the error longer time
    It will be really great if anybody of you guys can give me an advice where the problem can be or where should I look and what to check
    Thanks,
    David

    Hi Christoph,
    thanks for tip, unfortunately this was already flagged, currently settings are:
    for Display Settings:
    yes - include ECL control
    use HTML control
    empty - maximum viewer wait time
    (do you think that setting some value for this could help)
    yes - deactivate generic object services in viewer
    no - doc display as dialog box
    yes - deactivate data provider cache
    Storage Settings:
    yes - always copy document class from document type
    yes - permit multiple assignment
    Thanks,
    David

  • Error when make controller with MVC entity framework

    error when make MVC with entity framework, WHY??

    Hi Arif Kalbu,
    It would be better if you could share us the detailed error message, so I could provide useful informaiton or provide the correct forum for this issue, you know that this forum is to discuss the VS IDE.
    But if the real issue is related to the MVC project, maybe the ASP.net forum would be better: http://forums.asp.net. If then, you could get an answer more quickly and professional. Thanks for your cooperation.
    Best Regards,
    Jack
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • TS1702 I got this error when doing a restore

    I got this error when doing a restore and the restrictions were turned on .  I disabled restrictions and the restore was able to complete.

    The error in itunes had a link to http://support.apple.com/kb/TS1702.  I placed this message here for anyone that might navigate to the same message and would hopefully find this.  Yes turning off restrictions allowed the restore to complete and everyone is now happy.

  • I always get an ERROR when I import avi videos in After Effects !!

    Hi There
    As I said in the title ,,
    I always get an error when I import an (avi) video into After Effects CS5.5 ,,
    and I don't Know why ,
    in other hand I can open the same video I imported it in many media programs like : Windows Media Player-Quike Time-Windows Media Center- Real Player ,, except After Effect !
    Although the same Program I used before Formatting the computer ,, but after Formatting the Projects file for Adobe After Effect didn't Open as well !!
    The Picture I attached shows the Error ,,
    Note:
    the question marks in the pictures are for the Arabic name of the avi video ,,and this version of Adobe After Effect CS5.5 is trail ,,
    I hope to find a solution for my problem ,,
    and I'll Be Thankful

    It worked , both what you said worked ,,
    First I placed them on the desktop ,
    Second I changed the names of the videos ,,
    and both of them worked ,,
    thanks a lot for your help ,
    Mr. TimeRemapper & Mr. Mylenium
    have a good day

  • SAP DMS : Error when opening document with ECL control: INVALID_DATA

    We are receiving following error while try to view .FAX file through SAP Document viewer
    "2D viewer - Unable to opend Document"
    "Error when opening document with ECL control: INVALID_DATA"
    Appreciate your quick effort.
    Thanks,
    Sam.

    Yes, We have checked in both ways, I have also followed other threads on the same issue
    But not able to find the solution for the issue. We are facing the issue when we are using files scannned by Kodak Scanner i1420 in tiff format.
    But If I will attach any other tiff files from directory then It can viewed through SAP Document Viewer.
    I appreaciate your help in this regards.
    Thanks,
    Sam,

  • Processing error when doing a drillthrough agianst a Rolap dimension, working with MOLAP

    Hi,
    I'm having a drillthrough dimension (fact) that i'm using for drillthrough scripts. One thing that I have come a cross is that I get processing errors when I run queries agianst a ROLAP dimension where as it works agianst the same dimension set
    as MOLAP. This is kind of confusing me.
    The error message i get is like this one:
    Errors in the OLAP storage engine: The process operation ended because the number of errors encountered during processing reached the defined
    limit of allowable errors for the operation.
    Errors in the OLAP storage engine: An error occurred while the 'Journal NO' attribute of the 'GLFact' dimension from the 'XXX' database was being processed.
    I found a article about this
    http://sqlblog.com/blogs/marco_russo/archive/2009/01/17/issues-executing-a-drillthrough-with-a-rolap-dimension.aspx
    But I have set KeyDuplicate, Keynotfound, Nullkeyconvertedtounknown and NullKeynotallowed to ignoreerror and still it doesn't work.
    So my questions are 2:
    1. Do anyone have a solution for me? Or having any thoughts about this?
    2. When switching over to MOLAP the processingtime takes about 30 min. How can i decrease this to a minimum?
    This is all implemented in SSAS 2005.

    I'm getting the exact same error when attempting to drill down on a rolap dimension associated to the cube.  the cube is molap, but the dimension is rolap to reduce processing time (processing dimension using molap spike my 4 core processing to 100%
    for 4 minutes due to all the select DISTINCT on the attributes (about 10)). 
    I too have seen the article about KeyDuplicate but I think this is a different issue.  Anyone figure out the problem?
    Version: SSAS 2012 SP2
    Example of error:
    Server: The current operation was cancelled because another operation in the transaction failed. Errors in the OLAP storage engine: An error occurred while the 'City' attribute of the 'NameAddress'
    dimension from the 'MyDatabase' database was being processed. Errors in the OLAP storage engine: The process operation ended because the number of errors encountered during processing reached the defined limit of allowable errors for the operation.

  • Getting this error when doing a place with oam file

    I am getting the following error when uploading a OAM file: muse_manifest.xml. try again latter.
    Also is there a better way to have videos play in muse?
    Anyone know what this means?
    Thanks.
    Joe

    May i have the screenshot of the exact error ?
    Also for videos you may find this widget helpful : Adobe Muse HTML5 Video Player Widget | MuseThemes.com  details : Adobe Muse Widget | Customizable HTML5 Video Player

  • Error when exporting/importing

    I am using MDM 7.1
    When I export the schema from my Dev system to import into QA I get the following Error:
    "This repository requires additional steps before transport. See the MDS log for details.
    In the log my issue is that I am trying to export an Assignment that includes an expression that uses "look-ups".
    In my Dev system I removed the expression to confirm if this is the issue, once I no longer have expressions with look-ups then it allows me to export the schema. I then tries to import it to QA (since the expressions are not changing I planned on excluding them from the import as a temporary workaround.
    however I get the same error message when trying to import. It seems that I can not export or import with a system that has an assignment with an expression that uses look-ups.
    Is there some config I am missing?

    Hi Brad,
    assignments/validations are a general problem when it comes to Schema exports/imports! What you can do in case there are not too many assignments -  is to delete the assignments and create them new (manually) after you have imported the schema.
    Hope this helps a little.
    Regards,
    Erdal

  • Error while doing confirmation with cor6

    Dear PP gurus,
    I am getting following error while doing confirmation. please suggest.
    "Error while importing from memory QAPO SAPLQEEV
    0400000363"
    Thanks in advance
    Kailash T.

    Hi,
    The structure QAPO relates to Inspection operation records & the program - SAPLQEEV relates to Spec. tables for results recording. Hence would suggest to discuss this with your QM personnel.
    Also was able to find a link which had a same issue, but no solution posted, have a look if it helps in anyway
    http://www.sapfans.com/forums/viewtopic.php?f=27&t=173200
    Also refer to OSS note - 334400. If all the above does not resolve the issue, raise an OSS message with SAP.
    Regards,
    Vivek

  • Runtime Error when doing a Network migration

    I get a Visual C++ Runtime error on DesktopDNA.exe (abnormal program
    termination)
    - It happens when I am doing a network migration (with and without crossover
    connection)
    - The moment I choose Current User or when I choose next after choosing the
    user in Multiple Users
    - It works on other machines, could it be something to do with the user
    account I am trying to migrate?
    Kevin VanSchepen

    Actually it also happens when I don't do a network migration. I choose -
    create - and it errored when I choose Current User.
    >>> Kevin VanSchepen<[email protected]> 3/23/2006 9:37 AM >>>
    I get a Visual C++ Runtime error on DesktopDNA.exe (abnormal program
    termination)
    - It happens when I am doing a network migration (with and without
    crossover
    connection)
    - The moment I choose Current User or when I choose next after choosing the
    user in Multiple Users
    - It works on other machines, could it be something to do with the user
    account I am trying to migrate?
    Kevin VanSchepen

Maybe you are looking for

  • Sharing iPhoto Library from HD on iMac with SSD/HD

    I'm looking for guidance on how to share the iPhoto library among users on a single iMac from the HD drive, as opposed to the SSD.  The shared folder appears to only extend to the SSD and I'd prefer to set up the machine so photo content resides on t

  • What's causing my mac to crash?

    I'm running a Macbook Pro, 2008 model. For about a week, my mac has started to completely freeze up. I'm assuming that this is a crash. The only solution I have found is to hold down the power key for a few seconds until it shuts off. When the startu

  • How to record the screen in snow leopard ?

    how to record the screen in snow leopard ?

  • Need A Relation for PM Tables

    Hi Experts, I got a while developing a ALV report. My Input fields are FUNCTIONAL LOCATION (IFLOT-TPLNR) and PLANT (T001W-WERKS) My output Fields are         TPLNR LIKE IFLOTX-TPLNR,      "Functional Location         PLTXT LIKE IFLOTX-PLTXT,      "Fu

  • UDO Bug in PL31/32 (Can't delete or update data!)

    Hi All Anyone else have problems with Userdefined Objects in SBO2005A PL31 and PL32... I have a Form that show data from the UDO... I'm able to: - Add UDO's - Remove UDO's - Update UDO header data - Add UDO Lines I'm not able to: - Delete lines (I de