Standby redo log does not exist...

Hello,
Oracle 11.2.0.2, running on Solaris
This is kind of a continuation of a previous thread, but this is a different question:
I have a DG configuration, with the primary database having 2 redo logs per redo log group.
And, it has 2 redo logs for the standby redo log groups.
But I just found out something very strange:
For the standby redo log group, even though the database shows it has two redo log files per group, the second file does not actually exist on the file system.
And, I have no idea where it is, or why the database is not complaining about it.
See below:
SQL> select * from v$logfile;
         GROUP# STATUS    TYPE    MEMBER                                        IS_
             11           STANDBY /opt/oracle/oradata2/PROD/REDO01A_STDBY.log NO
             11           STANDBY /opt/oracle/oradata3/PROD/REDO01B_STDBY.log NO    <== does not exist on file system
             12           STANDBY /opt/oracle/oradata2/PROD/REDO02A_STDBY.log NO
             12           STANDBY /opt/oracle/oradata3/PROD/REDO02B_STDBY.log NO    <== does not exist on file system
             13           STANDBY /opt/oracle/oradata2/PROD/REDO03A_STDBY.log NO
             13           STANDBY /opt/oracle/oradata3/PROD/REDO03B_STDBY.log NO    <== does not exist on file system
             14           STANDBY /opt/oracle/oradata2/PROD/REDO04A_STDBY.log NO
             14           STANDBY /opt/oracle/oradata3/PROD/REDO04B_STDBY.log NO    <== does not exist on file system
             15           STANDBY /opt/oracle/oradata2/PROD/REDO05A_STDBY.log NO
             15           STANDBY /opt/oracle/oradata3/PROD/REDO05B_STDBY.log NO    <== does not exist on file system
              5           ONLINE  /opt/oracle/oradata1/PROD/REDO05A.log       NO
              5           ONLINE  /opt/oracle/oradata2/PROD/REDO05B.log       NO
              6           ONLINE  /opt/oracle/oradata1/PROD/REDO06A.log       NO
              6           ONLINE  /opt/oracle/oradata2/PROD/REDO06B.log       NO
              7           ONLINE  /opt/oracle/oradata1/PROD/REDO07A.log       NO
              7           ONLINE  /opt/oracle/oradata2/PROD/REDO07B.log       NO
              8           ONLINE  /opt/oracle/oradata1/PROD/REDO08A.log       NO
              8           ONLINE  /opt/oracle/oradata2/PROD/REDO08B.log       NO
18 rows selected.
Notice below that the "B" redo logs do not exist.
SQL> !ls -l /opt/oracle/oradata3/PROD/REDO01B_STDBY.log
/opt/oracle/oradata3/PROD/REDO01B_STDBY.log: No such file or directory
SQL> !ls -l /opt/oracle/oradata3/PROD/REDO02B_STDBY.log
/opt/oracle/oradata3/PROD/REDO02B_STDBY.log: No such file or directory
SQL> !ls -l /opt/oracle/oradata3/PROD/REDO03B_STDBY.log
/opt/oracle/oradata3/PROD/REDO03B_STDBY.log: No such file or directory
SQL> !ls -l /opt/oracle/oradata3/PROD/REDO04B_STDBY.log
/opt/oracle/oradata3/PROD/REDO04B_STDBY.log: No such file or directory
SQL> !ls -l /opt/oracle/oradata3/PROD/REDO05B_STDBY.log
/opt/oracle/oradata3/PROD/REDO05B_STDBY.log: No such file or directory
But here, you can see that the "A" redo logs actually do exist.
SQL> !ls -l /opt/oracle/oradata2/PROD/REDO01A_STDBY.log
-rw-r-----   1 oracle   dba      536871424 Jan  7  2011 /opt/oracle/oradata2/PROD/REDO01A_STDBY.log

Hello;
I'm able to recreate
SQL> select * from v$logfile;
    GROUP# STATUS  TYPE    MEMBER                                             IS_
         3         ONLINE  /u01/app/oracle/flash_recovery_area/RECOVER2/onlin YES
                           elog/o1_mf_3_8gtxxrl6_.log
         2         ONLINE  /u01/app/oracle/flash_recovery_area/RECOVER2/onlin YES
                           elog/o1_mf_2_8gtxxr4f_.log
         1         ONLINE  /u01/app/oracle/flash_recovery_area/RECOVER2/onlin YES
                           elog/o1_mf_1_8gtxxqng_.log
         4         STANDBY /u01/app/oracle/oradata/RECOVER2/redo04.log        NO
         5         STANDBY /u01/app/oracle/oradata/RECOVER2/redo05.log        NO
         6         STANDBY /u01/app/oracle/oradata/RECOVER2/redo06.log        NOAnd then
