11g and Exp - A bugging bug.

Before export (exp) i used to to run this script to recompile all the user objects on 10g.
create or replace
PROCEDURE DBA_Recompile
     p_PInstance_ID               IN NUMBER --     DEFAULT NULL
* Title:      Recompile all User_Objects
* Description:
*     * Recompile materialized views too
AS
     --     Logistice
     v_Message                              VARCHAR2(2000) := ' ';
     v_Result                              NUMBER := 1;     --      0=failure
     v_Buffer                              VARCHAR2(2000);
     v_Line                              VARCHAR(100);
     v_PrintInfo                         CHAR(1) := 'N';     --     Diagnostic
     CURSOR     Cur_Invalids IS
          SELECT     object_id, object_name, object_type
          FROM     user_objects
          WHERE     status <> 'VALID'
            AND     object_type IN ('VIEW', 'PACKAGE', 'PACKAGE BODY', 'FUNCTION',
                                        'MATERIALIZED VIEW', -- arhipac: teo_sarca
                                        'PROCEDURE', 'TRIGGER', 'JAVA CLASS')
          ORDER BY object_type, object_name;
     CURSOR     Cur_Valids (p_id NUMBER) IS
          SELECT     'FOUND'
          FROM     user_objects
          WHERE     status = 'VALID'
            AND     object_id = p_id;
     --  failed compile
     TYPE invalid_tab IS TABLE OF Cur_Invalids%ROWTYPE INDEX BY BINARY_INTEGER;
     invalid_tab_rec invalid_tab;
     count_compiled     PLS_INTEGER;
     valid_text     VARCHAR2(5);
     exec_cursor     PLS_INTEGER := DBMS_SQL.OPEN_CURSOR;
     sql_statement     VARCHAR2(200);
     count_object     PLS_INTEGER := 0;
     v_err          BINARY_INTEGER;
BEGIN
     LOOP
          count_compiled := 0;
          FOR ci IN Cur_Invalids LOOP
               --  not unsuccessfuly compiled yet
               IF NOT invalid_tab_rec.EXISTS(ci.object_id) THEN
                    IF (ci.object_type = 'JAVA CLASS') THEN
                         sql_statement := 'ALTER JAVA CLASS "' || ci.object_name || '" RESOLVE';
                    ELSIF (ci.object_type = 'PACKAGE BODY') THEN
                         sql_statement := 'ALTER PACKAGE ' || ci.object_name || ' COMPILE BODY';
                    ELSE
                         sql_statement := 'ALTER ' || ci.object_type || ' ' || ci.object_name || ' COMPILE';
                    END IF;
                    --  compile
                    BEGIN
                         count_object := count_object + 1;
                         DBMS_SQL.PARSE(exec_cursor, sql_statement, DBMS_SQL.NATIVE);
                    EXCEPTION
                         WHEN OTHERS THEN
                              NULL;
                    END;
                    OPEN Cur_Valids (ci.object_ID);
                    FETCH Cur_Valids INTO valid_text;
                    IF Cur_Valids%ROWCOUNT > 0 THEN
                         IF (v_PrintInfo = 'Y') THEN
                              DBMS_OUTPUT.PUT_LINE('OK: ' || ci.object_type || ' ' || ci.object_name);
                         END IF;
                         count_compiled := count_compiled + 1;
                         CLOSE Cur_Valids;
                         EXIT;
                    ELSE
                         IF (LENGTH(v_Message) < 1950) THEN
                              v_Message := v_Message || ci.object_name || ' ';
                         END IF;
                         IF (v_PrintInfo = 'Y') THEN
                              DBMS_OUTPUT.PUT_LINE('Error: ' || ci.object_type || ' ' || ci.object_name);
                         END IF;
                         invalid_tab_rec(ci.object_id).object_name := ci.object_name;
                         invalid_tab_rec(ci.object_id).object_type := ci.object_type;
                         CLOSE Cur_Valids;
                    END IF;
               END IF; -- not unsuccessfuly compiled yet
          END LOOP;     -- Cur_Invalids
          --  any other to be compiled
          IF count_compiled = 0 THEN
               EXIT;
          END IF;
     END LOOP;     -- outer loop
     DBMS_SQL.CLOSE_CURSOR(exec_cursor);
     --     Print Message
     IF (LENGTH(v_Message) = 1) THEN
          v_Message := 'All valid';
          DBMS_OUTPUT.PUT_LINE(v_Message);
     ELSIF (LENGTH(v_Message) > 80) THEN
          v_Buffer := v_Message;
          DBMS_OUTPUT.PUT_LINE('>');
          WHILE (LENGTH(v_Buffer) > 0) LOOP
               v_Line := SUBSTR(v_Buffer, 1, 80);
               DBMS_OUTPUT.PUT_LINE(v_Line);
               v_Buffer := SUBSTR(v_Buffer, 81);
          END LOOP;
          DBMS_OUTPUT.PUT_LINE('<');
          v_Result := 0;
          DBMS_OUTPUT.PUT_LINE('ERROR');
     ELSE
          DBMS_OUTPUT.PUT_LINE('>' || v_Message || '<');
          v_Result := 0;
          DBMS_OUTPUT.PUT_LINE('ERROR');
     END IF;
