Oracle BI Interactive Dashboards not working

Dear All,
We have installed OBIEE 10g in local machine and then Oc4j started. if click the Oracle BI Interactive Dashboards
The below link only problem and mentioned error mess also
http://system12:9704/analytics/saw.dll?Dashboard
500 Internal Server Error
Servlet error: An exception occurred. The current application deployment descriptors do not allow for including it in this response. Please consult the application log for details.
can some one help me.

Dear All,
we are facing the below problem Oracle BI Presentation Server cannot start and Oracle Bi java Host also, have checked instanceconfig mentioned below.
C:\Documents and Settings\sytem>net start "Oracle BI Presentation Server"
The Oracle BI Presentation Server service is starting.
The Oracle BI Presentation Server service could not be started.
A service specific error occurred: 4294967295.
More help is available by typing NET HELPMSG 3547.
C:\Documents and Settings\system>net start "Oracle BI java Host"
The Oracle BI Java Host service is starting.
The Oracle BI Java Host service could not be started.
The service did not report an error.
More help is available by typing NET HELPMSG 3534.
<?xml version="1.0" encoding="utf-8"?>
<WebConfig>
<ServerInstance>
<DSN>AnalyticsWeb</DSN>
<CatalogPath>D:/OracleBIData/web/catalog/samplesales</CatalogPath>
<Alerts>
<ScheduleServer>SYS9</ScheduleServer>
</Alerts>
Kindly give the solution for this issue.
Kindly help me we are facing the problem so far.

