Error migrating Discoverer preferences...

Hi friends,
I'm in the middle of a Discoverer migration (4i to 10.1.2 , Apps version: 11.5.10.2 DB: 9.2.0.8, OS: Red Hat Linux 2.1)
I'm migrating the preferences following the 313418.1 Metalink note. (Step 5)
Following the Discoverer Configuration Guide 10gR2, There, in appendix B.7.1 it says that command is:
> <ORACLE_HOME_2>/discoverer/util/dis51pr -migrate -from 102
I tried to execute and the result is:
u01/erpbat/aeaora/disco10/bin/dis51pr: error while loading shared libraries: libTAO_PortableServer.so.1.3.1: cannot open shared object file: No such file or directory
I've looked for libTAO_PortableServer.so.1.3.1 file, and I've found it under
[appldes:]:/u01/erpbat/aeaora/disco10/discoverer/lib directory.
(my ORACLE_HOME is /u01/erpbat/aeaora/disco10/)
I tried to execute the dis51pr file under that directory, but with the same result...
Any ideas?
What is curious is that in the guide, the dis51pr file seems to be placed in ORACLE_HOME/discoverer/util directory... but ,it's not ther, it's in
ORACLE_HOME/bin.. I don't know if it's important...)
Any ideas?
Thanks,
Jose L