<<FINISH_PROCESS>>
     IF (p_PInstance_ID IS NOT NULL) THEN
          --  Update AD_PInstance
          UPDATE     AD_PInstance
          SET Updated = SysDate,
               IsProcessing = 'N',
               Result = v_Result,               -- 1=success
               ErrorMsg = v_Message
          WHERE     AD_PInstance_ID=p_PInstance_ID;
     END IF;
     COMMIT;
     RETURN;
EXCEPTION
     WHEN OTHERS THEN
          DBMS_OUTPUT.PUT_LINE(SQLERRM);
          IF DBMS_SQL.IS_OPEN(exec_cursor) THEN
               DBMS_SQL.CLOSE_CURSOR(exec_cursor);
          END IF;
          IF Cur_Valids%ISOPEN THEN
               CLOSE Cur_Valids;
          END IF;
END DBA_Recompile;• Q1: On my 11gR2, after running this script, the database becomes unstable for backup. And i cannot take backup anymore using 'exp' command. following error occurs (last few lines).
. exporting synonyms
. exporting views
EXP-00056: ORACLE error 1455 encountered
ORA-01455: converting column overflows integer datatype
EXP-00000: Export terminated unsuccessfully
adding: ExpDat.dmp(in = 488030208) (out= 26855576)(deflated 94%)
adding: ExpDat.log(in = 111665) (out= 6645)(deflated 94%)the message looks like some old days bug: EXP-00056: ORACLE error 1455 encountered
• Q2: can i skip this script to run, before the backup using 'exp'
w\

Are you using the 10g client to perform the export with?
If so, then this is a recognised bug:
View the following metalink document for more info
Exporting Schema In 11.2 Database With 10g Client Gives Ora-01455 [ID 1083330.1]