SQL> !ls -al /u01/app/oracle/oradata/RECOVER2/redo04.log
ls: /u01/app/oracle/oradata/RECOVER2/redo04.log: No such file or directoryChecking... *Not there, but Oracle ( 11.2.0.3 ) allows clean up without barking. Had only one member so I did GROUP drop.
SQL> ALTER DATABASE DROP LOGFILE GROUP 4;
Database altered.
SQL> select * from v$logfile;
    GROUP# STATUS  TYPE    MEMBER                                             IS_
         3         ONLINE  /u01/app/oracle/flash_recovery_area/RECOVER2/onlin YES
                           elog/o1_mf_3_8gtxxrl6_.log
         2         ONLINE  /u01/app/oracle/flash_recovery_area/RECOVER2/onlin YES
                           elog/o1_mf_2_8gtxxr4f_.log
         1         ONLINE  /u01/app/oracle/flash_recovery_area/RECOVER2/onlin YES
                           elog/o1_mf_1_8gtxxqng_.log
         5         STANDBY /u01/app/oracle/oradata/RECOVER2/redo05.log        NO
         6         STANDBY /u01/app/oracle/oradata/RECOVER2/redo06.log        NO
SQL> Best Regards
mseberg

Similar Messages

  • Why do we need standby redo log on Primary database.

    Hi Gurus,
    I was going through the document in OBE,
    http://www.oracle.com/technology/obe/11gr1_db/ha/dataguard/physstby/physstdby.htm
    I have two queries:
    1) I noticed the statement -
    "Configure the primary database to receive redo data, by adding the standby logfiles to the primary. "
    Why do we have to create standby redo log on a primary database?
    2) There is another statement --
    "It is highly recommended that you have one more standby redo log group than you have online redo log groups as the primary database. The files must be the same size or larger than the primary database’s online redo logs. "
    Why do we need one additional standby redo log group than in Primary database.
    Could anyone please explain to me in simple words.
    Thanks
    Cherrish Vaidiyan

    Hi,
    1. Standby redo logs are used only when the database_role is standby, it is recommended to be added in primary also so that they can be used on role reversal, however during normal working standby redo logs will not be used at all on primary.
    2. In case of 3 online redo log groups, it is recommended to use 4 standby redo log group this is in case if log switching is happening frequently on primary and all 3 standby redo logs are still not completely archived on the standby and 4th can be used here as there will be some delay on standby due to network or slowness of arch on standby.
    Use of the standby redo log groups depends on the redo generation rate, you can see only 2 standby redo logs are getting used while you have 4 standby redo log groups, when the redo generation rate is less.
    So it is recommended to have one more standby redo log group when redo generation rate is high and all of the existing standby redo log group are getting used.
    Regards
    Anudeep

  • Standby redo log file

    Hi,
    From oracle document i know in the standby side the RFS process writes to Standby redo log file -> archive log and the MRP procees applys the archive logs to the standby database.
    my question is ,if we dont create standby redo log file what happens?

    Hello;
    When redo is received by an RFS on the standby , the RFS process writes the redo data into archived redo logs or optionally to the SRL.
    Standby Redo Logs is where the RFS process at your Standby database writes incoming redo, they help performance because the RFS does not have to create the Archive log file.
    Standby redo logs are a component of the Data Guard setup. They should be the same size as the redo logs on the Primary.
    Standby Redo Logs do not not to be multiplexed.
    I would create SRL them on both the Primary and the Standby. Think of it as one database in either Standby or Primary Mode. If you have to switchover you still need them.
    If you have SRL's setup and need to do either a failover or switchover it should occur faster and safer.
    Best Regards
    mseberg

  • Problem in compiling JDeveloper 11g R2 - package does not exist

    I did a clean all to my application and now me thousand mistakes of references appear during the compilation, which could have failed?
    Project: C:\JDeveloper\mywork\CentauroVirgen\CentauroWeb15\CentauroWeb15.jpr
    C:\JDeveloper\mywork\CentauroVirgen\CentauroWeb15\src\com\bbog\centauro\controlador\servlet\administracion\ModificaProductosArchivoServlet.java
    Error(23,39): package com.bbog.centauro.negocio.comun does not exist
    Error(24,39): package com.bbog.centauro.negocio.comun does not exist
    Error(25,39): package com.bbog.centauro.negocio.comun does not exist
    Error(26,41): package com.bbog.centauro.persistencia.vo does not exist
    Error(27,41): package com.bbog.centauro.persistencia.vo does not exist
    C:\JDeveloper\mywork\CentauroVirgen\CentauroWeb15\src\com\bbog\centauro\controlador\servlet\administracion\ProcedimientoServlet.java
    Error(22,39): package com.bbog.centauro.negocio.comun does not exist
    Error(23,39): package com.bbog.centauro.negocio.comun does not exist
    Error(24,39): package com.bbog.centauro.negocio.comun does not exist
    C:\JDeveloper\mywork\CentauroVirgen\CentauroWeb15\src\com\bbog\centauro\controlador\servlet\administracion\ProcesaOpcionesServlet.java
    Error(17,39): package com.bbog.centauro.negocio.comun does not exist
    Error(18,39): package com.bbog.centauro.negocio.comun does not exist
    Error(19,39): package com.bbog.centauro.negocio.comun does not exist
    C:\JDeveloper\mywork\CentauroVirgen\CentauroWeb15\src\com\bbog\centauro\controlador\servlet\interfaces\GeneracionArchivoVNoMonServlet.java
    Error(22,39): package com.bbog.centauro.negocio.comun does not exist
    Error(23,39): package com.bbog.centauro.negocio.comun does not exist
    Error(24,39): package com.bbog.centauro.negocio.comun does not exist
    C:\JDeveloper\mywork\CentauroVirgen\CentauroWeb15\src\com\bbog\centauro\controlador\servlet\administracion\ParametroValidacionServlet.java
    Error(22,39): package com.bbog.centauro.negocio.comun does not exist
    Error(23,39): package com.bbog.centauro.negocio.comun does not exist
    Error(24,39): package com.bbog.centauro.negocio.comun does not exist
    C:\JDeveloper\mywork\CentauroVirgen\CentauroWeb15\src\com\bbog\centauro\controlador\servlet\timer\EnviarCronAutomaticoServlet.java
    Error(20,39): package com.bbog.centauro.negocio.comun does not exist
    Error(21,39): package com.bbog.centauro.negocio.comun does not exist
    C:\JDeveloper\mywork\CentauroVirgen\CentauroWeb15\src\com\bbog\centauro\controlador\servlet\administracion\ParametrosContingenciaServlet.java
    Error(3,39): package com.bbog.centauro.negocio.comun does not exist
    Error(6,48): package com.bbog.centauro.persistencia.exception does not exist
    Error(7,42): package com.bbog.centauro.persistencia.dao does not exist
    Error(9,34): package com.bbog.centauro.util.log does not exist
    C:\JDeveloper\mywork\CentauroVirgen\CentauroWeb15\src\com\bbog\centauro\controlador\servlet\timer\EnviarPagosAutomaticoServlet.java
    Error(20,39): package com.bbog.centauro.negocio.comun does not exist
    Error(21,39): package com.bbog.centauro.negocio.comun does not exist
    C:\JDeveloper\mywork\CentauroVirgen\CentauroWeb15\src\com\bbog\centauro\controlador\servlet\administracion\ConsultaParametroValidacionServlet.java
    Error(22,39): package com.bbog.centauro.negocio.comun does not exist
    Error(23,39): package com.bbog.centauro.negocio.comun does not exist
    Error(24,39): package com.bbog.centauro.negocio.comun does not exist
    Error(25,41): package com.bbog.centauro.persistencia.vo does not exist
    C:\JDeveloper\mywork\CentauroVirgen\CentauroWeb15\src\com\bbog\centauro\controlador\servlet\login\DatosLoginServlet.java

    Hi.
    Please always state the JDev version you use when you ask a question.
    What do you mean exactly by cleanup? From the look of it, either you changed the package declaration at the top of you Java files for something that doesn't exist or renamed the on-disk directories in the package structure to something that doesn't match the package declarations in your code.
    Do not forget there is a direct correlation between packages names and directories.
    So, if you have package
    com.oracle.blueberryYou will have the following on the disk:
    src\com\oracle\blueberryBest Regards,
    Frédéric.

  • Standby Redo Log Files ?

    Hi Everyone,
    Today after reading two different sources for Standby Protection Modes i found myself puzzled and stuck. One of the article from Burleson.com says 'Oracle supports the standby redo logs on a logical standby database and can now be configured in maximum data protection modes such as MAXIMUM PROTECTION ...'
    On the other hand on some of the blogs and other resources to read, i found it something opposite to what Burleson Consulting posted on their website.
    [http://4.bp.blogspot.com/-t0G_-xc8EAs/Tpvx9w2t8oI/AAAAAAAAAN4/Jw3U9s89Wtk/s1600/final.JPG|http://4.bp.blogspot.com/-t0G_-xc8EAs/Tpvx9w2t8oI/AAAAAAAAAN4/Jw3U9s89Wtk/s1600/final.JPG]
    or
    Blog from Jeff Hunter
    [http://www.idevelopment.info/data/Oracle/DBA_tips/Data_Guard/DG_3.shtml|http://www.idevelopment.info/data/Oracle/DBA_tips/Data_Guard/DG_3.shtml]
    Minimum Requirements for Data Protection Modes
         Maximum Protection      Maximum Availability      Maximum Performance
    Redo Archival Process      LGWR      LGWR      LGWR or ARCH
    Network Transmission Mode SYNC      SYNC      ASYNC when using LGWR process. Not applicable when using ARCH process.
    Disk Write Option      AFFIRM      AFFIRM      NOAFFIRM
    Standby Redo Logs Required?      Yes      Required for physical standby databases only (Standby redo logs are not supported for logical standby databases.)      Required for physical standby databases using the LGWR process.
    Database Type      Physical only      Physical and Logical      Physical and Logical
    Please help me to find true between the two.
    Or please provide any doc to read.
    Thanks
    Prashant Dixit

    Maximum Protection Maximum Availability Maximum PerformanceDepends on Business requirement, By default Performance[most of the clients]
    Redo Archival Process ? ? ?LGWR recommended in Max performance
    Network Transmission Mode ? ? ?Depends. If max performance asynchronous
    Disk Write Option ? ? ?Not clear
    Standby Redo Logs Required? ? ? ?If real time apply - YES
    Database Type ? ? ?not clear,
    Assuming physical or logical? --Depends on requirement , Preferably Physical.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • When is anything written to standby redo logs on standby database?

    I am on Oracle 10.2.0.4 on HP UNIX. I have read Oracle 10.2 concepts guide on technet.oracle.com, have read may article on metalink and internet, yet I am unable to verify when anything is written to standby redo logs on stand by database.
    I have a simple database reconfiguration: a primary database and one standby database.
    I created primary database and set up log_archive_dest_2 to use LGWR SYNC AFFIRM
    I have created standby redo logs on primary.
    alter database add standby logfile GROUP
    I create standby control file on primary.
    I copied all the primary information to create standby database. I have put standby database in managed recovery.
    I did archive log switches, I created a table and inserted information in table.
    I never saw standby redo logs updated on standby database by looking at timestamp of standby redo log files.
    I then setup database in maximum availability mode by running following on primary:
    Alter database set standby database to maximize availability
    When I do insert into my tables, I do see standby redo log files on primary database being updated, but I have never seen standby redo logs on standby database updated. Why?
    I am still at loss when actually standby redo logs are updated on standby database.
    When I read Oracle 9i database documentation on data guard, it says that you do not need standby redo logs on primary instead you need them on standby. Only reason, you need them on primary is from primary changes role to standby database, so standby redo logs on standby database should be updated instead of standby redo logs on primary.

    What is the PROTECTION_MODE ,PROTECTION_LEVEL values of your database.
    As per metalink:--
    Create standby redo log files, if necessary:
    Standby redo logs are necessary for the higher protection levels such as
    Guaranteed, Instant, and Rapid. In these protection modes LGWR from the
    Primary host writes transactions directly to the standby redo logs.
    This enables no data loss solutions and reduces the amount of data loss
    in the event of failure. Standby redo logs are not necessary if you are using
    the delayed protection mode.
    If you configure standby redo on the standby then you should also configure
    standby redo logs on the primary database. Even though the standby redo logs
    are not used when the database is running in the primary role, configuring
    the standby redo logs on the primary database is recommended in preparation
    for an eventual switchover operation.
    Standby redo logs must be archived before the data can be applied to the
    standby database. The standby archival operation occurs automatically, even if
    the standby database is not in ARCHIVELOG mode. However, the archiver process
    must be started on the standby database. Note that the use of the archiver
    process (ARCn) is a requirement for selection of a standby redo log.
    METALINK ID:- Doc ID: Note:219344.1
    Edited by: Anand... on Sep 15, 2008 2:15 AM

  • ORA-00339: archived log does not contain any redo

    Hi All,
    recently we faced 'ORA-00339: archived log does not contain any redo' issue at standby side,
    after searching on Google and from Metalink (note 30866.1 and 7197445.8 ) I find out that this is the known issue for 10g and below versions, our's is 11.2.0.3,
    Error in Alert Log :
    Errors in file /oracle/ora_home/diag/diag/rdbms/dwprd/DWPRD/trace/DWPRD_pr0a_48412.trc:
    ORA-00339: archived log does not contain any redo
    ORA-00334: archived log: '/redolog2/redo/redolog3a.log'
    Errors in file /oracle/ora_home/diag/diag/rdbms/dwprd/DWPRD/trace/DWPRD_pr0a_48412.trc (incident=190009):
    ORA-00600: internal error code, arguments: [kdBlkCheckError], [1], [56702], [6114], [], [], [], [], [], [], [], []
    Incident details in: /oracle/ora_home/diag/diag/rdbms/dwprd/DWPRD/incident/incdir_190009/DWPRD_pr0a_48412_i190009.trc
    Use ADRCI or Support Workbench to package the incident.
    See Note 411.1 at My Oracle Support for error and packaging details.
    Slave exiting with ORA-10562 exception
    Errors in file /oracle/ora_home/diag/diag/rdbms/dwprd/DWPRD/trace/DWPRD_pr0a_48412.trc:
    ORA-10562: Error occurred while applying redo to data block (file# 1, block# 56702)
    ORA-10564: tablespace SYSTEM
    ORA-01110: data file 1: '/oradata1/database/DATAFILES/system01.dbf'
    ORA-10561: block type 'TRANSACTION MANAGED DATA BLOCK', data object# 2
    ORA-00600: internal error code, arguments: [kdBlkCheckError], [1], [56702], [6114], [], [], [], [], [], [], [], []
    Mon Apr 15 11:34:12 2013
    Dumping diagnostic data in directory=[cdmp_20130415113412], requested by (instance=1, osid=48412 (PR0A)), summary=[incident=190009].
    Thanks

    Hi,
    "The archived log is not the correct log.
    It is a copy of a log file that has never been used for redo generation, or was an online log being prepared to be the current log."
    "Restore the correct log file."
    Can you say, what is last changes on your database, On log files?
    Did you copies your '/redolog2/redo/redolog3a.log' log file from other ?
    Regards
    Mahir M. Quluzade

  • File does not exist: /www/public_html/null, referer:  - error in log file from IE8 and IE9

    I just updated an existing slide show that was created several months back. Since loading my new set of files to our web server, we keep getting the following error in our server log files when someone loads our page in IE8 and IE9:
    File does not exist: /www/public_html/null, referer:
    One of our programmers tracked the error to this line of code, but we're not sure what's causing it:
    Muse.Utils.addSelectorFn('#slideshowu70', function(elem) { new WebPro.Widget.ContentSlideShow(elem, {autoPlay:true,displayInterval:6000,slideLinkStopsSlideShow:false,transitionStyle:'horizo ntal',lightboxEnabled_runtime:false,shuffle:false}); });/* #slideshowu70 */
    Any suggestions?
    Thanks!

    The errors aren't showing up on the client side, only in the server access logs. Every time the page is loaded with IE8 or IE9 and the Muse.Utils.addSelectorFn with the #slideshowu70 line is hit, it generates four errors in the server access logs.
    Our admin guy pulled the errors from where it was clicked on from the Adobe forum. He said it also appeared that you tested it with www added to the url (if this was when you were testing it)...
    [Mon Feb 04 13:58:57 2013] [error] [client 121.242.198.2] File does not exist: /www/public_html/null, referer:http://stingrayboats.com/
    [Mon Feb 04 13:59:00 2013] [error] [client 121.242.198.2] File does not exist: /www/public_html/null, referer:http://stingrayboats.com/
    [Mon Feb 04 13:59:08 2013] [error] [client 121.242.198.2] File does not exist: /www/public_html/null, referer:http://stingrayboats.com/
    [Mon Feb 04 13:59:33 2013] [error] [client 121.242.198.2] File does not exist: /www/public_html/null, referer:http://www.stingrayboats.com/
    [Mon Feb 04 13:59:43 2013] [error] [client 121.242.198.2] File does not exist: /www/public_html/null, referer:http://www.stingrayboats.com/
    The reason we find it strange is because it did not result in errors with the previous version of the slideshow. The only thing that changed this time around is that I removed some slides and added additional ones, but I noticed that there is a lot of difference in the code and even the scripts that are used. And I did copy over all of the scripts, css files, etc., so it's using all of the new source files.
    I was hoping it was something that you guys had noticed if you review the access logs when you're testing. While it works perfectly on the client side, the IT guys do go through our access logs, so it would be nice to eliminate the errors.
    Thanks for looking at it!

  • User gets "This network connection does not exist" when she tries to log on to Terminal Server (2008 R2)

    User gets "This network connection does not exist" when she tryes to log on to Terminal Server (2008 R2)
    I got more than 100 users. Shes the only one getting is. We tried four computers (All Windows 7 Pro)
    Nothing useful in event viewer to mention.

    Hi,
    Thank you for posting in Windows Server Forum.
    Does that user able to login previously?
    From your comment, it seems that there is some permission issue with that user. As you have checked that user with different system also. Please check that user is added under “Remote Desktop User” local group and also allowed “Allow log on through
    Remote Desktop service” permission under group policy. Also please check that when user tries to login it uses “Domainname\Username” format.
    In addition for a try, also check by disabling firewall on one particular system.
    To add users and groups to the Remote Desktop Users group by using Local Users and Groups snap-in:
    1.  Click Start > Administrative Tools, Open Computer Management.
    2.  In the console tree, click the Local Users and Groups node.
    3.  In the details pane, double-click the Groups folder.
    4.  Double-click Remote Desktop Users, and then click
    Add.
    5.  In the Select Users dialog box, click Locations to specify the search location.
    6.  Click Object Types to specify the types of objects you want to search for.
    7.  Type the name you want to add in the Enter the object names to select (examples) box. 
    8.  Click Check Names.
    When the name is located, click OK.
    More information:
    Remote Desktop disconnected or can’t connect to remote computer or to Remote Desktop server (Terminal Server) that is running Windows Server 2008 R2
    http://support.microsoft.com/kb/2477176/en-us
    Hope it helps!
    Thanks,
    Dharmesh

  • File does not exist error in Apache error log

    I have been getting the following error in apache error log located at $INST_TOP/apps/PROD_aclapp/logs/ora/10.1.3/Apache
    [Wed Mar 14 15:17:00 2012] [error] [client 173.26.0.33] [ecid: 1331718420:172.25.16.30:2172:0:484,0] File does not exist: /d05_applhome/apps/apps_st/comn/java/classes/oracle/ewt/alert/resource/AlertBundle_en_IN.properties
    [Wed Mar 14 15:19:13 2012] [error] [client 173.20.0.85] [ecid: 1331718553:172.25.16.30:2497:0:56,0] Directory index forbidden by rule: /d05_applhome/apps/apps_st/comn/java/classes/
    [Wed Mar 14 15:21:47 2012] [error] [client 173.26.0.36] [ecid: 1331718707:172.25.16.30:5691:0:6316,0] Directory index forbidden by rule: /d05_applhome/apps/apps_st/comn/java/classes/
    [Wed Mar 14 15:21:47 2012] [error] [client 173.26.0.36] [ecid: 1331718707:172.25.16.30:5691:0:6317,0] File does not exist: /d05_applhome/apps/apps_st/comn/java/classes/oracle/apps/media/oracle/apps/media/splash.gif
    [Wed Mar 14 15:21:47 2012] [error] [client 173.26.0.36] [ecid: 1331718707:172.25.16.30:5691:0:6318,0] File does not exist: /d05_applhome/apps/apps_st/comn/java/classes/oracle/apps/media/oracle/apps/media/splash.gif
    [Wed Mar 14 15:22:45 2012] [error] [client 192.168.8.126] [ecid: 1331718765:172.25.16.30:5689:0:5903,0] Directory index forbidden by rule: /d05_applhome/apps/apps_st/comn/java/classes/
    [Wed Mar 14 15:22:45 2012] [error] [client 192.168.8.126] [ecid: 1331718765:172.25.16.30:5689:0:5904,0] File does not exist: /d05_applhome/apps/apps_st/comn/java/classes/oracle/apps/media/oracle/apps/media/splash.gif
    [Wed Mar 14 15:22:45 2012] [error] [client 192.168.8.126] [ecid: 1331718765:172.25.16.30:5689:0:5905,0] File does not exist: /d05_applhome/apps/apps_st/comn/java/classes/oracle/apps/media/oracle/apps/media/splash.gif
    [Wed Mar 14 15:22:48 2012] [error] [client 192.168.8.145] [ecid: 1331718768:172.25.16.30:5695:0:6487,0] File does not exist: /d05_applhome/apps/apps_st/comn/java/classes/oracle/ewt/alert/resource/AlertBundle_en_IN.class
    [Wed Mar 14 15:22:48 2012] [error] [client 192.168.8.145] [ecid: 1331718768:172.25.16.30:5695:0:6488,0] File does not exist: /d05_applhome/apps/apps_st/comn/java/classes/oracle/ewt/alert/resource/AlertBundle_en_IN.properties
    [Wed Mar 14 15:24:53 2012] [error] [client 173.26.2.15] [ecid: 1331718893:172.25.16.30:3108:0:66,0] Directory index forbidden by rule: /d05_applhome/apps/apps_st/comn/java/classes/
    [Wed Mar 14 15:24:58 2012] [error] [client 173.26.2.15] [ecid: 1331718898:172.25.16.30:2497:0:84,0] Directory index forbidden by rule: /d05_applhome/apps/apps_st/comn/java/classes/
    [Wed Mar 14 15:25:01 2012] [error] [client 173.26.2.15] [ecid: 1331718901:172.25.16.30:3308:0:9,0] File does not exist: /d05_applhome/apps/apps_st/comn/java/classes/oracle/forms/engine/RunformBundle_en_IN.class
    [Wed Mar 14 15:25:01 2012] [error] [client 173.26.2.15] [ecid: 1331718901:172.25.16.30:3308:0:10,0] File does not exist: /d05_applhome/apps/apps_st/comn/java/classes/oracle/forms/engine/RunformBundle_en_IN.properties
    [Wed Mar 14 15:25:17 2012] [error] [client 173.25.2.8] [ecid: 1331718917:172.25.16.30:7669:0:6972,0] File does not exist: /d05_applhome/inst/apps/PROD_aclapp/portal/favicon.ico
    [Wed Mar 14 15:25:43 2012] [error] [client 173.25.9.5] [ecid: 1331718943:172.25.16.30:7663:0:5878,0] Directory index forbidden by rule: /d05_applhome/apps/apps_st/comn/java/classes/
    [Wed Mar 14 15:25:47 2012] [error] [client 173.25.2.8] [ecid: 1331718947:172.25.16.30:7663:0:5882,0] File does not exist: /d05_applhome/inst/apps/PROD_aclapp/portal/favicon.ico
    [Wed Mar 14 15:25:49 2012] [error] [client 173.25.9.5] [ecid: 1331718949:172.25.16.30:5691:0:6389,0] File does not exist: /d05_applhome/apps/apps_st/comn/java/classes/oracle/forms/engine/RunformBundle_en_IN.class
    [Wed Mar 14 15:25:49 2012] [error] [client 173.25.9.5] [ecid: 1331718949:172.25.16.30:5691:0:6390,0] File does not exist: /d05_applhome/apps/apps_st/comn/java/classes/oracle/forms/engine/RunformBundle_en_IN.properties
    Kindly do help me in understanding why this error is arising. The entire directory path in the errors does not exist.
    Database version : Oracle 10.2.0.3
    Apps version : R 12.0.4

    Hi;
    1. It was working before If yes what have been changed?
    2. Did you try to close apps run autoconfig on db than appstier and retest issue?
    3. Please see:
    R12: "FRM-92050: FAILED TO CONNECT TO SERVER: /FORMS/LSERVLET" Error Message When Launching Forms [ID 1070263.1]
    Regard
    Helios

  • Error logs in job releases forecast from DP to SNP-"Matl does not exist"

    Hi Everyone,
    I am facing error logs in the batch job which releases forecast from DP to SNP
    Forecast release job - Weekly - Through background job
    Forecast category - FA
    Error 1: - Characteristic combination appears on batch job log with an error that
    "GMC does not exist " Even though it exist in R/3 and APO
    All products with error message "Product does not exist" from do exist and have Forecast in Product View
    Error 2: - Deleted KCC keep showing up on the Demand Forecast release job log as errors even though they are invalid KCC and were deleted previously. How do they get removed from error log so they don't get created again
    Material does not exist on the APO Product Master, in R3 there is a delete flag and the MRP type is set to X1 ,it does not exist in the APO Product Master and does not exist in R3.
    Request you to kindly provide any way forward which may be causing error logs of the job
    Thanks in advance,
    Mrigendra Sharma

    Hi Mrigendra,
    Please re-initialize the SNP planning area (program : /SAPAPO/TS_PAREA_INITIALIZE) and then check the consistency by executing the program: /SAPAPO/TS_LCM_CONS_CHECK. If you observe any inconsistency in the log/spool, then re-run the program: /SAPAPO/TS_LCM_CONS_CHECK to observe all green.
    It is recommended to run the consistency program after any master data change. The initialization program should be run at least weekly.
    Try transfering the data again from DP to SNP to see if the error reappear.
    Hope this helps.
    Regards,
    Nawanit

  • Iphone is dead, gone  to insurance co. for replacement. They say because "Find My iPhone" is still active, they can't replace or try to fix it. problem is can't log in to de-activate it, cos email account does not exist anymore. How can I de-activate it?

    iphone is dead, gone  to insurance co. for replacement. They say because "Find My iPhone" is still active, they can't replace or try to fix it. problem is can't log in to de-activate it, cos email account does not exist anymore. How can I de-activate it?

    You never used your iPhone?
    You never logged into iTunes?
    Your AppleID & Password for iCloud&  iPhone should be the same AppleID &Password you used to log in here and post a message.
    -> Find your Apple ID

  • 9.3.1 Migration Utility gives "Project does not exists" error in log

    In preparation for using Hyperion Reporting and Analysis 9.3.1, I have installed the following on a Linux test server:
    --Oracle App Server 10.1.3
    --Oracle Database 10g XE
    --Hyperion shared services 9.3.1
    --Hyperion UI Services 9.3.1
    --Hyperion SQR Production Reporting 9.3.1
    --Hyperion Reporting and Analysis, Financial Reporting 9.3.1
    Everything is up and running and I created a new user account in Shared Services to administer the system, and attempted to give it full access by provisioning it with all the available roles. I received an error message stating
    "+OracleJSP: An error occurred. Consult your application/system administrator for support. Programmers should consider setting the init-param debug_mode to "true" to see the complete exception message.+"
    I'm investigating that now, but the roles seemed to be assigned to the user anyway.
    When attempting to migrate from HPSu 8.5.2 to Reporting and Analysis 9.3.1 using the 9.3.1 Linux x86 Migration Utility (V11333-01 from edelivery.oracle.com), I get the following error message in a test migration:
    The migration process has been failed on 'User Defined Roles' migration step*
    I set the log level to debug and looked it over and here are the error details:
    +\[09 16 10:49:29,080] \[ERROR ] The migration process has been failed on 'User Defined Roles' migration step+
    +\[09 16 10:49:29,081] \[ERROR ] com.hyperion.interop.lib.OperationFailedException: Project does not exists by this id '%201252935352214.11'.+
    com.hyperion.pmt.migrator.common.CommonException
    at com.hyperion.pmt.migrator.userprovision.tool.MigrationManagerImpl.doAssignDefaultGroup(MigrationManagerImpl.java:864)
    at com.hyperion.pmt.migrator.userprovision.tool.MigrationManagerImpl.startMigration(MigrationManagerImpl.java:751)
    at com.hyperion.pmt.migrator.userprovision.ui.panels.MigrationPanel$ProcessRunner.run(MigrationPanel.java:304)
    Caused by: com.hyperion.interop.lib.OperationFailedException: Project does not exists by this id '%201252935352214.11'.
    at com.hyperion.interop.lib.helper.AdminProjectHelper.getProjectNameByID(Unknown Source)
    at com.hyperion.interop.lib.CMSClient.getProjectNameByID(Unknown Source)
    at com.hyperion.pmt.migrator.userprovision.tool.MigrationManagerImpl.getDefaultGroupBundle(MigrationManagerImpl.java:824)
    at com.hyperion.pmt.migrator.userprovision.tool.MigrationManagerImpl.doAssignDefaultGroup(MigrationManagerImpl.java:861)
    +... 2 more+
    We've only one user-defined role in the source system that I don't think is giving us this issue, it is inactivated and "User Roles" was not one of the selected objects to migrate.
    I would like to try taking the role completely out of the source system if possible, preferably through SQL applied to the V8 tables or through the SDK.
    The error looks like it lies in the migration task following the user role provisioning, doAssignDefaultGroup* and is caused by getProjectNameByID*
    The steps I have taken (for sanity sake) so far are:
    --I've removed all associations with this user defined role in the source system (users, groups, and roles) using the administrative interface on the web.
    --I've unchecked 'User Defined Roles' on the list objects to migrate from the source to target systems in the Migration Utility, but I still get the error.
    It looks like it is trying to provision a user defined role in the target system, but it is not finding a default project by the id in the error message.
    Are there any Shared Services steps in the target system that need to be taken besides creating a manager type user to use as a log in for the Migration Tool?

    I turned on the jsp debug init-param for the system for more information about the error. I get the following:
    Request URI:/interop/jsp/css/CSSTemplate.jsp
    Exception:
    OracleJSP:oracle.jsp.parse.JspParseException: /jsp/css/provisionSummary.jsp: Line # 119, <bean:define id="appId" name="appName" property="key"/>
    Error: Tag attempted to define a bean which already exists: appId
    When I attempt to provision the user I created for administrative purposes, Ialso see the following:
    --from the file SharedServices_Metadata.log I see the error:
    +2009-09-18 15:55:32,399 \[AJPRequestHandler-HTTPThreadGroup-6\] ERROR com.hyperion.eie.common.cms.CMSFacade - org.apache.slide.structure.ObjectNotFoundException: No object found at /users/admin+
    --from SharedServices_Admin.log
    +2009-09-17 14:49:20,583 \[Thread-13\] ERROR com.hyperion.cas.server.CASAppRegistrationHandler.loadApplicationsFromCMS(CASAppRegistrationHandler.java:430) - AuthorizationException occured when loading applications : Refer log in debug mode for details+
    How does one set these logs into debug mode ?

  • Activation of ODS fails: Change-Log Request ODSR_... does not exist in ODS

    Hello Experts,
    I have a problem loading in an ODS object in Release BW 3.5. This load is in parallel to loading in a Cube and InfoObjects from 10 different SAP sources monthly.
    Everytime, I load data, Activation fails. The Error message is "Change-Log Request ODSR_... does not exist in ODS ..." These Requests (30 requests) are very old starting with the Go-Live date of the application in 2005. If I search for the first Request in Reconstruct, a request without a InfoPackage-Name is found and if I reconstruct the request, all other new loaded Request are activated and everything is fine. The next month, the same error appears, but without the one old request in the list reconstructed the month before of course.
    A few months before I had to repair loading and deleted also requests in the ODS. Then I realized my mistake, that reconstruction is not possible, because the request was gone in the reconstruction list. So I searched for the PSA Request in the ODS reconstruction list, found the requests and reconstructed these. Could this be the reason for my current problem?
    But how can I stop this error? Reconstructing all of the requests did not work, because one request says, no active update rules exist for this request. So I stopped reconstructing every request of the long list.
    Please help me, I could not find any helpful information until now ...
    Many thanks in advance,
    Hannes

    Hi,
    For the old requests that you don't want and that are not valid, goto the monitor for those and mark them red. After that you won't face any problems while activating the new requests.
    The reason this is happening is that during activation BW thinks that these old requests are valid as they are green and tries to activate them as they are in squence. When it dosen't find them then it gives the error. If you mark them red, they are ignored and the next request is taken into consideration.
    Cheers,
    Kedar

  • Using ExtendedLogFormat, server log refers to Exception that does not exist

    I created a custom logging class, using ExtendedLogFormat, according to the doc here:
    [http://edocs.bea.com/wls/docs100/config_wls/web_server.html#elf]
    However, when I do this, and modify the startup classpath to point to my jar containing the class, and modify the log format to include this class, I see in the logs:
    bq. *     Attempting to initialize ExtendedLogFormat application specific header: x-com.on24.weblogic.logging.POSTDataLogField. However, failed due to exception.*
    (POSTDataLogField is the name of my log field class).
    This is very frustrating, because nowhere in ANY log (and I've set the log level as verbose as possible in all places) is any Exception shown.
    Does anyone know how I can find out what this mystery exception is, in a case like this? I've looked at all the logging options, and didn't find anything I could change to be any more verbose than I already am.
    - Tim

    Hi. I'm using version 2.1.11 of the NDK for CSharp. I'm getting this
    same error message:
    Code:
    Connection.freeWriteSemaphore(-2): semaphore not owned by any thread
    at Novell.Directory.Ldap.Connection.freeWriteSemaphor e(Int32 msgId)
    at Novell.Directory.Ldap.Connection.connect(String host, Int32 port, Int32 semaphoreId)
    at Novell.Directory.Ldap.LdapConnection.Connect(Strin g host, Int32 port)
    at TestLDAP.Program.Main(String[] args) in D:\Documents and Settings\tjbuege\my documents\visual studio 2010\Projects\TestLDAP\TestLDAP\Program.cs:line 20
    This occurs when I try to bind to a server that does not exist. Here
    is my sample source code that generates that error:
    Code:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using Novell.Directory.Ldap;
    namespace TestLDAP
    class Program
    static void Main(string[] args)
    LdapConnection conn = null;
    string host = "server.does.not.exist.com";
    int port = 389;
    try
    conn = new LdapConnection();
    conn.Connect(host, port);
    catch (Exception ex)
    Console.WriteLine(ex.Message);
    Console.WriteLine(ex.StackTrace);
    if (conn != null)
    conn.Disconnect();
    Is there a fix for this? It makes this library useless for me.
    Thanks,
    Tim
    tjbuege
    tjbuege's Profile: http://forums.novell.com/member.php?userid=108957
    View this thread: http://forums.novell.com/showthread.php?t=365082

Maybe you are looking for