Hi again,
after solved that point... I thinked I'd finished the Discoverer installation (just neeed to create a script to set the appropiate ORACLE_HOME at startup)
I had run opmnctl startall and opmnctl stopall with success (to test that all was OK..), but when I exit.. and enter in session again... then it didn't work... :-(
I stopped all apps services and all discoverer services..
I started apps services with success.. but when I tried to execute opmnctl startall again.. it failed ... (don't know why now! )
Relevant information about that:
Error:
ias-component/process-type/process-set:
Discoverer/PreferenceServer/PreferenceServer
Error
--> Process (pid=12309)
failed to start a managed process after the maximum retry limit
Log:
/u01/erpbat/aeaora/disco10/opmn/logs/Discoverer~PreferenceServer~1
opmnctl status
------------------------------------------------+---------
ias-component | process-type | pid | status
------------------------------------------------+---------
LogLoader | logloaderd | N/A | Down
dcm-daemon | dcm-daemon | N/A | Down
WebCache | WebCache | 21691 | Alive
WebCache | WebCacheAdmin | 21645 | Alive
OC4J | home | 21652 | Alive
OC4J | OC4J_BI_Forms | 21653 | Alive
HTTP_Server | HTTP_Server | 21657 | Alive
Discoverer | ServicesStatus | 21658 | Alive
Discoverer | PreferenceServer | N/A | Down
DSA | DSA | N/A | Down
So the error seems to be with PreferenceServer...
I've found a note in metalink with exactly the same error:
Subject: Discoverer Preferenceserver Process Does Not Start on 10g Install -
     'failed to start a managed process after the maximum retry limit' Error
Doc ID: Note:312252.1
but in this note .. it says that the cause is the etc/hosts file...
I don't think so because that file wasn't be changed since June... (and... this worked in the last execution) so... I have no ideas for the moment...
Any idea?
(Another bit problem, I don't know if it's in relation is that... I can't access through 7777 port to discoverer from my PC. That's the port chosen by default installation to HTTP Server.. and I changed in httpd.conf and in Profile options..)
Thanks,
Jose

Similar Messages

  • "There was an error in iCloud preferences." System Preferences effor

    I just did a clean install of 10.10 Yosemite.
    I migrated my user to the new, clean install.
    When I launch the system preferences, I can not open the iCloud preference pane.
    I get a pop up window saying "There was an error in iCloud preferences."
    I have google and searched for a fix. I found a couple of ideas, but none of them worked.
    Can somebody help me?

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen. Click the Clear Display icon in the toolbar. Then take the action that you're having trouble with. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name, may appear in the log. Anonymize before posting.

  • ERROR at line 1: ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine ORA-20000: Oracle Text error: DRG-10700: preference does not exist: global_lexer ORA-06512: at "CTXSYS.DRUE", line 160 ORA-06512: at "CTXSYS.TEXTINDEXMETHODS", line 366

    database version 11.2.0.4
    rac two node
    CREATE INDEX MAXIMO.ACTCI_NDX3 ON MAXIMO.ACTCI
    (DESCRIPTION)
    INDEXTYPE IS CTXSYS.CONTEXT
    PARAMETERS('lexer global_lexer language column LANGCODE')
    ERROR at line 1:
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-20000: Oracle Text error:
    DRG-10700: preference does not exist: global_lexer
    ORA-06512: at "CTXSYS.DRUE", line 160
    ORA-06512: at "CTXSYS.TEXTINDEXMETHODS", line 366

    Like the error message says, you don't have a global_lexer.  So, you need to create a global_lexer and that lexer must have at least a default sub_lexer, then you can use that global_lexer in your index parameters.  Please see the demonstration below, including reproduction of the error and solution.
    SCOTT@orcl12c> -- reproduction of problem:
    SCOTT@orcl12c> CREATE TABLE actci
      2    (description  VARCHAR2(60),
      3      langcode     VARCHAR2(30))
      4  /
    Table created.
    SCOTT@orcl12c> CREATE INDEX ACTCI_NDX3 ON ACTCI (DESCRIPTION)
      2  INDEXTYPE IS CTXSYS.CONTEXT
      3  PARAMETERS('lexer global_lexer language column LANGCODE')
      4  /
    CREATE INDEX ACTCI_NDX3 ON ACTCI (DESCRIPTION)
    ERROR at line 1:
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-20000: Oracle Text error:
    DRG-10700: preference does not exist: global_lexer
    ORA-06512: at "CTXSYS.DRUE", line 160
    ORA-06512: at "CTXSYS.TEXTINDEXMETHODS", line 366
    SCOTT@orcl12c> -- solution:
    SCOTT@orcl12c> DROP INDEX actci_ndx3
      2  /
    Index dropped.
    SCOTT@orcl12c> BEGIN
      2    CTX_DDL.CREATE_PREFERENCE ('global_lexer', 'multi_lexer');
      3    CTX_DDL.CREATE_PREFERENCE ('english_lexer', 'basic_lexer');
      4    CTX_DDL.ADD_SUB_LEXER ('global_lexer', 'default', 'english_lexer');
      5  END;
      6  /
    PL/SQL procedure successfully completed.
    SCOTT@orcl12c> CREATE INDEX ACTCI_NDX3 ON ACTCI (DESCRIPTION)
      2  INDEXTYPE IS CTXSYS.CONTEXT
      3  PARAMETERS('lexer global_lexer language column LANGCODE')
      4  /
    Index created.

  • Migrating Discoverer reports to Cognos

    I want to migrate Discoverer 10g reports to Cognos. Please give me the steps to do this.

    I've already searched a lot and not able to find any tool. You are right. But it could be very helpful if anybody could suggest some methods to achieve the goal. I'm trying to convert the .eex file into .xml format, is their any tool or way to do the same. Like i want to export the metadata into xml format which i will try to import into Cognos.
    Please help.
    Thanks
    Sankar

  • Photo frame error loading the preference bundle. what should I do?

    I can't open the settings for photo frame , it only says , error loading the preference bundle for photo frame" please help

    What was the complete wording of the error message? Usually an error number is also given,

  • Oracle Text Index Error - DRG-10700: preference does not exist: CTXSYS.DEFA

    Hi we are having a Oracle 11g db.And we have installed CTX SYS package and provided the grants to the required schema.
    But while creating the oracle text index, following error is thrown:
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-20000: Oracle Text error:
    DRG-10700: preference does not exist: CTXSYS.DEFAULT_LEXER
    ORA-06512: at "CTXSYS.DRUE", line 160
    ORA-06512: at "CTXSYS.TEXTINDEXMETHODS", line 365
    Following grnats are given :
    GRANT EXECUTE ON CTXSYS.CTX_DDL TO <schema_name>;
    GRANT APPOWN TO <schema_name>;
    GRANT CTXAPP TO <schema_name>;
    I have verifyed the ctxsys.CTX_PREFERENCES view which is having an entry as :
    SELECT PRE_OWNER, PRE_NAME
    FROM CTXSYS.CTX_PREFERENCES
    WHERE PRE_NAME = 'DEFAULT_LEXER';
    The Result is :
    PRE_OWNER     PRE_NAME
    SYS     DEFAULT_LEXER
    Can you please assist if there is a way to update the permission on this DEFAULT_LEXER preference to set the PRE_OWNER as CTXSYS ?
    Thanks

    That's odd. If I run the same query I see:
    SQL> SELECT PRE_OWNER, PRE_NAME
      2  FROM CTXSYS.CTX_PREFERENCES
      3  WHERE PRE_NAME = 'DEFAULT_LEXER';
    PRE_OWNER                      PRE_NAME
    CTXSYS                         DEFAULT_LEXERAre all your defaults like thsi? What do you see if you run
    select pre_owner, pre_name from ctxsys.ctx_preferences where pre_name like 'DEFAULT%';
    It would be easy enough to update the underlying table DR$PREFERENCES to fix the owner, but who knows what else might be wrong.
    Has this database been updated from a 9i installation by any chance?

  • "There was an error loading the preference bundle for accessibility" it appears when i open my accessibility, that is why i cant use my assistive touch

    "There was an error loading the preference bundle for accessibility" it appears when i open my accessibility

    We had the same issue after applying the SP2 & August CU. we open the case with MSFT and get the same resolution as you mentioned.
    I blog about this issue and having the office reference.
    Later MSFT release the Hotfix for this on December 10, 2013 which i am 100% positive should be part of future CUs.
    So if you apply the April CU then you will be fine.
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • Error migrating SQL Server 2000 database to Oracle.

    Hi,
    I am new in SQL Developer.
    I read most of the help manuals available on the net.
    I am able to create connections to both SQL Server and Oracle database.
    I am also able to create the migration repository on the Oracle database.
    SQL server connection - TestSQL
    Oracle database connection - TestOracle
    Migration Repository - Migration_Repository.
    Here is the problem am facing:
    When I start Migrate to Oracle wizard, by right clicking the TestSQL database, I followed all the required steps and enter the necessary information. -
    It starts creating the project - say, TEST but after that it gave the following error:
    Migration actions have failed. Check the migration report for more details. : ORA-01400: cannot insert null into ("MIGRATIONS"."MD_PROJECT_ID").
    Please help.

    Thanks for your reply.
    You are correct, there were some permission missing on the migration repository user.
    I have given permissions and it worked fine.
    but I can say that required permission mentioned in other posts and blogs on the Internet are not sufficient.
    One has to provide more admin priviligies to this user.

  • LCM: Migration via files - error msg "error.migration.source.option,null"

    Not working. Error msg: "error.migration.source.option,null"
    Export to files is successfull but when trying to import the error message is shown.
    Anyone have a remedy?

    Hi,
    I got the same error a couple of times and solved it by restarting Foundation Services. Not the best solution but it worked for me.
    Hope it helps.
    //Regards
    C

  • Migrate Mail Preferences from Mountain Lion to Mavericks & Sync w/iCloud

    1. How do you migrate Mail Preferences, specifically Signatures and Rules, from OS 10.8.5 (Mac Pro) to OS 10.9.5 (MacBook Pro)?
    2. Why won’t Signatures and Rules upload/sync with iCloud Mail?
    Migration Assistant doesn’t work and I’ve already spent a week total trying to resolve this issue once and for all.

    1. How do you migrate Mail Preferences, specifically Signatures and Rules, from OS 10.8.5 (Mac Pro) to OS 10.9.5 (MacBook Pro)?
    2. Why won’t Signatures and Rules upload/sync with iCloud Mail?
    Migration Assistant doesn’t work and I’ve already spent a week total trying to resolve this issue once and for all.

  • Error while migrating discoverer Workbook

    Hi All,
    I am migrating Business Area and Work book from one instance(QA) to another(Production) DB instance.
    I have successfully did export of business area and import in production instance.
    For workbook migration I have followed the below mentioned steps.
    1) Open QA instance and open the required workbook.
    2) Do "Save As" of the workbook to local machine as ".DIS".
    3)Then Login to Prodcution Open the workbook from the local machine. But in that case it gives following error
    " Cannot join tables.Item dependency "" not found in EUL. "
    "Attempt to open workbook failed" Anyone can help me to solve this issue. Please.
    Thanks
    Alaka

    Hi Janet
    Here are some more notes from my private collection of tips and tricks:
    Discoverer workbooks are very picky when it comes to opening up against an end user layer. Basically, here is what happens:
    All EUL objects have an ID number and a name. When Discoverer saves a workbook it saves both the ID number and the name of every essential object (business area, folders, items and joins) that is used within the workbook. The next time Discoverer opens the workbook it looks at the ID numbers of the objects and tries to find them in the EUL. If it cannot find an object by its ID number it tries to locate it using the object's name. If an object cannot be located either by its ID number or by its name you will get the dreaded Item Dependency error.
    OK, having got that out of the way, if you delete a folder from within the EUL and re-create it you will lose the ID number of the folder and all of its associated objects (items and joins). The only way Discoverer will be able to open this workbook now is if everything within the folder is named EXACTLY the same way (including underscores and casing of the name), otherwise the workbook will not open. Discoverer will report the error message that you are seeing.
    So what can you do? Well, you need to have some way of finding out what the old folder name(s), item names and join names were. Also, you need to make sure that all items that were not hidden are not hidden now. There is no need to worry about the names of hierarchies or lists of values. These are not stored within a workbook and are only hooked in at runtime.
    Seems like you have to somehow painstakingly determine what all of the item and join names were in your old folder(s) and re-create them 100% the same way in the new folder(s). By the way, when the workbook gives you the error message does it also give you an opportunity to assign al alternative item to the item that it can no longer find a value for? This may work but, in my experience, usually doesn't!! It only works if the missing dependency is an item, it won't work if the error is being caused because you have got a join name wrong. Unfortunately, joins MUST have the same name exactly otherwise there is just no way to open the workbook.
    Best wishes
    Michael

  • Permissions error messages when migrating presets/preferences (Mac)

    When the program starts it asks if I want to take the preferences from CS5.1 and migrate to 6 but when I say yes it gives me all kinds of error messages that the files are locked and when I quit it says it can't say my preferences
    Would you like to migrate presets from the following versions?
    Line: 212 - An error occurred when migrating the preset from...
    ~/Library/Preferences/Adobe Photoshop CS5.1 Settings/WorkSpaces/KD
    to...
    ~/Library/Preferences/Adobe Photoshop CS6 Settings/WorkSpaces/KD
    Line: 215 - An error occurred when migrating the preset from...KD
    Administrative privileges are required to migrate these presets.
    error messages - Line: 215 - An error occurred when migrating the preset from...Keith
    When quiting PS - error message - Could not save Preferences because the file is locked, you do not have necessary access permissions, or another program is using the file. Use the ‘Get Info’ command in the Finder to ensure the file is unlocked and you have permission to access the file. If the problem persists, save the document to a different file or duplicate it in the Finder.

    I'm sure a lot of work went into this feature, but...
    Automated upgrades are always highly called-for but in practical terms almost never good to do.
    Trying to save a little time in setting a brand new application up seems a little silly, given that it's not a given that all your preferences and settings from the old version will be directly applicable to the new version, and an automated transfer could copy some problems latent in your old settings to the new version.
    Why not just install the new version afresh, then go through and review all the settings and make appropriate choices?  You need to get familiar with the new version anyway.
    Then, if later you find out something's missing or seems different, you can always fire up the old version and note or save the settings and make the same settings in the new version.
    This is more years of experience than I care to admit talking.
    -Noel

  • Out of Memory Error in Discoverer Plus

    Has anyone run into and found a solution for 'OutofMemory error occured'?
    The java console shows -
    java.lang.OutOfMemoryError
         <<no stack trace available>>
    I've done some searching on Metalink and have opened an SR which pointed us to a general what-to-do-for-performance-issues doc. So far we've patched our 10.1.2.3 Discoverer Plus instance up to the latest CP7 but the issue persists.
    I'm curious to see if anyone has encountered this error and what they did to fix it.
    -Tracy

    Hi
    Well it's certainly possible that the local query governor settings on his machine have been adjusted and it's also possible that his profile is also set in Admin.
    As the Admin, try logging in to edit his account using Tools | Privileges. Then look at the query governor settings and remove any restrictions that you might see.
    On his side, get him to log into Plus and use Tools | Options to see if any restrictions are set.
    Next, can he run simple queries on his machine.
    And, can other users run the large query he wants to run?
    We need to find out for sure whether teh fault is with his machine or with his account. If it turns out to be the account and that he is barred everywhere then it sounds like somehow that memory settings have been defined for him and for him only.
    The next step is quite tricky so take a backup first. Get yourself a copy of the .reg_key.dc file which you will find in the Discoverer folder on the application server. You can edit this file with any text editor such as Wordpad. You're going to have to search this file and see if you can find any entries in there that specifically relate to your user. Any that you find please let me know. It's also very important not to be editing the original file while the system is up as this is where all of the default, system and user preferences are stored.
    Best wishes
    Michael

  • SAP ECC error:'Migration Monitor' exits with error code 103.

    Hi All,
    I am doing SAP ECC installation for windows 32 bit with MAXDB as backend.
    I am stuck at the import ABAP.Getting error
    ERROR 2008-08-08 16:10:53
    CJS-30022  Program 'Migration Monitor' exits with error code 103. For details see log file(s) import_monitor.java.log, import_monitor.log.
    1) imort_monitor.java.log-->contains
    java version "1.4.2_12"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_12-b03)
    Java HotSpot(TM) Client VM (build 1.4.2_12-b03, mixed mode)
    Import Monitor jobs: running 1, waiting 0, completed 18, failed 0, total 19.
    Loading of 'SAPVIEW' import package: ERROR
    Import Monitor jobs: running 0, waiting 0, completed 18, failed 1, total 19.
    2)import_monitor.log
    ERROR: 2008-08-08 16:10:36 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPVIEW' import package is interrupted with R3load error.
    Process 'D:\usr\sap\EC6\SYS\exe\uc\NTI386\R3load.exe -i SAPVIEW.cmd -dbcodepage 4103 -l SAPVIEW.log -nolog -c 0' exited with return code 2.
    For mode details see 'SAPVIEW.log' file.
    Standard error output:
    sapparam: sapargv( argc, argv) has not been called.
    sapparam(1c): No Profile used.
    sapparam: SAPSYSTEMNAME neither in Profile nor in Commandline
    INFO: 2008-08-08 16:10:52
    All import packages are processed.
    WARNING: 2008-08-08 16:10:52
    1 error(s) during processing of packages.
    INFO: 2008-08-08 16:10:52
    Import Monitor is stopped.
    3)SAPVIEW.log
      error message returned by DbSl:
    (IMP) INFO: a failed DROP attempt is not necessarily a problem
    (DB) ERROR: DDL statement failed
    (CREATE VIEW "Z_T_CO_BW" ( "KOKRS" , "KOSTL" , "VERSN" , "KSTAR" , "WOG001" , "MEG001"  ) AS SELECT T0002."KOKRS", T0002."KOSTL", T0001."VERSN", T0001."KSTAR", T0001."WOG001",  T0001."MEG001" FROM "COSS" T0001, "CSKS" T0002 WHERE T0002."MANDT" = T0001."MANDT")
    DbSlExecute: rc = 103
      (SQL error -942)
      error message returned by DbSl:
    (DB) INFO: disconnected from DB
    D:\usr\sap\EC6\SYS\exe\uc\NTI386\R3load.exe: job finished with 3108 error(s)
    D:\usr\sap\EC6\SYS\exe\uc\NTI386\R3load.exe: END OF LOG: 20080808174211
    Only SAPDB: SAPSID srvice of SAP DB is only up.
    No other services of database are  up.And i am not able to up the other services also.
    Is it required to up the other services?
    If not?
    Why this error is occuring?
    Any help will be appreciated.
    Thanks&Regards
    Manisha das

    Hello Manisha,
    The one of the possible reasons for this is due to lack of H/W.
    Increase your RAM size to atleast 2GB and utilise the same while you are installing ECC in database parameters step..
    If the issue is with H/W, then this should fix the issue.
    Hope it helps,
    Regards,
    Satish.

  • How can I open a cfm file in Dreamweaver CC using a Mac? Added to the Extensions.txt. Getting error adding to preferences-- file types.

    I am trying to open Cold Fusion files using Dreamweaver CC. We've never had a problem with the versions before the Cloud. My co-worker can open using a PC, but I'm using a Mac. I can connect to the server and see the files, but when I open, it opens the file in text editor. I have tried adding the extensions to the Extensions.txt file (they weren't there previously), editing the MMDocumentTypes.xml file (the file type WAS in that file), adding to the Preferences-->File Types/Editors (I can add the extension, but when I try to choose Dreamweaver CC as the editor, I get an error "You cannot use Adobe Dreamweaver CC as an external editor. Please choose a different application."). When I right-click the file, I do not see an "Open With" option, only "Open".  Does anyone know of another trick that could make Dreamweaver CC more than an HTML editor for Mac?  I cannot us CF Builder - no approval for loading the extra files server-side to use that IDE.

    Have you tried these suggestions...
    Open ColdFusion documents in Dreamweaver CC

Maybe you are looking for

  • Voice Memos disappear

    At a conference I made about 10 recordings. At the end of the day all recordings were available. The next day I synced my iPhone, but didn't find no new recordings in the Voice Memo Play list. Checking Voice Memos on my iphone I only found the first

  • How to create a multi-level configuration sales order?

    Hi,     My client use configurable material to sell computers. And the production mode is MTO. One sales order item correspond with a production order     Now my client also sell array which consist of two computers, two storage, one UPS power etc. T

  • Is there a process that writes this type of error in a log on the server?

    Hi, When I go open a cursor and at that time my connection is closed for some reason, I receive an error. 1) I wanted to know if the cause of the error is stored in a log on the server. Can you hear what happened? 2) What are the processes that logs

  • User exit or badi for the iw32 for the subnetwrk/portn

    Hi All, I got one requirement in PM Module, after making the changes in the PM work order using the transaction code IW 32 and clicking on u201CSAVEu201D button, then we need to fetch the u201CSettlement Receiveru201D values from Settlement Rule rela

  • My iPhone died while charging and it won't turn back on

    My iPhone 4 died while in the middle of charging. I had it charging on my speakers and when i left it, it was on 30% and charging. I came back an hour later and the screen was black and it would not turn on. I've tried holding the power and home butt