Similar Messages

  • BUG for sort column with Oracle 11g and APEX 3.2

    I have BUG in Report region(Oracle 11g and APEX 3.2). if i have more than 746 Char for my column's value and i want to sort them, this error appear
    Report error :
    ORA-00910: specified length too long for its datatype.
    But in an other environement in Oracle 10g and apex 3.2, with the same data. I have no BUG.
    Somebody have an idea for a possible solution to this problem???

    Again, I may just be wasting your time...but if I have XDB problems...especially with the password, I do the following:
    1. Change your working directory to $ORACLE_HOME/apex.
    2. Start SQL*Plus and connect to the database where Oracle Application Express is installed as SYS.
    3. Run apxconf.sql
    > @apxconf
    4. When prompted, enter a password for the Oracle Application Express Admin account.
    5. When prompted, enter the port for the Oracle XML DB HTTP server. (default port being, of course,8080).
    6. Unlock the ANONYMOUS account
    > ALTER USER ANONYMOUS ACCOUNT UNLOCK;
    7. If needed, I do the SETHTTPPORT command mentioned before...
    Since I'm using the Oracle 11g, with embedded PL/SQL server, I have no idea if this is the same for 10g us OHS?
    Hope that helps!
    KSL.

  • Does Oracle XE 10g or 11g  have supported patches/bug fixes

    Does Oracle XE 10g or 11g  have supported patches/bug fixes?

    XE isn't patch-able, unfortunately- eg. in the section ...Major Features Not Included at http://docs.oracle.com/cd/E17781_01/license.112/e18068/toc.htm#XELIC116 a "patch set" is one of the "not included" items
    One could install one of the full release editions, get it patched, and upgrade an XE instance with the patch-able edition, but access to patches requires a support agreement.

  • 11g on linux-x86 Bugs

    I tried to enable FRA & Flashback on 11g and start getting errors while taking backup with RMAN , i upgraded to 11.1.0.7 still getting the same error....any suggestion
    channel ORA_DISK_1: backup set complete, elapsed time: 00:00:01
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03009: failure of backup command on ORA_DISK_2 channel at 12/01/2008 12:32:59
    ORA-00600: internal error code, arguments: [krboReadSpHeader_noheader], [0], [29], [], [], [], [], [], [], [], [], []

    As always ORA-00600 internal errors should be handled by Oracle Support. First step could be the ORA-00600 lookup tool on metalink,but there are no entries for this specific first argument. It can't be a general bug,I have several 11g databases on Linux running. Hopefully your Linux version is a supported one.
    Werner

  • ITunes 10.4 and Windows 7 bug thread

    I thought I would start an entire thread devoted to iTunes 10.4 and Windows 7 bugs since there are MANY people reporting various issues and may not know about all of them. Hopefully this will combine a list of all bugs for reference and help others. So far, most of this effects Windows 7 64 bit, but some are reporting issues under 32 bit too.
    I have spoken with both Apple Care and a higher level tech at iTunes support. The iTunes support tech said they were "looking into all reported bugs and are aware of issues with version 10.4, especially under Windows 7. They encourage others to report their bugs to iTunes support so they can work on this and find all the issues.
    KNOWN BUGS:
    Album Art copy/paste broken - A bug that causes copy/pase from clipboard where album art is not displayed in the info tab as before. Some have reported success by dragging the image file over to it vs copy/paste method but it is still very much spotty and a known bug.
    iTunes store not working - Some have been effected with the iTunes store not working properly for them. Personally I don't have a problem but this has been for some.
    "Purchases" link not working in iTunes - When you click on "Purchases" link on the right column, all your purchases are missing and do not show up. This includes, music, movies, apps, etc. This is also a known bug and one that I have personally. Works fine in iTunes 10.3 for Windows 7 64bit and also works fine under both Snow Leopard and Lion OS.
    Sync issues - Some have reported syncing issues since upgrading to 10.4 iTunes on Windows 7. This is a bit spotty as well as I have no trouble but there are others that have reported issues.
    Solutions:
    For now, the only way to fix this is to use iTunes 10.4 under Snow Leopard or Lion OS. Also, you can uninstall (not repair) 10.4 and install 10.3 again which should work.

    You are correct and I wish that I had known this before spending 4 days and a lot of trouble going over this with both Apple Care and iTunes support. They had me jumping through hoops and didn't know anything until it was finally escalated. Only then did I get a vague response like I mentioned in the first post. It's troubling to me how a simple response from anyone there could've just said we know about this and they are bugs in 10.4 causing this.
    There are other issues too as you point out with the syncing and crashing. Anyway, hopefully others will find information here more useful than calling Apple for help. Not much we can do now except roll back to 10.3 for those that kept it and hope also they can updated Apple Application Support component.

  • Time and date reset bug

    hu guys, recently ive been experiencing a time and date reset bug, sometimes when i open up my computer it says something like your date is set to (i forgot the exact date but the year is 2001) so i change it back to the correct time and date, im not sure how i got the bug, can anyone help me fix this problem, its beginning to be annoying. thanks in advance!!

    Sherwin,
    Those symptoms indicate that you need to get your backup (PRAM) battery replaced.If your computer does not retain parameter RAM (PRAM) settings when it is turned off, this generally indicates that the battery needs to be changed.;~)

  • Region and dialog return bug in JDEVELOPER 11.1.1.1.0

    SomeOne know hot to fix this bug...??
    http://adfbugs.blogspot.com/2009/08/region-and-dialog-return-bug.html
    ADF_FACES-60058: Attempt to re-register component with different model.
    Cause: An IllegalStateException occurred.
    Action: Contact Oracle Support Services.
    Level: 2
    Type: INCIDENT_ERROR
    Impact: Logging
    I have trying and trying and trying to solve this but didnt get a fix....

    John Stegeman wrote:
    The comments in that blog seem to indicate it was fixed in 11.1.1.2 - so two choices for you:
    1). upgrade
    2). File a support request and ask them to backport the fix.
    Since there is a bug filed with support, you can just contact them to see what the current status is.
    Johnas i heard from August 1, 2011 Oracle has stopped supporting 11.1.1.1.0 ......only 11.1.1.2 or later is supported (or may be they told us this to FORCEFULLY upgrade :P)
    so upgrade would be better choice.
    Zeeshan

  • [svn:osmf:] 12425: Extending unit tests, and fixing a bug.

    Revision: 12425
    Revision: 12425
    Author:   [email protected]
    Date:     2009-12-03 04:22:59 -0800 (Thu, 03 Dec 2009)
    Log Message:
    Extending unit tests, and fixing a bug.
    Modified Paths:
        osmf/trunk/framework/MediaFramework/org/osmf/metadata/CompositeMetadata.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/metadata/TestCompositeMetadata.as

  • [svn:osmf:] 10364: Latest updates to the Dynamic Streaming sample app , and a few bug fixes.

    Revision: 10364
    Author:   [email protected]
    Date:     2009-09-17 14:49:03 -0700 (Thu, 17 Sep 2009)
    Log Message:
    Latest updates to the Dynamic Streaming sample app , and a few bug fixes.
    Modified Paths:
        osmf/trunk/apps/samples/framework/DynamicStreamingSample/.project
        osmf/trunk/apps/samples/framework/DynamicStreamingSample/src/DynamicStreamingSample.mxml
        osmf/trunk/framework/MediaFramework/org/openvideoplayer/composition/ParallelSwitchableTra it.as
    Property Changed:
        osmf/trunk/libs/adobe/NetMocker/
        osmf/trunk/libs/adobe/StrobeUnit/

    Thanks 
    Now we can call and game at the same time
    Life is a train. You can choose your path choice, but you can not choose when the track will end...
    Where will the track take you?
    If my post has answered your question. Please mark it as an answer.

  • Early today Alt, Ctr and Click and drag changed the brush size. Now it makes the move tool work. Anyone have this problem. I think Adobe had an update and put a bug in the program.

    Early today Alt, Ctr and Click and drag changed the brush size. Now it makes the move tool work. Anyone have this problem. I think Adobe had an update and put a bug in the program.

    Which version of photoshop and operating system are you using?
    windows:
    Alt + right click + drag left or right
    mac:
    Control + Option + left click + drag left or right

  • Lens corrections and adjustment brush bug

    First of all, congratulations for a spectacular implementation of these seemingly "conflicting" (at least in a non-destructive workflow) features.
    Here, I got a fish-eye image where I want to paint the sky (say I want to make it darker). For the beginning, I just define the borderline between the earth and the sky.
    Apply a lens correction and you get this:
    Fantastic! The brush stroke got distorted almost perfectly. "Almost", because if you make a single brush click, painting a circle, it doesn't get distorted with lens corrections, turning into an ellipse (though the spot removal circles do). Instead all brush path point coordinates get recalculated along with the radius of the brush at each particular location. This works very well in real world even for extreme examples like de-fisheyeing. For rectilinear lenses, the difference is imperceptible.
    And now, some bugs/limitations.
    If you use a large brush, say I want to fill the whole sky in this example, things get a little more complicated.
    Turn on lens corrections and...
    The thick stroke gets distorted in a way that fill almost the entire image. This happens on extreme debarreling only. For normal lenses, it's a non-issue.
    Also, sometimes I get a strange artifact in preview only. The exported image doesn't have this solid rectangle:
    And a final, smaller, issue: for strong corrections like de-fisheye-ing, the brush pin easily gets lost outside the image area after you apply lens corrections.

    While we do the best we can mapping the local corrections, it is not perfect if you adjust the lens corrections after applying them, as you can see in some of your extreme examples.
    In the future, when processing new images, if you apply the lens corrections first, and then the local corrections, you completely avoid these remapping issues.

  • [svn:fx-trunk] 10140: DropDownList mouseWheel and arrow navigation bug fixes

    Revision: 10140
    Author:   [email protected]
    Date:     2009-09-10 17:29:24 -0700 (Thu, 10 Sep 2009)
    Log Message:
    DropDownList mouseWheel and arrow navigation bug fixes
    http://bugs.adobe.com/jira/browse/SDK-22604 - awkward mouse wheel behavior on Spark DropDownList
    Added code to DropDownController to close the dropDown on a mouseWheel scroll unless the mouseWheel scrolling occurred over the dropDown and the dropDown handled the event. For example, if an opened dropDown had a Scroller and the user uses the mouseWheel scroller while over the dropDown, the list should scroll and the dropDown should remain open. But if the user scrolls outside of the dropDown, then the controller should close the dropDown.
    Also discovered that using the keyboard navigation keys was changing the dropDown selection and scrolling the DropDownList's parent container. The fix is to call event.preventDefault if we have handled the navigation key event. 
    QE notes: None
    Doc notes: None
    Bugs: SDK-22604
    Reviewer: Hans
    Tests run: DropDownList
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-22604
        http://bugs.adobe.com/jira/browse/SDK-22604
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/DropDownList.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/DropDownCont roller.as

  • Flash Player is Faulty and Riddled with Bugs

    Adobe Flash Player 10 is faulty and riddled with bugs.
    Those are not my words but it is what I was told by the NFL (National Football League) as many of their customers are experiencing extreme difficulties in using NFL content and services that utilise flash.
    http://www.youtube.com/watch?v=SOu8edrbb4I
    It is not just myself who is having problems with Flash but a multitude of people.
    Adobe have released a faulty bug ridden product that doesn't work properly and they have effectively shut down half the web which is flash based in the process preventing many multitudes of people around the globe from using numerous websites.
    Are you listening Adobe? You caused this problem. When are you going to fix it?
    John

    John10012 wrote:
    Are you listening Adobe? You caused this problem. When are you going to fix it?
    First of all, you are not addressing Adobe here - this is a user-to-user forum, and we are all just users here.
    Second, if you need help with your Flash Player installation, give us some facts, and someone will help you.  (That is, if you want some help, and not just complain.)
    I have watched that long and unnecessary video (giving us the error message would have been much easier), and the problem comes from incorrect registry permissions on your system.  It can easily be fixed by following the instructions on this article http://kb2.adobe.com/cps/494/cpsid_49419.html

  • [svn:fx-trunk] 5114: Fix FxRadioButton doc bug and fix the bug fix I messed up yesterday.

    Revision: 5114
    Author: [email protected]
    Date: 2009-02-27 12:50:47 -0800 (Fri, 27 Feb 2009)
    Log Message:
    Fix FxRadioButton doc bug and fix the bug fix I messed up yesterday.
    QE Notes: mustella gumbo/RadioButtons passed
    Doc Notes:
    Bugs: SDK-19475, SDK-19531
    Reviewers:
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-19475
    http://bugs.adobe.com/jira/browse/SDK-19531
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxRadioButton.as

  • Few questions about OWB migration 10g---- 11g and UIODs

    I am curretly migrating OWB repository from 10g to 11g.
    Both repositories are on the same database.
    We just have one single Project in our Repository. It is actually(preinstalled) MY_PROJECT renamed into something else. So it has the UOID of the "default" MY_PROJECT but of course, physical and business names are different.
    Because we renamed MY_PROJECT, complications occured when we first tried to do the repository upgrade the recommended way, with repository assistant. During the upgrade processes , the error came that the objects with same UOIDs but different names exist.
    Obviously, MY_PROJECT from the 10g repository collided with the new, preinstalled, MY_PROJECT in the (almost) empty 11g repository/workspace.
    Also, MY_PROJECT in 11g workspace has exactly the same UOID as the one created in 10g repository.
    I was told by Oracle support that this was a bug-but they do not see it as high priority, so we had to do workaround --the migration of the repository on 11g.
    Now my first Question: Was it completely insane to use MY_PROJECT for your actual ongoing Project? We never had any other problem with this constallation.I also noticed in forums that people indeed use MY_PROJECT for their work.
    The second question: Has anybody , ever, seen the same problem, when trying to upgrade to 11g ?
    The migration procedure is as follows:
    -install 11g Workspace with Repository Assistant
    -Export locations and data from 10g repository
    -Import locations and data in 11g repository- thé update option -matching on UOID..so we do not get problem with MY_PROJECT
    -register locations in11g repository
    -deploy all mappings and workflows
    Now, this all works fine..and our new 11g repository runs without problem..
    I am still puzzled by few things :
    New 11g repository is almost empty apart from MY_PROJECT and DEFAULT_CONFIGURATION. Now, MY_PROJECT in 11g has the same UOID as in oracle 10. But DAFAULT_CONFIGURATION in 11g has different UOID from DAFAULT_CONFIGURATION in 10g. It is always the same UIOD for every new 11g installation (I've upgraded repository on many databases).
    Now 3rd question: Is there any particular reason why DEFAULT_CONFIGURATION  has different UOID in 11g and MY_PROJECT hast the same UOID ? Is there any logic behind it -that I fail to grasp ?
    Another thing. I said that I am importing complete Project in the new repository with update option with matching on UIOD. I should get a problem with DAFAULT_CONFIGURATION, I thought, since it is in the full export of the Project and DEFAULT_CONFIGURATION has different UOID than in 11g repository.
    But I did not get the problem at all.Default Configuration was simply skipped during the import - visible from the import log.
    Therefore 4th question : Why didnät OWB try to import DEAFULT_CONFIG? Is it "internal" object and as such cant't be changed ?
    The reason I am so obsessed with UOIDs is that we have automated release procedure (between development, test and production repositores) which is based on comparing UOIDs.
    Therefore a s slight trace of concearn on my side, because the DEAFULT CONFIG now has different UOIDs than before. But on the other side, we just propagate mappings and workflows between repositories - I do not see why the default config should matter here .
    Thank very much in advance for any answers/suggestions/ideas and comments!
    Edited by: Reggy on 27.01.2012 07:12
    Edited by: Reggy on 27.01.2012 07:12

    I am curretly migrating OWB repository from 10g to 11g.
    Both repositories are on the same database.
    We just have one single Project in our Repository. It is actually(preinstalled) MY_PROJECT renamed into something else. So it has the UOID of the "default" MY_PROJECT but of course, physical and business names are different.
    Because we renamed MY_PROJECT, complications occured when we first tried to do the repository upgrade the recommended way, with repository assistant. During the upgrade processes , the error came that the objects with same UOIDs but different names exist.
    Obviously, MY_PROJECT from the 10g repository collided with the new, preinstalled, MY_PROJECT in the (almost) empty 11g repository/workspace.
    Also, MY_PROJECT in 11g workspace has exactly the same UOID as the one created in 10g repository.
    I was told by Oracle support that this was a bug-but they do not see it as high priority, so we had to do workaround --the migration of the repository on 11g.
    Now my first Question: Was it completely insane to use MY_PROJECT for your actual ongoing Project? We never had any other problem with this constallation.I also noticed in forums that people indeed use MY_PROJECT for their work.
    The second question: Has anybody , ever, seen the same problem, when trying to upgrade to 11g ?
    The migration procedure is as follows:
    -install 11g Workspace with Repository Assistant
    -Export locations and data from 10g repository
    -Import locations and data in 11g repository- thé update option -matching on UOID..so we do not get problem with MY_PROJECT
    -register locations in11g repository
    -deploy all mappings and workflows
    Now, this all works fine..and our new 11g repository runs without problem..
    I am still puzzled by few things :
    New 11g repository is almost empty apart from MY_PROJECT and DEFAULT_CONFIGURATION. Now, MY_PROJECT in 11g has the same UOID as in oracle 10. But DAFAULT_CONFIGURATION in 11g has different UOID from DAFAULT_CONFIGURATION in 10g. It is always the same UIOD for every new 11g installation (I've upgraded repository on many databases).
    Now 3rd question: Is there any particular reason why DEFAULT_CONFIGURATION  has different UOID in 11g and MY_PROJECT hast the same UOID ? Is there any logic behind it -that I fail to grasp ?
    Another thing. I said that I am importing complete Project in the new repository with update option with matching on UIOD. I should get a problem with DAFAULT_CONFIGURATION, I thought, since it is in the full export of the Project and DEFAULT_CONFIGURATION has different UOID than in 11g repository.
    But I did not get the problem at all.Default Configuration was simply skipped during the import - visible from the import log.
    Therefore 4th question : Why didnät OWB try to import DEAFULT_CONFIG? Is it "internal" object and as such cant't be changed ?
    The reason I am so obsessed with UOIDs is that we have automated release procedure (between development, test and production repositores) which is based on comparing UOIDs.
    Therefore a s slight trace of concearn on my side, because the DEAFULT CONFIG now has different UOIDs than before. But on the other side, we just propagate mappings and workflows between repositories - I do not see why the default config should matter here .
    Thank very much in advance for any answers/suggestions/ideas and comments!
    Edited by: Reggy on 27.01.2012 07:12
    Edited by: Reggy on 27.01.2012 07:12

Maybe you are looking for