OBIEE Answers not starting

Hello,
I installed obiee 10.1.3.4 on windows 7. The installation was successfull. All the services are starting. I was able to open the default rpd. But I am not able to open the presentation services.
It gives page not found. I have restarted the services and also rebooted the system. Also I have turned down the windows firewall. But still the presentation services doesn't start.
I am not sure what is wrong. Please help me out figure it out.
Thanks
DS

Hi,
just figure out three things if presentation server is not running,in most cases it will be solved
step 1: check whether OBI presentation server service is running or not.?if not, start it
step 2: check whether your webserver/OC4J running?? if not start it
step 3: check whether this file ->'analytics.ear' is present or not? if not, you create a new presentation service.
regards,
Niranjan K

Similar Messages

  • Issue - BI content server(11.1.1.1) not starting in obiee 11g:

    Hello All,
    BI content server(11.1.1.1) is not starting in obiee 11g after making OBIEE 11g services as windows service.
    Services are starting when we do a Start BI Services from All Programs >> OBIEE. On the contrary, when we start from windows service "bi content server(11.1.1.1) not starting in obiee 11g" is not starting.
    Can someone help me on this. In case if you need any more info, please let me know.
    Thank you,
    Bimal

    Below is the BI Script I used. Everything is in this script so no need to edit the installsvc file. Just edit the location/variables used as well as at the bottom change the name of the script and the log location. The BI_ORACLE_HOME variable needs to be set in the script.
    SETLOCAL
    set DOMAIN_NAME=bifoundation_domain
    set USERDOMAIN_HOME=D:\oracle\Middleware\user_projects\domains\bifoundation_domain
    set SERVER_NAME=bi_server1
    set PRODUCTION_MODE=true
    set ADMIN_URL=http://djaxwapp9608.common.ecamericas:7001
    set JAVA_HOME=D:\Oracle\Middleware\Oracle_BI1\jdk
    set DOMAIN_HOME=D:\oracle\Middleware\user_projects\domains\bifoundation_domain
    set WLS_HOME=D:\Oracle\Middleware\wlserver_10.3
    set INSTANCE_HOME=D:\oracle\Middleware\instances\instance1
    set BI_ORACLE_HOME=D:\oracle\Middleware\Oracle_BI1
    set ANT_HOME=%MW_HOME\modules\org.apache.ant_1.7.1
    set DOMAIN_NAME=bifoundation_domain
    Call "D:\Oracle\Middleware\user_projects\domains\bifoundation_domain\bin\setDomainEnv.cmd"
    set WL_HOME=D:\Oracle\Middleware\wlserver_10.3
    call "%WL_HOME%\common\bin\commEnv.cmd"
    @rem Check that the WebLogic classes are where we expect them to be
    :checkWLS
    if exist "%WL_HOME%\server\lib\weblogic.jar" goto checkJava
    echo The WebLogic Server wasn't found in directory %WL_HOME%\server.
    echo Please edit your script so that the WL_HOME variable points
    echo to the WebLogic installation directory.
    goto finish
    @rem Check that java is where we expect it to be
    :checkJava
    if exist "%JAVA_HOME%\bin\java.exe" goto runWebLogic
    echo The JDK wasn't found in directory %JAVA_HOME%.
    echo Please edit your script so that the JAVA_HOME variable
    echo points to the location of your JDK.
    goto finish
    :runWebLogic
    if not "%JAVA_VM%" == "" goto noResetJavaVM
    if "%JAVA_VENDOR%" == "BEA" set JAVA_VM=-jrocket
    if "%JAVA_VENDOR%" == "HP" set JAVA_VM=-server
    if "%JAVA_VENDOR%" == "Sun" set JAVA_VM=-server
    :noResetJavaVM
    if not "%MEM_ARGS%" == "" goto noResetMemArgs
    set MEM_ARGS=-Xms32m -Xmx200m
    :noResetMemArgs
    @echo on
    set CLASSPATH=%WEBLOGIC_CLASSPATH%;%CLASSPATH%
    @echo ***************************************************
    @echo * To start WebLogic Server, use the password *
    @echo * assigned to the system user. The system *
    @echo * username and password must also be used to *
    @echo * access the WebLogic Server console from a web *
    @echo * browser. *
    @echo ***************************************************
    rem *** Set Command Line for service to execute within created JVM
    @echo off
    set MEM_ARGS=-Xms256m -Xmx512m -XX:MaxPermSize=512m -XX:-UseSSE42Intrinsics
    if "%ADMIN_URL%" == "" goto runAdmin
    @echo on
    set CMDLINE="%JAVA_VM% %MEM_ARGS% %JAVA_OPTIONS% -classpath \"%CLASSPATH%\" -Dweblogic.Name=%SERVER_NAME% -Dweblogic.management.username=%WLS_USER% -Dweblogic.management.server=\"%ADMIN_URL%\" -Dweblogic.ProductionModeEnabled=%PRODUCTION_MODE% -Djava.security.policy=\"%WL_HOME%\server\lib\weblogic.policy\" weblogic.Server"
    goto finish
    :runAdmin
    @echo on
    set CMDLINE="%JAVA_VM% %MEM_ARGS% %JAVA_OPTIONS% -classpath \"%CLASSPATH%\" -Dweblogic.Name=%SERVER_NAME% -Dweblogic.management.username=%WLS_USER% -Dweblogic.ProductionModeEnabled=%PRODUCTION_MODE% -Djava.security.policy=\"%WL_HOME%\server\lib\weblogic.policy\" weblogic.Server"
    :finish
    rem *** Set up extrapath for win32 and win64 platform separately
    if "%WL_USE_X86DLL%" == "true" set EXTRAPATH=%WL_HOME%\server\native\win\32;%WL_HOME%\server\bin;%JAVA_HOME%\jre\bin;%JAVA_HOME%\bin;%WL_HOME%\server\native\win\32\oci920_8
    if "%WL_USE_IA64DLL%" == "true" set EXTRAPATH=%WL_HOME%\server\native\win\64\;%WL_HOME%\server\bin;%JAVA_HOME%\jre\bin;%JAVA_HOME%\bin;%WL_HOME%\server\native\win\64\oci920_8
    if "%WL_USE_AMD64DLL%" == "true" set EXTRAPATH=%WL_HOME%\server\native\win\x64\;%WL_HOME%\server\bin;%JAVA_HOME%\jre\bin;%JAVA_HOME%\bin;%WL_HOME%\server\native\win\x64\oci920_8
    rem *** Install the service
    "%WL_HOME%\server\bin\beasvc" -install -svcname:"3.Oracle BI 11g BI Server" -javahome:"%JAVA_HOME%" -execdir:"%USERDOMAIN_HOME%" -maxconnectretries:"%MAX_CONNECT_RETRIES%" -host:"%HOST%" -port:"%PORT%" -extrapath:"%EXTRAPATH%" -password:"%WLS_PW%" -cmdline:%CMDLINE% -log:"D:\Oracle\Middleware\ServiceStartLogs\BIServer-stdout.txt"
    ENDLOCAL
    Edited by: J.A.M on Mar 31, 2012 8:51 AM

  • BI Server not starting in OBIEE 11g

    hi,
    While starting the BI server from Enterprise Manager in OBIEE 11g I am facing this issue.
    the details in the error log says.
    [2010-09-15T05:45:58.000+00:00] [OracleBIServerComponent] [ERROR:1] [] [] [ecid: 00hvhkOQB^r0Vsk_Kxx0ie0001F^000000] [tid: 14d8] [43065] The connection with Cluster Controller SJRH-011:9706 was lost.
    Could you please let me know how to solve this issue. Also the other components are also not starting.
    Any pointers would be useful .
    Thanks,
    Bhavik

    go to <middleware>/instance/../bin folder in the command prompt and try
    opmnctl statusProcesses in Instance: instance1
    --------------------------------------------------------------+---------
    ias-component | process-type | pid | status
    --------------------------------------------------------------+---------
    coreapplication_obiccs1 | OracleBIClusterCo~ | 2668 | Alive
    coreapplication_obisch1 | OracleBIScheduler~ | 3252 | Alive
    coreapplication_obijh1 | OracleBIJavaHostC~ | 1584 | Alive
    coreapplication_obips1 | OracleBIPresentat~ | 4420 | Alive
    coreapplication_obis1 | OracleBIServerCom~ | 4996 | Alive
    see whether the cluster control is alive.. if the status is other than Alive.. try to restart the BI cluster controls from http://localhost:7001/em/
    check the status, then start the BI presentation servers...
    hopefully this should start the servers to 100%

  • OBIEE 11g OPMNCTL not starting

    Hi All,
    When I'm trying to start my OBIEE services, all the services are starting, but the OPMNCTL status is not starting.
    When I'm trying to start it manually, It is giving me the below error message.
    Cannot resolve My-PC for instance any
    opmnctl Status: OPMN is not running
    At that time internet is not connected. But after I connected the net it didn't give this message. OPMNCTL started.
    Is it necessary to have internet to start my services.
    If not necessary how can I resolve my error when not connected to net.
    Thanks in advance.

    Hi,
    Make sure static ip r u using? If u used to installed dynamic
    Ip it throw this kind off issue . I have face this same issue in obiee11.1.1.3 with dynamic ip address
    Note: u shoud use static ip ( configure look back adopter )
    Thanks
    Deva

  • OBIEE presentation services not starting

    HI,
    i downloaded samplesales OBIEE 11.1.1.6 bp2 virtual box image but presentation services are not starting ..giving 5 errors as follows
    #SEARCH_CRITERIA
    #     START_TIME: 2012-10-16T23:06:55.391+03:00
    #     END_TIME: 2012-10-16T23:11:55.391+03:00
    #     MESSAGE_TYPES:ERROR, UNKNOWN
    #     ecid [OP_IS_IGNORE_CASE] 11d1def534ea1be0:5841315a:13a6b2c4365:-8000-00000000000000ef
    #SELECTED_TARGETS_LIST
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer:weblogic_j2eeserver
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/ActionSamples:j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/DMS Application(11.1.1.1.0):j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/ESSAPP:j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/EssbaseCalc:j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/FMW Welcome Page Application(11.1.0.0.0):j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/NonJ2EEManagement(11.1.1):j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/OracleRTD(11.1.1):j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/adminservice(11.1.1):j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/analytics(11.1.1):j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/analyticsRes:j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/apex:j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/biadminservices(11.1.1):j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/biadminutils(11.1.1):j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/bicontentserver(11.1.1):j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/bilocaladmin(11.1.1):j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/bimiddleware(11.1.1):j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/bioffice(11.1.1):j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/biofficeclient(11.1.1):j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/bipublisher(11.1.1):j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/bisearch(11.1.1):j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/em:j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/i:j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/mapviewer(11.1.1):j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/metadatadict:j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/wsil-wls:j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/wsm-pm:j2ee_application
    #     /Farm_bifoundation_domain/instance1/coreapplication_obiccs1:oracle_bi_cluster_controller
    #     /Farm_bifoundation_domain/instance1/coreapplication_obijh1:oracle_bi_java_host
    #     /Farm_bifoundation_domain/instance1/coreapplication_obips1:oracle_bi_presentation_services
    #     /Farm_bifoundation_domain/instance1/coreapplication_obis1:oracle_bi_server
    #     /Farm_bifoundation_domain/instance1/coreapplication_obisch1:oracle_bi_scheduler
    [2012-10-16T23:10:49.092+03:00] [AdminServer] [ERROR] [] [oracle.bi.management.sysmancommon] [host: obieesampleapp.us.oracle.com] [nwaddr: 127.0.0.1] [tid: Thread-183] [userId: weblogic] [ecid: 11d1def534ea1be0:5841315a:13a6b2c4365:-8000-00000000000000ef,0] [APP: biadminservices#11.1.1] [TARGET: /Farm_bifoundation_domain/bifoundation_domain/AdminServer/biadminservices(11.1.1)] [TARGET_TYPE: j2ee_application] Operation Failed: start; OracleInstance: instance1; Component: coreapplication_obips1; msg: 0 of 1 processes started.
    [2012-10-16T23:10:49.112+03:00] [AdminServer] [ERROR] [OBI-SYSMAN-1249] [oracle.bi.management.sysmancommon] [host: obieesampleapp.us.oracle.com] [nwaddr: 127.0.0.1] [tid: Thread-148] [userId: weblogic] [ecid: 11d1def534ea1be0:5841315a:13a6b2c4365:-8000-00000000000000ef,1:29115] [APP: biadminservices#11.1.1] [TARGET: /Farm_bifoundation_domain/bifoundation_domain/AdminServer/biadminservices(11.1.1)] [TARGET_TYPE: j2ee_application] Processing Event: SEVERE: Element Type: PROCESS, Element Id: instance1:coreapplication_obips1, Operation Result: FAILED_TO_START, Detail Message: Operation Failed: start; OracleInstance: instance1; Component: coreapplication_obips1; msg: 0 of 1 processes started.
    [2012-10-16T23:10:51.384+03:00] [AdminServer] [ERROR] [OBI-SYSMAN-1249] [oracle.bi.management.sysmancommon] [host: obieesampleapp.us.oracle.com] [nwaddr: 127.0.0.1] [tid: Thread-148] [userId: weblogic] [ecid: 11d1def534ea1be0:5841315a:13a6b2c4365:-8000-00000000000000ef,1:29115] [APP: biadminservices#11.1.1] [TARGET: /Farm_bifoundation_domain/bifoundation_domain/AdminServer/biadminservices(11.1.1)] [TARGET_TYPE: j2ee_application] Processing Event: SEVERE: Element Type: BI_INSTANCE, Element Id: coreapplication, Operation Result: FAILED_TO_START, Detail Message: Error in starting one or more components of BI Instance; Please check the server log files for detailed message.
    [2012-10-16T23:10:51.386+03:00] [AdminServer] [ERROR] [EM-02694] [oracle.sysman.emai.view.bi.impl.ProgressDialogHelper] [host: obieesampleapp.us.oracle.com] [nwaddr: 127.0.0.1] [tid: Thread-148] [userId: weblogic] [ecid: 11d1def534ea1be0:5841315a:13a6b2c4365:-8000-00000000000000ef,1:29115] [APP: em] [TARGET: /Farm_bifoundation_domain/bifoundation_domain/AdminServer/em] [TARGET_TYPE: j2ee_application] Supplementary information regarding operation: PROCESS:instance1:coreapplication_obips1;FAILED_TO_START;Operation Failed: start; OracleInstance: instance1; Component: coreapplication_obips1; msg: 0 of 1 processes started.
    [2012-10-16T23:10:51.387+03:00] [AdminServer] [ERROR] [EM-02694] [oracle.sysman.emai.view.bi.impl.ProgressDialogHelper] [host: obieesampleapp.us.oracle.com] [nwaddr: 127.0.0.1] [tid: Thread-148] [userId: weblogic] [ecid: 11d1def534ea1be0:5841315a:13a6b2c4365:-8000-00000000000000ef,1:29115] [APP: em] [TARGET: /Farm_bifoundation_domain/bifoundation_domain/AdminServer/em] [TARGET_TYPE: j2ee_application] Supplementary information regarding operation: BI_INSTANCE:coreapplication;FAILED_TO_START;Error in starting one or more components of BI Instance; Please check the server log files for detailed message.
    #MESSAGE_COUNT: 5
    i have already tried below mentioned things but still issue persists,
    RESOLUTION:
    Connect to WebLogic Server (WLS) Console -> Deployments. Ensure that all deployed components are in ‘Active’ state.
    Use the command prompt to verify the opmn status, as the EM console will not always reflect the correct status.
    If any of the components is in ‘Prepared’ state, select that application and then click on “start servicing all requests”.
    Restart BI Server and Presentation Services
    If this does not resolve the issue please follow the steps below:
    In some cases, the following additional step might be needed to resolve the issue.
    Access the Enterprise Manager Fusion Middleware control: http://<host.domain>:port/em
    Navigate to Business Intelligence -> coreapplication
    ‘Capacity Management’ tab -> ‘Scalability’ sub-tab
    Click on ‘Lock and Edit Configuration’ button
    Enter the IP address in the ‘Listen Address’ field
    Click on ‘Activate Changes’ followed by ‘Release Configuration’ buttons.
    Restart BI Server and Presentation Services
    Please guide.
    log file is as below,
    [2012-10-16T23:10:38.000+03:00] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services (OBIPS) 11.1.1.6.2 (Build 120605.2000 BP1 32-bit) are starting up.[[
    File:sawserver.cpp
    Line:455
    Location:
         saw.sawserver
    ecid:
    [2012-10-16T23:10:39.000+03:00] [OBIPS] [ERROR:31] [] [saw.connectionPool.getConnection] [ecid: ] [tid: ] Authentication Failure.
    Odbc driver returned an error (SQLDriverConnectW).
    State: 08004. Code: 10018. [NQODBC] [SQL_STATE: 08004] [nQSError: 10018] Access for the requested connection is refused.
    [nQSError: 43113] Message returned from OBIS.
    [nQSError: 43126] Authentication failed: invalid user/password. (08004)[[
    File:connection.cpp
    Line:395
    Location:
         saw.connectionPool.getConnection
         saw.security.odbcuserpopulationimpl.initialize
         saw.catalog.local.loadCatalog
         saw.subsystems.catalogbootstrapper.loadcatalog
         saw.webextensionbase.init
         saw.sawserver
    ecid:
    [2012-10-16T23:10:39.000+03:00] [OBIPS] [ERROR:10] [] [saw.security.odbcuserpopulationimpl.initialize] [ecid: ] [tid: ] Authentication Failure.
    Odbc driver returned an error (SQLDriverConnectW).
    State: 08004. Code: 10018. [NQODBC] [SQL_STATE: 08004] [nQSError: 10018] Access for the requested connection is refused.
    [nQSError: 43113] Message returned from OBIS.
    [nQSError: 43126] Authentication failed: invalid user/password. (08004)[[
    File:odbcuserpoploaderimpl.cpp
    Line:316
    Location:
         saw.security.odbcuserpopulationimpl.initialize
         saw.catalog.local.loadCatalog
         saw.subsystems.catalogbootstrapper.loadcatalog
         saw.webextensionbase.init
         saw.sawserver
    ecid:
    [2012-10-16T23:10:39.000+03:00] [OBIPS] [ERROR:31] [] [saw.security.odbcuserpopulationimpl.initialize] [ecid: ] [tid: ] Could not create a system user connection to Oracle BI Server during start-up. Please check the error message and try again.
    Authentication Failure.
    Odbc driver returned an error (SQLDriverConnectW).
    State: 08004. Code: 10018. [NQODBC] [SQL_STATE: 08004] [nQSError: 10018] Access for the requested connection is refused.
    [nQSError: 43113] Message returned from OBIS.
    [nQSError: 43126] Authentication failed: invalid user/password. (08004)[[
    File:odbcuserpoploaderimpl.cpp
    Line:319
    Location:
         saw.security.odbcuserpopulationimpl.initialize
         saw.catalog.local.loadCatalog
         saw.subsystems.catalogbootstrapper.loadcatalog
         saw.webextensionbase.init
         saw.sawserver
    ecid:
    [2012-10-16T23:10:39.000+03:00] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services are shutting down.[[
    File:sawserver.cpp
    Line:713
    Location:
         saw.sawserver
    ecid:
    [2012-10-16T23:10:45.000+03:00] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services (OBIPS) 11.1.1.6.2 (Build 120605.2000 BP1 32-bit) are starting up.[[
    File:sawserver.cpp
    Line:455
    Location:
         saw.sawserver
    ecid:
    [2012-10-16T23:10:47.000+03:00] [OBIPS] [ERROR:31] [] [saw.connectionPool.getConnection] [ecid: ] [tid: ] Authentication Failure.
    Odbc driver returned an error (SQLDriverConnectW).
    State: 08004. Code: 10018. [NQODBC] [SQL_STATE: 08004] [nQSError: 10018] Access for the requested connection is refused.
    [nQSError: 43113] Message returned from OBIS.
    [nQSError: 43126] Authentication failed: invalid user/password. (08004)[[
    File:connection.cpp
    Line:395
    Location:
         saw.connectionPool.getConnection
         saw.security.odbcuserpopulationimpl.initialize
         saw.catalog.local.loadCatalog
         saw.subsystems.catalogbootstrapper.loadcatalog
         saw.webextensionbase.init
         saw.sawserver
    ecid:
    [2012-10-16T23:10:47.000+03:00] [OBIPS] [ERROR:10] [] [saw.security.odbcuserpopulationimpl.initialize] [ecid: ] [tid: ] Authentication Failure.
    Odbc driver returned an error (SQLDriverConnectW).
    State: 08004. Code: 10018. [NQODBC] [SQL_STATE: 08004] [nQSError: 10018] Access for the requested connection is refused.
    [nQSError: 43113] Message returned from OBIS.
    [nQSError: 43126] Authentication failed: invalid user/password. (08004)[[
    File:odbcuserpoploaderimpl.cpp
    Line:316
    Location:
         saw.security.odbcuserpopulationimpl.initialize
         saw.catalog.local.loadCatalog
         saw.subsystems.catalogbootstrapper.loadcatalog
         saw.webextensionbase.init
         saw.sawserver
    ecid:
    [2012-10-16T23:10:47.000+03:00] [OBIPS] [ERROR:31] [] [saw.security.odbcuserpopulationimpl.initialize] [ecid: ] [tid: ] Could not create a system user connection to Oracle BI Server during start-up. Please check the error message and try again.
    Authentication Failure.
    Odbc driver returned an error (SQLDriverConnectW).
    State: 08004. Code: 10018. [NQODBC] [SQL_STATE: 08004] [nQSError: 10018] Access for the requested connection is refused.
    [nQSError: 43113] Message returned from OBIS.
    [nQSError: 43126] Authentication failed: invalid user/password. (08004)[[
    File:odbcuserpoploaderimpl.cpp
    Line:319
    Location:
         saw.security.odbcuserpopulationimpl.initialize
         saw.catalog.local.loadCatalog
         saw.subsystems.catalogbootstrapper.loadcatalog
         saw.webextensionbase.init
         saw.sawserver
    ecid:
    [2012-10-16T23:10:47.000+03:00] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services are shutting down.[[
    File:sawserver.cpp
    Line:713
    Location:
         saw.sawserver
    ecid:
    Edited by: 948856 on Oct 16, 2012 1:24 PM

    hi Christian,
    tried it.still same error. going to download fresh VMs from oracle.hoping same issue will not come again.
    thanks,

  • I have forgotten my security answer,also my ipod not starting only showing apple logo.

    i have forgotten my security answer,also my ipod not starting only showing apple logo.
    <E-mail Edited by Host>

    Forgotten Security Questions/Answers
    You need to contact Apple by:
    1 - Use the Express lane and start here:
    https://expresslane.apple.com
    then click More Products and Services>Apple ID>Other Apple ID Topics>Forgotten Apple ID security questions.
    or
    Apple - Support -form iTunes Store - Contact Us
    2 - Call Apple in your country by getting the number from here:
    http://support.apple.com/kb/HE57
    or           
    Apple ID: Contacting Apple for help with Apple ID account security
    3 - Use your rescue email address if you set one up
    Rescue email address and how to reset Apple ID security questions
    For general  information see:
    Apple ID: All about Apple ID security questions
    For iPod problem
    Try:                                               
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try another cable       
    - Try on another computer                            
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
      Apple Retail Store - Genius Bar                              

  • BI Server is not starting in 11g

    Hi All,
    I have updated OBIEE 11.1.1.5 to 11.1.1.6.
    I started all the servers. But BI server is not starting. I got the below error.
    nqsserver: symbol lookup error: /data/obiee11g/3287/fmw_home1/Oracle_BI1/bifound ation/server/bin/libnqssimutility64.so: undefined symbol: _ZN15InactiveSchemas21                                                                              globalInactiveSchemasE
    Please suggest.

    seems like u're upgrade dint go clean , did you face any error or issue while upgrade ?

  • Opmn service does not start when try to start Oracle BI Services

    Hi ,
    I was able to install OBIEE 11g on my laptop and it worked fine for two days. Today when I try to login to rpd and type my user name and password I get the error that my user name and password is not correct. I tried to restart the machine and now I am not able to start opmn service.
    When I do Start>Oracle Business Intelligence (1)>Start BI Services, the script run and two command line windows open and about 10 minutes later get the last line that server started in RUNNING mode, but some how Oracle Process Manager (instance) service does not start. It started two days ago when I was able to login to OBIEE 11g.
    If I try to go to OBIEE 11g Home page I get this error "Error 500- Internal server error from RFC 2068 Hypertext Transfer Protocol- HTTP/1.1: 10.5.1 500 Internal server error
    Any Idea how to fix this one.
    Thanks

    Maybe you need to tick the "use fully qualified names" check box and make sure that you have the schema object created (as a "folder" between the database and the tables in the physical layer).

  • Usage tracking problem : not started due to non-existent Usage Tracking tab

    Hello,
    I need some help after following the necessary steps to setup 'Usage Tracking'.
    My table S_NQ_ACCT stays empty.
    The structure in the rpd files looks like
    * OBI Usage Tracking
    Connection Pool
    Usage Tracking Writer Connection Pool
    Catalog
    dbo
    S_NQ_ACCT
    My nqsconfig has the following entries related to usage tracking
    # Usage Tracking Section
    # Collect usage statistics on each logical query submitted to the
    # server.
    [ USAGE_TRACKING ]
    ENABLE = YES;
    DIRECT_INSERT = YES;
    PHYSICAL_TABLE_NAME = "OBI Usage Tracking"."Catalog"."dbo"."S_NQ_ACCT";
    CONNECTION_POOL = "OBI Usage Tracking"."Usage Tracking Writer Connection Pool" ;
    BUFFER_SIZE = 10 MB ;
    BUFFER_TIME_LIMIT_SECONDS = 5 ;
    NUM_INSERT_THREADS = 5 ;
    MAX_INSERTS_PER_TRANSACTION = 1 ;
    When making queries on the Usage Tracking SA, I still receive the following error in the NQServer.log File
    +[59049] Usage Tracking not started due to non-existent Usage Tracking table "<Database>"."<Catalog>"."<Schema>"."<Table>".+
    What am I doing wrong??
    Txs for your quick help on this!
    Kr,
    A.

    Can you post your entire NQSConfig.INI file?
    According to the message guide (http://download.oracle.com/docs/cd/E12103_01/books/AnyMsg/AnyMsg_Messages.html#wp1007961) the error you're getting specifies the table that OBIEE is trying to use, so the fact that yours reports literally "<Database>"."<Catalog>"."<Schema>"."<Table>" makes me think maybe the wrong config is being picked up. Also your comment that using a file instead of DB doesn't work either.

  • Oracle Process Manager(instance1) Service does not start

    Hello Friends,
    My Oracle Process Manger (instance1) windows service is not starting up.Due to which my presentation service is also down.
    Kindly suggest any solution. I am using OBIEE 11.1.1.7

    Thank you Reddy for your reply.
    I am getting below error message in presentation server log, as well I cannot open rpd in ONLINE mode.
    [2013-11-14T12:07:40.000+05:30] [OBIPS] [ERROR:31] [] [saw.security.odbcuserpopulationimpl.initialize] [ecid: ] [tid: ] Could not create a system user connection to Oracle BI Server during start-up. Please check the error message and try again.
    Authentication Failure.
    Odbc driver returned an error (SQLDriverConnectW).
    State: 08004.  Code: 10018.  [NQODBC] [SQL_STATE: 08004] [nQSError: 10018] Access for the requested connection is refused.
    [nQSError: 43113] Message returned from OBIS.
    [nQSError: 43126] Authentication failed: invalid user/password. (08004)[[
    File:odbcuserpoploaderimpl.cpp

  • After restarting server BI Publisher is not started automatically

    Hi all,
    I am new in BI Publisher and have a problem. When I installed BI everything works OK. So I have logged on Publisher URL, authentication was successful and etc.
    After restarting the server (I have Oracle DB and Publisher in one server, but in different home) I tried to log on to the Publisher console (http://oraclebi.mycompany.ge:9704/xmlpserver) and url is not responding,seems that service is not started.
    Configurationdetails:
    Installation Details
    Middleware Home: /u01/app/oracle/bi
    BI Oracle Home: /u01/app/oracle/bi/Oracle_BI1
    WebLogic Server Home: /u01/app/oracle/bi/wlserver_10.3
    BI Domain Home: /u01/app/oracle/bi/user_projects/domains/bifoundation_domain
    BI Domain Name: bifoundation_domain
    Instance Home: /u01/app/oracle/bi/instances/instance1
    Instance Name: instance1
    Configure Components
    WebLogic Console
    http://oraclebi.mycompany.ge:7001/console
    Oracle Enterprise Manager
    http://oraclebi.mycompany.ge:7001/em
    Business Intelligence Enterprise Edition
    http://oraclebi.mycompany.ge:9704/analytics
    Business Intelligence Publisher
    http://oraclebi.mycompany.ge:9704/xmlpserver
    Could anyone help me how to start this service or how to setup to start it automatically?
    Thank in advance
    Edited by: zmachavariani on 17.01.2011 2:27

    Hi,
    There are many version of BI Publisher and also it can be deployed in many app servers. But from your log messages
    I can see you are trying to use BIP 11g in Weblogic Server (besides 11g only allows -as of today- to install in WLS).
    You should be aware that BIP11g after default installation uses a repository which is part of the BIEE Catalog and also
    uses FUSION as security Mode (i.e. users and pwds are no longer controled in BIEE Admin but in OEM).
    Therefore for BIP11g to work as default installation you also need BIEE11g to be running. For this i recommend you
    to first take a look at one of my posts:
    http://oraclebiblog.blogspot.com/2010/10/obiee-11g-architecture.html
    and then follow the guidelines to start it all:
    http://oraclebiblog.blogspot.com/2010/11/starting-and-stopping-biee-from-command.html
    Now, if you only want to use BIP11g there is a workaround. Make a backup of xmlp-server-config.xml
    and update the SECURITY mode from FUSION to XDO. Set a Local user for BIP and
    Restart BIP11g from within OEM and login as Local User.
    regards
    Jorge A.

  • "could not start the Oracle BI Presentation Server on Local computer error"

    Hello Folks,
    i am trying to start the OBIEE Presentation services, The OBIEE server and Java Host Services are started.
    i am getting this error and i didnt change any settings and finally getting this error
    "Windows could not start the Oracle BI Presentation Server on Local Computer. For more information, review the System Even Log. If this is a non Microsoft service contact the service vendor, and refer to service-specific error code -1."
    thanks

    Here is the solution from another freind
    1. Stop BI Server Service > Start BI Server Service > Start BI Presentation Service. If that doesn't work...
    2. Restart machine and follow step 1. If that doesn't work...
    3. Check instantconfig.ini file and check syntax is correct. Also check java directory path mentioned is the valid one. If that doesn't work...
    4. Rename the catalog folder to something else and follow step 1. It will create new catalog folder. Then copy _Shared from old catalog folder and you are good to go.
    catalog folder will be in oraclebidata/web/catalog...
    either delete the folder and create a new empty one or rename it
    also have a look at instanceconfig.ini file
    thanks

  • OBIEE where to start

    Hi i recently completed pl/sql OCA , and was interested in learning about OBIEE , can anybody suggest me a godd place to start learning it.
    The oracle documentation for OBIEE was not much helpful

    I would start from here - OBI 11g presentation materials
    Taken from here:
    OBIEE 11g Launch
    Collection of documents and material from the launch:
    OEM Management Short Flash Demo
    http://www.oracle.com/pls/ebn/swf_viewer.load?p_shows_id=8910854&p_referred=FlashISeminar
    OLAP Analytics Short Flash Demo
    http://www.oracle.com/pls/ebn/swf_viewer.load?p_shows_id=8910853&p_referred=FlashISeminar
    Actions Short Flash Demo
    http://www.oracle.com/pls/ebn/swf_viewer.load?p_shows_id=8910843&p_referred=FlashISeminar
    Launch Event Webcast (2hs)
    http://www.oracle.com/oms/businessintelligence11g/webcast-075573.html
    OBIEE 11g New Feature - Hierarchy Columns
    http://blogs.oracle.com/robreynolds/2010/07/obiee_11g_new_feature_-_hierar.html
    OBIEE 11g Feature: Chart Zoom
    http://blogs.oracle.com/robreynolds/2010/07/obiee_11g_feature_chart_zoom.html
    OBIEE 11g New Feature: Chart Sliding
    http://blogs.oracle.com/robreynolds/2010/07/obiee_11g_new_feature_chart_sl.html
    Oracle Business Intelligence Enterprise Edition 11g Technical Overview (55 pages)
    http://www.oracle.com/us/obiee-11g-technical-overview-078853.pdf
    Oracle Business Intelligence Enterprise Edition 11g Data Sheet (5 pages)
    http://www.oracle.com/us/bi-enterprise-edition-plus-ds-078848.pdf
    Oracle Business Intelligence BI Publisher 11g Data Sheet (3 pages)
    http://www.oracle.com/us/bi-publisher-ds-080054.pdf
    Oracle Scorecard and Strategy Management Data Sheet (3 pages)
    http://www.oracle.com/us/scorecard-strategy-management-ds-078849.pdf
    Some screen shots:
    http://www.flickr.com/photos/oracle_images/page2/
    Oracle Press Release
    http://www.oracle.com/us/corporate/press/143363

  • I am not able to launch FF everytime i tr to open it, it says FF has to submit a crash report, i even tried doing that and the report was submitted too, but stiil FF did not start, and the problem still persists, please help me solve this issue in English

    Question
    I am not able to launch FF everytime i try to open it, it says FF has to submit a crash report,and restore yr tabs. I even tried doing that and the report was submitted too, but still FF did not start, and the problem still persists, please help me solve this issue
    '''(in English)'''

    Hi Danny,
    Per my understanding that you can't get the expect result by using the expression "=Count(Fields!TICKET_STATUS.Value=4) " to count the the TICKET_STATUS which value is 4, the result will returns the count of all the TICKET_STATUS values(206)
    but not 180, right?
    I have tested on my local environment and can reproduce the issue, the issue caused by you are using the count() function in the incorrect way, please modify the expression as below and have a test:
    =COUNT(IIF(Fields!TICKET_STATUS.Value=4 ,1,Nothing))
    or
    =SUM(IIF(Fields!TICKET_STATUS=4,1,0))
    If you still have any problem, please feel free to ask.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • Error "can not start the configuration in parallel does not correct"

    Hello everybody,
    I have Windows 7 SP1, and when I install Business Objects 4.1 Client, it is install correctly but when i execute the program, for example BO Rich Client, an error appear "can not start the configuration in parallel does not correct" Could you help me?
    Thanks in advance!

    Check this KB
                  1678498  - BI 4.0 Universe Designer Gives Side-by-Side configuration incorrect Error

Maybe you are looking for

  • I have disabled all Kaspersky security, windows firewall and windows defender and Itunes still will not update my Ipod touch 4th gen to IOS 5, Helppppp!

    I can't get the IOS 5 to work for windows Vista.  I'm running kaspersky pure 2.0, windows firewall and windows defender.  I have turned them all off, I then attach my Ipod 4th gen and I get the "cannot connect to itunes update server".  I ran diagnos

  • Dimension Hierarchy Help

    Guys, We have a product hierarchy that goes like this: Division, department, category, sub category, range, line, option We have a logical dimension table that has 2 sources. One source table only goes down to the category level and the other contain

  • Document.saved not updated by Document.save()

    Hi, I tried this on CS5: docRef = app.activeDocument; docRef.save(); alert("docRef.saved= " + (docRef.saved).toString()); and I got a "false". It seems that the method doesn't update the related property. Also on document window title there is still

  • EOS Utility 2.7 and Snow Leopard

    I've read of some people have success using SL, sadly I'm not one of them. Just got the Canon 7D and the supplied software doesn't work. The program runs, unlike some who I've read find it crashes, but doesn't recognize my 7D or Rebel XTi. I'm able t

  • Play/pause mouse button no longer works since update?

    I have a mouse with several buttons, one of which I customized to be "Play/Pause". This was great for iTunes -- if I was in Firefox or something, I could click it and immediately play/pause the song. However, with the new version of iTunes, this butt