Similar Messages

  • Oracle BI Interactive Dashboards not working even OC4J is running

    Hi,
    Just now I have installed OBI EE in my machine ( Standalone system). I have started the oc4j and it says "Initialized", when I try to open the Link for "Oracle BI Interactive Dashboards", its not opening.
    Regards,
    Ashoka BL

    Hi
    What error are you getting while opening the dashboard.... have u started all other services eg. Oracle BI Server, Oracle BI Presentation services, Oracle BI Java Host... check all these services in the services.msc window..
    hope this will help you
    thanks & regards

  • How to make new database connection using Oracle BI Interactive Dashboards

    Hi,
    I install Oracle BI Intelligence on my system.
    I am using Oracle BI Interactive Dashboard. Here we have default database connection.
    but now i want to use it for my own database. Can any body give me guideline how to
    make a new data base connection using this s/w or how to connect to my database so
    that i can make my own reports.
    I am using
    http://www.oracle.com/technology/obe/obe_bi/bi_ee_1013/saw/saw.html
    this link.
    i make odbc connection which is fine.
    but
    Restoring the Business Intelligence Presentation Catalog and Updating Metadata
    The third point blow above heading is not clear.
    Thanks

    Umesh - in order to build Answers and Dashboard content you must first setup a Physical model, then a Business model, followed by a Presentation Catalog/Subject Area.
    All these tasks are carried out using the Repository Administration Utility.
    1) Import your physical tables using OCI/ODBC into the physical layer.
    2) Build your model
    3) Deploy
    Then you're ready to start building answers/dashboards.
    Good Luck.

  • Interactive notifications  not working in my 5s

    uupdated my iphone yesterday but after  update my interactive  notifications  not working 

    Have you restarted your iPhone?  http://support.apple.com/kb/TS1702
    Restart the app
    Close the app and open it again.
    Restart your device
    Turn the device off and on.
    If that does not help, reinstall iPhoto - that fixed the same problem for me, but that will delete the iPhoto library, so your journals and slideshows will be lost. You may want to make a backup of your iPhone before you try that.
    Reinstall the app
    Remove the app from your device and reinstall it. Remember that deleting an app also deletes its data.
    Delete the app.
    Press the Home button.
    Go to the App Store and download the app again.
    Wait for the app to download, then open it from the Home screen.
    If the download stops, you can resume it.
    If even reinstalling iPhoto does not help, restore your iPhone:  http://support.apple.com/kb/TS3281

  • Oracle 10g database homepage not working?

    Oracle 10g database homepage not working?
    Hi just i installed oracle database 10g express edition but after the restart the oracle database homepage wont open http://127.0.0.1:8080/apex that link always telling cannot display...
    here i have posted lsnrctl status
    pls help
    thanks in advance
    LSNRCTL> status
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY…
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for 32-bit Windows: Version 10.2.0.1.0 - Produ
    ction
    Start Date 25-SEP-2010 17:52:11
    Uptime 0 days 1 hr. 28 min. 24 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Default Service XE
    Listener Parameter File C:\oraclexe\app\oracle\product\10.2.0\se…
    dmin\listener.ora
    Listener Log File C:\oraclexe\app\oracle\product\10.2.0\se…
    og\listener.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIP…
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOS…
    Services Summary...
    Service "CLRExtProc" has 1 instance(s).
    Instance "CLRExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully

    I had a problem of accessing Oracle 10g database homepage. After a couple of days of research and discussions with coworker we found a solution.
    Here is the solution:
    1. Find out your default browser.
    2. Configure your default web browser to connect to the Oracle Database XE Database Home Page as stated
    here:
    http://download.oracle.com/docs/cd/B25329_01/doc/install.102/b25143/toc.htm#CIHHJEHF
    If this does not help de-install Oracle XE and reinstall following the instruction. During re-installation find out your default browser and configure it as instructed.
    I suspect when the default web browser changes the Oracle 10g XE Database Home Page stops working.
    Good luck

  • Oracle date parameter query not working?

    http://stackoverflow.com/questions/14539489/oracle-date-parameter-query-not-working
    Trying to run the below query, but always fails even though the parameter values matches. I'm thinking there is a precision issue for :xRowVersion_prev parameter. I want too keep as much precision as possible.
    Delete
    from CONCURRENCYTESTITEMS
    where ITEMID = :xItemId
    and ROWVERSION = :xRowVersion_prev
    The Oracle Rowversion is a TimestampLTZ and so is the oracle parameter type.
    The same code & query works in Sql Server, but not Oracle.
    Public Function CreateConnection() As IDbConnection
    Dim sl As New SettingsLoader
    Dim cs As String = sl.ObtainConnectionString
    Dim cn As OracleConnection = New OracleConnection(cs)
    cn.Open()
    Return cn
    End Function
    Public Function CreateCommand(connection As IDbConnection) As IDbCommand
    Dim cmd As OracleCommand = DirectCast(connection.CreateCommand, OracleCommand)
    cmd.BindByName = True
    Return cmd
    End Function
    <TestMethod()>
    <TestCategory("Oracle")> _
    Public Sub Test_POC_Delete()
    Dim connection As IDbConnection = CreateConnection()
    Dim rowver As DateTime = DateTime.Now
    Dim id As Decimal
    Using cmd As IDbCommand = CreateCommand(connection)
    cmd.CommandText = "insert into CONCURRENCYTESTITEMS values(SEQ_CONCURRENCYTESTITEMS.nextval,'bla bla bla',:xRowVersion) returning ITEMID into :myOutputParameter"
    Dim p As OracleParameter = New OracleParameter
    p.Direction = ParameterDirection.ReturnValue
    p.DbType = DbType.Decimal
    p.ParameterName = "myOutputParameter"
    cmd.Parameters.Add(p)
    Dim v As OracleParameter = New OracleParameter
    v.Direction = ParameterDirection.Input
    v.OracleDbType = OracleDbType.TimeStampLTZ
    v.ParameterName = "xRowVersion"
    v.Value = rowver
    cmd.Parameters.Add(v)
    cmd.ExecuteNonQuery()
    id = CType(p.Value, Decimal)
    End Using
    Using cmd As IDbCommand = m_DBTypesFactory.CreateCommand(connection)
    cmd.CommandText = " Delete from CONCURRENCYTESTITEMS where ITEMID = :xItemId and ROWVERSION = :xRowVersion_prev"
    Dim p As OracleParameter = New OracleParameter
    p.Direction = ParameterDirection.Input
    p.DbType = DbType.Decimal
    p.ParameterName = "xItemId"
    p.Value = id
    cmd.Parameters.Add(p)
    Dim v As OracleParameter = New OracleParameter
    v.Direction = ParameterDirection.Input
    v.OracleDbType = OracleDbType.TimeStampLTZ
    v.ParameterName = "xRowVersion_prev"
    v.Value = rowver
    v.Precision = 6 '????
    cmd.Parameters.Add(v)
    Dim cnt As Integer = cmd.ExecuteNonQuery()
    If cnt = 0 Then Assert.Fail() 'should delete
    End Using
    connection.Close()
    End Sub
    Schema:
    -- ****** Object: Table SYSTEM.CONCURRENCYTESTITEMS Script Date: 1/26/2013 11:56:50 AM ******
    CREATE TABLE "CONCURRENCYTESTITEMS" (
    "ITEMID" NUMBER(19,0) NOT NULL,
    "NOTES" NCHAR(200) NOT NULL,
    "ROWVERSION" TIMESTAMP(6) WITH LOCAL TIME ZONE NOT NULL)
    STORAGE (
    NEXT 1048576 )
    Sequence:
    -- ****** Object: Sequence SYSTEM.SEQ_CONCURRENCYTESTITEMS Script Date: 1/26/2013 12:12:48 PM ******
    CREATE SEQUENCE "SEQ_CONCURRENCYTESTITEMS"
    START WITH 1
    CACHE 20
    MAXVALUE 9999999999999999999999999999

    still not comming...
    i have one table each entry is having only one fromdata and one todate only
    i am running below in sql it is showing two rows. ok.
      select t1.U_frmdate,t1.U_todate  ,ISNULL(t2.firstName,'')+ ',' +ISNULL(t2.middleName ,'')+','+ISNULL(t2.lastName,'') AS NAME, T2.empID  AS EMPID, T2.U_emp AS Empticket,t2.U_PFAcc,t0.U_pf 
       from  [@PR_PRCSAL1] t0 inner join [@PR_OPRCSAL] t1
       on t0.DocEntry = t1.DocEntry
       inner join ohem t2
       on t2.empID = t0.U_empid  where  t0.U_empid between  '830' and  '850'  and t1.U_frmdate ='20160801'  and  t1.u_todate='20160830'
    in commond promt
      select t1.U_frmdate,t1.U_todate  ,ISNULL(t2.firstName,'')+ ',' +ISNULL(t2.middleName ,'')+','+ISNULL(t2.lastName,'') AS NAME, T2.empID  AS EMPID, T2.U_emp AS Empticket,t2.U_PFAcc,t0.U_pf 
       from  [@PR_PRCSAL1] t0 inner join [@PR_OPRCSAL] t1
       on t0.DocEntry = t1.DocEntry
       inner join ohem t2
       on t2.empID = t0.U_empid  where  t0.U_empid between  {?FromEmid} and  {?ToEmid} and t1.U_frmdate ={?FDate} and  t1.u_todate={?TDate}
    still not showing any results..

  • Oracle 10gr2 locally is not working after  installing Oracle 11g

    hi ,
    Does anyone has any idea after installing oracle 11g in system, Oracle 10g locally is not working. I am getting below error.
    Forms session <2> failed during startup: no response from runtime process

    Generally this is because the software you install last updates the system environment variables with its information, thereby break products that use files with similar names. Specifically, look at PATH and ORACLE_HOME. Likely you will see that entries for your 11g installation will be displayed first. In order to use v10, you would need to change this or use script files to start executibles. For Forms runtime, be sure to properly set default.env to point to the desired PATH

  • Captivate 7 | Interaction template | Not working on tablets

    Hello,
    I have a problem with the interation templates provided in the Captivate 7.
    Opening a blank project, I have insert a tab interactive template (ref screenshot below) from the option Insert > Interaction. After publishing project to HTML 5 the output is working fine on iPad. Later for the same project I have inserted some background and text within the interaction template and published again to HTML 5 and checked the output in the iPad and the interactions were not working as previously.
    Regards
    Chandru

    This is the Elements forum. Try copying your question again here:
    https://forums.adobe.com/community/adobe_captivate

  • Interactive Reports not working with APEX listener

    Hi,
    I have posted this question APEX listener forum couple of weeks ago but very few responses.
    If any one from here can help then it would be great.
    Interactive Reports not working with APEX listener
    Best Regards,
    Baig

    Sorry for late response.
    It was a firewall issue

  • Oracle XE Western version not working on Windows XP pro

    I have noticed that production version of the Oracle XE Western version does not work properly. The beta version created the database properly, the production version does not. I tried to install it on a Windows XP Pro version.
    Below is the alert_xe.log
    Dump file c:\oracle\xeprod\app\oracle\admin\xe\bdump\alert_xe.log
    Thu Mar 30 11:38:32 2006
    ORACLE V10.2.0.1.0 - Production vsnsta=0
    vsnsql=14 vsnxtr=3
    Windows XP Version V5.1 Service Pack 2
    CPU : 1 - type 586
    Process Affinity : 0x00000000
    Memory (Avail/Total): Ph:533M/1023M, Ph+PgF:2253M/2461M, VA:1945M/2047M
    Thu Mar 30 11:38:32 2006
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Shared memory segment for instance monitoring created
    Picked latch-free SCN scheme 2
    Using LOG_ARCHIVE_DEST_10 parameter default value as USE_DB_RECOVERY_FILE_DEST
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =10
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    ksdpec: called for event 13740 prior to event group initialization
    Starting up ORACLE RDBMS Version: 10.2.0.1.0.
    System parameters with non-default values:
    sessions = 49
    sga_target = 285212672
    control_files = C:\ORACLE\XEPROD\ORADATA\XE\CONTROL.DBF
    compatible = 10.2.0.1.0
    db_recovery_file_dest = C:\oracle\xeprod\app\oracle\flash_recovery_area
    db_recovery_file_dest_size= 10737418240
    undo_management = AUTO
    undo_tablespace = UNDO
    remote_login_passwordfile= EXCLUSIVE
    dispatchers = (PROTOCOL=TCP) (SERVICE=XEXDB)
    shared_servers = 4
    job_queue_processes = 4
    audit_file_dest = C:\ORACLE\XEPROD\APP\ORACLE\ADMIN\XE\ADUMP
    background_dump_dest = C:\ORACLE\XEPROD\APP\ORACLE\ADMIN\XE\BDUMP
    user_dump_dest = C:\ORACLE\XEPROD\APP\ORACLE\ADMIN\XE\UDUMP
    core_dump_dest = C:\ORACLE\XEPROD\APP\ORACLE\ADMIN\XE\CDUMP
    db_name = XE
    open_cursors = 300
    os_authent_prefix =
    pga_aggregate_target = 94371840
    MMAN started with pid=4, OS id=4092
    PSP0 started with pid=3, OS id=4088
    PMON started with pid=2, OS id=4084
    DBW0 started with pid=5, OS id=2044
    LGWR started with pid=6, OS id=1248
    CKPT started with pid=7, OS id=200
    SMON started with pid=8, OS id=2036
    RECO started with pid=9, OS id=2012
    CJQ0 started with pid=10, OS id=212
    MMON started with pid=11, OS id=1924
    Thu Mar 30 11:38:38 2006
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    MMNL started with pid=12, OS id=380
    Thu Mar 30 11:38:38 2006
    starting up 4 shared server(s) ...
    Oracle Data Guard is not available in this edition of Oracle.
    Thu Mar 30 11:38:42 2006
    The input backup piece C:\ORACLE\XEPROD\APP\ORACLE\PRODUCT\10.2.0\SERVER\CONFIG\SEEDDB\EXPRESS.DFB is in compressed format.
    Thu Mar 30 11:39:10 2006
    Full restore complete of datafile 4 to datafile copy C:\ORACLE\XEPROD\ORADATA\XE\USERS.DBF. Elapsed time: 0:00:26
    checkpoint is 193065
    Full restore complete of datafile 2 to datafile copy C:\ORACLE\XEPROD\ORADATA\XE\UNDO.DBF. Elapsed time: 0:00:27
    checkpoint is 193065
    Thu Mar 30 11:39:27 2006
    Full restore complete of datafile 3 to datafile copy C:\ORACLE\XEPROD\ORADATA\XE\SYSAUX.DBF. Elapsed time: 0:00:45
    checkpoint is 193065
    Thu Mar 30 11:39:27 2006
    Errors in file c:\oracle\xeprod\app\oracle\admin\xe\udump\xe_ora_488.trc:
    ORA-00600: internal error code, arguments: [krbrckhr_fail], [C:\ORACLE\XEPROD\APP\ORACLE\PRODUCT\10.2.0\SERVER\CONFIG\SEEDDB\EXPRESS.DFB], [83], [128], [3], [9427], [], []
    Thu Mar 30 11:39:29 2006
    Create controlfile reuse set database "XE"
    MAXINSTANCES 8
    MAXLOGHISTORY 1
    MAXLOGFILES 16
    MAXLOGMEMBERS 3
    MAXDATAFILES 100
    Datafile
    'C:\oracle\xeprod\oradata\XE\system.dbf',
    'C:\oracle\xeprod\oradata\XE\undo.dbf',
    'C:\oracle\xeprod\oradata\XE\sysaux.dbf',
    'C:\oracle\xeprod\oradata\XE\users.dbf'
    LOGFILE
    GROUP 1 SIZE 51200K,
    GROUP 2 SIZE 51200K,
    RESETLOGS
    Thu Mar 30 11:39:29 2006
    WARNING: Default Temporary Tablespace not specified in CREATE DATABASE command
    Default Temporary Tablespace will be necessary for a locally managed database in future release
    Thu Mar 30 11:39:29 2006
    Errors in file c:\oracle\xeprod\app\oracle\admin\xe\udump\xe_ora_744.trc:
    ORA-01565: error in identifying file 'C:\oracle\xeprod\oradata\XE\system.dbf'
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) The system cannot find the file specified.
    ORA-1503 signalled during: Create controlfile reuse set database "XE"
    MAXINSTANCES 8
    MAXLOGHISTORY 1
    MAXLOGFILES 16
    MAXLOGMEMBERS 3
    MAXDATAFILES 100
    Datafile
    'C:\oracle\xeprod\oradata\XE\system.dbf',
    'C:\oracle\xeprod\oradata\XE\undo.dbf',
    'C:\oracle\xeprod\oradata\XE\sysaux.dbf',
    'C:\oracle\xeprod\oradata\XE\users.dbf'
    LOGFILE
    GROUP 1 SIZE 51200K,
    GROUP 2 SIZE 51200K,
    RESETLOGS...
    Shutting down instance: further logons disabled
    Thu Mar 30 11:39:29 2006
    Stopping background process CJQ0
    Thu Mar 30 11:39:29 2006
    Stopping background process MMNL
    Thu Mar 30 11:39:29 2006
    Stopping background process MMON
    Thu Mar 30 11:39:30 2006
    Shutting down instance (immediate)
    License high water mark = 1
    Thu Mar 30 11:39:30 2006
    Stopping Job queue slave processes
    Thu Mar 30 11:39:30 2006
    Job queue slave processes stopped
    Waiting for dispatcher 'D000' to shutdown
    All dispatchers and shared servers shutdown
    Thu Mar 30 11:39:32 2006
    ALTER DATABASE CLOSE NORMAL
    ORA-1507 signalled during: ALTER DATABASE CLOSE NORMAL...
    ARCH: Archival disabled due to shutdown: 1089
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    ARCH: Archival disabled due to shutdown: 1089
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    Thu Mar 30 11:39:34 2006
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Picked latch-free SCN scheme 2
    Using LOG_ARCHIVE_DEST_10 parameter default value as USE_DB_RECOVERY_FILE_DEST
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =10
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    ksdpec: called for event 13740 prior to event group initialization
    Starting up ORACLE RDBMS Version: 10.2.0.1.0.
    System parameters with non-default values:
    sessions = 49
    sga_target = 285212672
    control_files = C:\ORACLE\XEPROD\ORADATA\XE\CONTROL.DBF
    compatible = 10.2.0.1.0
    db_recovery_file_dest = C:\oracle\xeprod\app\oracle\flash_recovery_area
    db_recovery_file_dest_size= 10737418240
    undo_management = AUTO
    undo_tablespace = UNDO
    remote_login_passwordfile= EXCLUSIVE
    dispatchers = (PROTOCOL=TCP) (SERVICE=XEXDB)
    shared_servers = 4
    audit_file_dest = C:\ORACLE\XEPROD\APP\ORACLE\ADMIN\XE\ADUMP
    background_dump_dest = C:\ORACLE\XEPROD\APP\ORACLE\ADMIN\XE\BDUMP
    user_dump_dest = C:\ORACLE\XEPROD\APP\ORACLE\ADMIN\XE\UDUMP
    core_dump_dest = C:\ORACLE\XEPROD\APP\ORACLE\ADMIN\XE\CDUMP
    db_name = XE
    open_cursors = 300
    os_authent_prefix =
    pga_aggregate_target = 94371840
    PMON started with pid=2, OS id=756
    PSP0 started with pid=3, OS id=796
    MMAN started with pid=4, OS id=836
    DBW0 started with pid=5, OS id=928
    LGWR started with pid=6, OS id=152
    CKPT started with pid=7, OS id=924
    SMON started with pid=8, OS id=932
    RECO started with pid=9, OS id=1212
    MMON started with pid=10, OS id=1272
    MMNL started with pid=11, OS id=1296
    Thu Mar 30 11:39:35 2006
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    starting up 4 shared server(s) ...
    Oracle Data Guard is not available in this edition of Oracle.
    Thu Mar 30 11:39:35 2006
    Create controlfile reuse set database "XE"
    MAXINSTANCES 8
    MAXLOGHISTORY 1
    MAXLOGFILES 16
    MAXLOGMEMBERS 3
    MAXDATAFILES 100
    Datafile
    'C:\oracle\xeprod\oradata\XE\system.dbf',
    'C:\oracle\xeprod\oradata\XE\undo.dbf',
    'C:\oracle\xeprod\oradata\XE\sysaux.dbf',
    'C:\oracle\xeprod\oradata\XE\users.dbf'
    LOGFILE
    GROUP 1 SIZE 51200K,
    GROUP 2 SIZE 51200K,
    RESETLOGS
    Thu Mar 30 11:39:35 2006
    WARNING: Default Temporary Tablespace not specified in CREATE DATABASE command
    Default Temporary Tablespace will be necessary for a locally managed database in future release
    Thu Mar 30 11:39:35 2006
    Errors in file c:\oracle\xeprod\app\oracle\admin\xe\udump\xe_ora_1144.trc:
    ORA-01565: error in identifying file 'C:\oracle\xeprod\oradata\XE\system.dbf'
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) The system cannot find the file specified.
    ORA-1503 signalled during: Create controlfile reuse set database "XE"
    MAXINSTANCES 8
    MAXLOGHISTORY 1
    MAXLOGFILES 16
    MAXLOGMEMBERS 3
    MAXDATAFILES 100
    Datafile
    'C:\oracle\xeprod\oradata\XE\system.dbf',
    'C:\oracle\xeprod\oradata\XE\undo.dbf',
    'C:\oracle\xeprod\oradata\XE\sysaux.dbf',
    'C:\oracle\xeprod\oradata\XE\users.dbf'
    LOGFILE
    GROUP 1 SIZE 51200K,
    GROUP 2 SIZE 51200K,
    RESETLOGS...
    Thu Mar 30 11:39:35 2006
    Stopping background process MMNL
    Thu Mar 30 11:39:36 2006
    Stopping background process MMON
    Starting background process MMON
    Starting background process MMNL
    MMON started with pid=10, OS id=580
    MMNL started with pid=11, OS id=1288
    Thu Mar 30 11:39:36 2006
    ALTER SYSTEM enable restricted session;
    Thu Mar 30 11:39:36 2006
    alter database "XE" open resetlogs
    ORA-1507 signalled during: alter database "XE" open resetlogs...
    Thu Mar 30 11:39:36 2006
    alter database drop logfile group 3
    ORA-1507 signalled during: alter database drop logfile group 3...
    Thu Mar 30 11:39:36 2006
    ALTER TABLESPACE TEMP ADD TEMPFILE 'C:\oracle\xeprod\oradata\XE\temp.dbf' SIZE 20480K REUSE AUTOEXTEND ON NEXT 640K MAXSIZE UNLIMITED
    ORA-1109 signalled during: ALTER TABLESPACE TEMP ADD TEMPFILE 'C:\oracle\xeprod\oradata\XE\temp.dbf' SIZE 20480K REUSE AUTOEXTEND ON NEXT 640K MAXSIZE UNLIMITED...
    Thu Mar 30 11:39:36 2006
    ALTER SYSTEM disable restricted session;
    Shutting down instance: further logons disabled
    Thu Mar 30 11:39:37 2006
    Stopping background process MMNL
    Thu Mar 30 11:39:38 2006
    Stopping background process MMON
    Thu Mar 30 11:39:38 2006
    Shutting down instance (immediate)
    License high water mark = 1
    Waiting for dispatcher 'D000' to shutdown
    Waiting for shared server 'S000' to die
    Waiting for shared server 'S002' to die
    Waiting for shared server 'S003' to die
    All dispatchers and shared servers shutdown
    Thu Mar 30 11:39:39 2006
    ALTER DATABASE CLOSE NORMAL
    ORA-1507 signalled during: ALTER DATABASE CLOSE NORMAL...
    ARCH: Archival disabled due to shutdown: 1089
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    ARCH: Archival disabled due to shutdown: 1089
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    Thu Mar 30 11:39:42 2006
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Picked latch-free SCN scheme 2
    Using LOG_ARCHIVE_DEST_10 parameter default value as USE_DB_RECOVERY_FILE_DEST
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =10
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    ksdpec: called for event 13740 prior to event group initialization
    Starting up ORACLE RDBMS Version: 10.2.0.1.0.
    System parameters with non-default values:
    sessions = 49
    spfile = C:\ORACLE\XEPROD\APP\ORACLE\PRODUCT\10.2.0\SERVER\DBS\SPFILEXE.ORA
    sga_target = 285212672
    control_files = C:\ORACLE\XEPROD\ORADATA\XE\CONTROL.DBF
    compatible = 10.2.0.1.0
    db_recovery_file_dest = C:\oracle\xeprod\app\oracle\flash_recovery_area
    db_recovery_file_dest_size= 10737418240
    undo_management = AUTO
    undo_tablespace = UNDO
    remote_login_passwordfile= EXCLUSIVE
    dispatchers = (PROTOCOL=TCP) (SERVICE=XEXDB)
    shared_servers = 4
    job_queue_processes = 4
    audit_file_dest = C:\ORACLE\XEPROD\APP\ORACLE\ADMIN\XE\ADUMP
    background_dump_dest = C:\ORACLE\XEPROD\APP\ORACLE\ADMIN\XE\BDUMP
    user_dump_dest = C:\ORACLE\XEPROD\APP\ORACLE\ADMIN\XE\UDUMP
    core_dump_dest = C:\ORACLE\XEPROD\APP\ORACLE\ADMIN\XE\CDUMP
    db_name = XE
    open_cursors = 300
    os_authent_prefix =
    pga_aggregate_target = 94371840
    PMON started with pid=2, OS id=1480
    PSP0 started with pid=3, OS id=1484
    MMAN started with pid=4, OS id=1488
    DBW0 started with pid=5, OS id=576
    LGWR started with pid=6, OS id=1492
    CKPT started with pid=7, OS id=1496
    SMON started with pid=8, OS id=1260
    RECO started with pid=9, OS id=376
    CJQ0 started with pid=10, OS id=824
    MMON started with pid=11, OS id=244
    MMNL started with pid=12, OS id=1636
    Thu Mar 30 11:39:42 2006
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    starting up 4 shared server(s) ...
    Oracle Data Guard is not available in this edition of Oracle.
    Thu Mar 30 11:39:42 2006
    ALTER DATABASE MOUNT
    Thu Mar 30 11:39:42 2006
    ORA-00202: control file: 'C:\ORACLE\XEPROD\ORADATA\XE\CONTROL.DBF'
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) The system cannot find the file specified.
    Thu Mar 30 11:39:42 2006
    ORA-205 signalled during: ALTER DATABASE MOUNT...
    Thu Mar 30 11:41:54 2006
    alter database mount
    Thu Mar 30 11:41:54 2006
    ORA-00202: control file: 'C:\ORACLE\XEPROD\ORADATA\XE\CONTROL.DBF'
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) The system cannot find the file specified.
    ORA-205 signalled during: alter database mount
    Thanks,
    Lucian

    I think the relevant error from the log file is as follows
    ORA-01565: error in identifying file 'C:\oracle\xeprod\oradata\XE\system.dbf'
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) The system cannot find the file specified.
    ORA-1503 signalled during: Create controlfile reuse set database "XE
    There are a couple of things to consider here
    Why is this install going into c:\oracle\xeprod ? If should be going into C:\oraclexe. Did you do something to change the default install infrastructure ?
    Secondly - sometimes we see this unable to open file error message if some other process is reading the file at the same time as the installer is trying to install it. Anti virus software and Google desktop have been culprits to date.

  • Oracle Clinical - install.sh not working - says not found or Java runtime error.

    install.sh not working - need help
    Hi all,
    OS Solaris 8. Sun Sparc 20 - 256 MB 9.1 GB. I am using csh for this install as instructed for the user OPAPPS.
    I have installed Oracle 8.1.6 Rel 2 on the SUN Sparc. Everything is fine and a customised DB has been created. Now I
    have to install an Oracle application on the same server. I have a working knowledge of Unix but I don't know scripting.
    I logged in as OPAPPS as required. (.chsrc). I have set the path with all possible directories and made it a member of
    group DBA as requested.
    I put the CD in the CDROM and then cd /cdrom
    # install.sh
    BUT I get this message: install.sh not found.
    install.sh is there on the CD. This is the contents of install.sh from the CD
    #!/bin/sh
    os=`uname | tr A-A a-z`
    case "$os" in
    sunos) platform=solaris
    hp-ux) platform=hp-ux
    osf1) platform=decunix
    esac
    #The environment variable $SRCHOME cannot be set during installation
    unset SRCHOME
    unset SHLIB_PATH
    CMDDIR=`dirname $0`
    if [ "CMDDIR" = "." ]; then
    CMDDIR=`pwd`;
    fi
    # Replace relatove path with fully qualified path
    if [ ! "`echo $CMDDIR|grep '^/'`" ]; then
    CMDDIR=`pwd`/$CMDDIR;
    fi
    if [ x${PATH} != x ] ; then
    PATH=$PATH:/usr/bin: /bin
    export PATH
    else
    PATH=/usr/bin:/bin
    fi
    cd $CMDDIR/$platform/Disk1/install/$platform
    ./runinstaller $*
    directory structure on CD
    -r-xr-xr-x 1 root sys 638 Aug 23 2000 install.sh
    dr-xr-xr-x solaris
    dr-xr-xr-x hpunix
    dr-xr-xr-x decunix
    dr-xr-xr-x nls732
    solaris/disk1/install/solaris and the file
    -r-xr-xr-x runinsta.
    -r-xr-xr-x oraparm.ini
    dr-xr-xr-x images
    d .
    d ..
    Would anybody know why I get install.sh NOT found when it is there?. This executabel is on the CD. I am not sure why it gives
    a java runtime error message when it is OK. Remember, I have already installed Oracle 8i using the same environment with the existing java runtime .
    Thanks for your help.

    Hi,
    I am installing Oracle clinical 4.5.x.
    I need to know whether both the Database server and application server for Oracle Clinical can be installed on same server(windows 2000 server).
    Both of them are installed on windows platform.
    It seems that u have tried the single node installation.
    So,please give all the possible details regarding the single node installation for oracle clinical no matter what platform it is.
    Please reply me as soon as possible, its urgent.
    Thanking u in advance.

  • The link to a user defined oracle stored procedure does not work

    This is based on the HowTo Download a file
    http://otn.oracle.com/products/database/htmldb/howtos/howto_file_upload.html
    I have given a link to a procedure as follows, which will download the file (as given in the HowTo):
    #OWNER#.download_my_file?p_file=#ID#.
    However, this does not work. It tries to open a page rather than executing the procedure. It displays the page not found message

    that page not found message is a generic one. you'd want to check your apache logs for more info on what really happened. my guess is that you missed step 5 of that how-to, "grant execute on download_my_file to public"
    hope this helps,
    raj

  • WebDynpro ActiveX  Button in Interactive form- not working in IE

    Hi,
    1)     I am working with Interactive forms in WebDynpro. When I deploy the application, the PDF form is opens in a browser window, But the WebDynpro ActiveX button ( to call a method in view Controller) is not working.
      When I copy the URL and try in another sysetm, its working.
      I hope the probelem is with the browser settings.
    2) And also, the 'https' URLs does not work properly in my IE.
    Can you give me a solution for these problems?
    Thanks,
    Prabhakar.

    Hi Prabhakar,
    I doubt this is anything to do with the browser. Please let me know if you have already installed SAP Active Control Framework on your desktop.
    I think this might be an issue. Also check for Adobe Reader version in both the machine.
    Cheers
    Satya

  • Interactive buttons not working on interactive pdf when the Indesign links are set correctly

    Hi all,
    I have one Indesign CS6 manual containing 17 files, 126 pages. This has been set to a book file.
    This has been translated into 14 languages and now we are having problems creating the interactive pdfs.
    After fixing the broken interactive buttons within the Indd files, we are finding that when we create the interactive pdfs, not all interactive button links work. When we recreate the same langauge interactive pdf we are finding that the buttons that were not working the 1st time, are now working, and some buttons that were working, are now not working.
    Is there a bug somewhere.
    Any idea why the interactive buttons work one minute and then not the next, and vice versa.
    Any idea how we can fix.
    I’m using Indesign CS6 and Acrobat 9 Pro.
    Thanks in advance.

    Hi LoriAUC,
    Thanks for this. Very much appreciated.
    I have asked sagar-khanna from the other discussion is he knows more about the broken links etc.
    Thanks again.
    Julie :-)

  • Default Dashboard not working after user login

    Hi All,
    We have one issue in 11.1.1.7.1 where PORTALPATH is not working for users. As a result, user lands on home page/recent page instead of the default dashboard after login.
    I followed Doc ID 1576576.1 and Bug 17071629 - PORTALPATH SESSION VARIABLE IS INEFFECTIVE is reported. I applied patch 17071629 on top of 7.1. I have tried and verified that
    ·     The URL we are using to login is “http://machinename:9704/analytics/saw.dll?bieehome&startPage=1”
    ·         There is no Start Page set  in user’s My Account other than Default.
    ·         In Answers, the PORTALPATH session variable fetches correct dashboard path.
    ·         I removed space in the dashboard name and tried with following path “/shared/Dashboard/_portal/PortalPathTest”. Also, assigned same default value to the session variable. I also tried “/Shared Folders/Dashboard/Dashboards/PortalPathTest” and “%2fshared%2fDashboard%2f_portal%2fPortalPathTest” but nothing works.
    ·         lsinventory shows the patch got applied successfully.
    One thing to notice -
    1.       Login url is: "http://machinename:9704/analytics/saw.dll?bieehome&startPage=1"
    2.       After login, browser URL gets changed to "http://http://scoreboard-sit.wellsfargo.com:9704/analytics/saw.dll?bieehomemachinename:9704/analytics/saw.dll?bieehome" and shows Home Page instead of default dashboard.
    3.       Now at this stage, if I append "&startPage=1" to the above step 2 URL in browser, it automatically navigates to correct default dashboard.
    Also, This patch has fixed default dashboard in Act As. That means, If I act as a User, I land on correct default dashboard. But if same user actually logs in, s/he lands on home page.
    I suspect if URL redirection after login is the actual issue. Please suggest if anyone has an idea.
    Thanks,
    Akshat

    I think this was the issue -
    There was a java script error related to an undefined object, "accessMode" in logon.js.  This is related to Accessibility or Section 508 (checked by Developer Tools of IE).  We may have removed this code from the logon page which was causing the error. We had customized the page quite a bit previously. When I ignore the error and step through, I go to the correct portal path page. So we are going to replace the logon.js file with backup and hopefully it will fix the issue.
    Cheers!
    Akshat

Maybe you are looking for

  • Phone not recognized and says connect to itunes

    iPhone 4s is not recognized by Windows 7, or itunes after update to itunes 10.7. Iphone screen shows usb cable and iTunes icon, saying connect to itunes. I have uninstalled and reinstalled, all itunes programs via the instructions on TS1538. Nothing

  • HT201181 hi, in apple MacBook Air 11.6" what is the shortcut key for print screen

    hi, in apple MacBook Air 11.6" what is the shortcut key for print screen

  • Unable to see the imported files in ODI after executing my java program

    Hi, I am using the following java code to import the physical topology into ODI11G. =========================================================================== ImportServiceImpl importService = new ImportServiceImpl(pOdiInstance); importService.impor

  • Submit a program with LDB

    Hi, My Issue is when I execute a program (ZRHECM_PRINT_CRS Copy of  RHECM_PRINT_CRS) directily It is generating the output for me in the form of xstring, But when I submit it with same parameter inside a function module It is not going to (get) state

  • Qr code idea

    Hi , i have an idea for a Qr Code, i was wondering can Qr codes be used to download images and videos? 2nd  can a Qr code be used to down load a image of a business card? if so how would that be created? 3rd. can it be used to down load a portfolio g