Ons Log Problem

Dear Sir/Madam,
Regarding the log file of Opmn storage at ../10gccd/opmn/logs has warning/error as below :-
Local connection 0,127.0.0.1,6100 missing form factor.
I don't know what those meanings ,it non-stop repeating and extend. Each log file has 1.4GB. it will fill up my
disk shortly.
Anyone can help me solve the problem ?
best regards
boris

Boris,
You've landed in the wrong forum. This one is devoted to Oracle HTML DB.
Scott

Similar Messages

  • Opmn/Ons Logs Problem

    Dear Sir/Madam,
    Regarding the log file of Opmn storage at ../10gccd/opmn/logs has warning/error as below :-
    Local connection 0,127.0.0.1,6100 missing form factor.
    I don't know what those meanings ,it non-stop repeating and extend. Each log file has 1.4GB. it will fill up my
    disk shortly.
    Anyone can help me solve the problem ?
    best regards
    boris

    These log entries say there are two problems, which may or may not be related.
    First, some other computer on your network has the same IP address as yours. You need to find it (the error gives the other system's Ethernet hardware address).
    It is possible the second set of messages is related to this one, but I can't say. Solve the first one and see if the other goes away.

  • Ons.log getting too many and too large

    Hi,
    Just recently when I tried to connect to our staging database I found that I couldn't connect and it gave me the "disk is full" error. It was quite amazing because the archive logs were not large nor were their any backups on it. And it was a 200g disk partition. After doing some research we found out the the ons logs were the problem. There was probably like 40 or so log files and each was a gig and a half in size. My question is what causes these logs to be created and how can we manage them. Because we have development environment and it was setup exactly the same way as the staging, but we never had a problem like that on it (dev). How can we turn the logging off?
    Thank you.

    Take a look on thi Metalink Notes
    Doc-ID: 284602.1

  • ONS.Log is filling up my machine

    Can anyone help me with this problem. I have installed 9iAS infrastructure and mid-iter (portal and forms only) on a Windows 2000 server.
    Everything seems to run fine for a few hours and then I am out of disk space - almost 30GB are used up in the ons.log files.
    How can I stop this - turn off the log - or correct the basic error?
    I can't figure out what is causing the log to grow so large and so quickly. Please help

    Hi,
    You could check the log level in your ons.log file. This value is specified in the following location:
    $ORACLE_HOME/opmn/conf/opmn/xml
    The <log-file> tag for the ons.log file would have the value of log level. The permitted range of values are from 1(least messages logged) to 9(most messages logged).
    You could select a lower logging level value to prevent your log level from growing large.
    Thanks,
    Rashmi.

  • Oas 10gr2 can't be started: ons.log shows local listener terminated

    Hello all. I have the following problem
    When I try to start the oas infrastructure (we are using 10g release 2), I got the following error:
    */oas/product/10.1.2/opmn/logs>opmnctl startall*
    opmnctl: starting opmn and all managed processes...
    opmnctl: opmn start failed
    Reviewing oas log files, the $OAS_HOME/opmn/logs/ONS.LOG shows the following error:
    *09/03/25 17:23:04 [1] Local listener terminated*
    *09/03/26 09:45:17 [4] ONS server initiated*
    *09/03/26 09:45:17 [2] BIND (Can't assign requested address)*
    *09/03/26 09:45:17 [2] 127.0.0.0:399835136 - listener BIND failed*
    *09/03/26 09:45:17 [4] Listener thread 1543: 127.0.0.0:399835136 (0x442) terminating*
    *09/03/26 09:45:17 [1] Local listener terminated*
    This is similar to what others have reported about problems with listener binding, but this problem cannot be found in Metalink because it says the BIND can't assign requested address.
    I have the suspict this is a problem with the hostname or something because the ONS is trying to bind to 127.0.0.0... strange...
    The /etc/hosts shows this configuration
    *# 10.2.0.2 x25sample # x.25 name/address*
    *127.0.0.1 localhost.av-c.com loopback localhost*
    *172.19.1.26 avc1.av-c.com avc1*
    Please help because this install has a lot of applications and we cannot start it.
    Thanks!

    DO you have a Database there?
    What process did not start?
    What does the log of this process show?
    Regards.

  • Error in ONS logs while implmenting FCF on oracle RAC from java program

    I have java prog on client machine that uses properties from a property file.While making the connection to the ONS port on the oracle RAC server to implement FCF the program is throwing error as below:
    java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    and when i checked the ons logs for that node the logs are as follows:
    Connection 5,199.xxx.xxxxxx,8200 header RCV failed (Connect
    ion reset by peer) coFlags=1002a
    These logs are generated only when java program tries to connect else the daemon started without any errors.
    But sometime it connets and gives the desired output.
    Please advice and do let me know in case you need more information.
    Java program on the client machine is as follows..
    * Oracle Support Services
    import java.sql.Connection;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.Statement;
    import java.util.Enumeration;
    import java.util.Properties;
    import java.util.ResourceBundle;
    import oracle.jdbc.pool.OracleConnectionCacheManager;
    import oracle.jdbc.pool.OracleDataSource;
    public class FCFConnectionCacheExample
    private OracleDataSource ods = null;
    private OracleConnectionCacheManager occm = null;
    private Properties cacheProperties = null;
    public FCFConnectionCacheExample() throws SQLException
    // create a cache manager
    occm = OracleConnectionCacheManager.getConnectionCacheManagerInstance();
    Properties props = loadProperties("fcfcache");
    cacheProperties = new java.util.Properties();
    cacheProperties.setProperty("InitialLimit", (String)props.get("InitialLimit"));
    cacheProperties.setProperty("MinLimit", (String)props.get("MinLimit"));
    cacheProperties.setProperty("MaxLimit", (String)props.get("MaxLimit"));
    ods = new OracleDataSource();
    ods.setUser((String)props.get("username"));
    ods.setPassword((String)props.get("password"));
    ods.setConnectionCachingEnabled(true);
    ods.setFastConnectionFailoverEnabled(true);
    ods.setConnectionCacheName("MyCache");
    ods.setONSConfiguration((String)props.get("onsconfig"));
    ods.setURL((String)props.get("url"));
    occm.createCache("MyCache", ods, cacheProperties);
    private Properties loadProperties (String file)
    Properties prop = new Properties();
    ResourceBundle bundle = ResourceBundle.getBundle(file);
    Enumeration enumlist = bundle.getKeys();
    String key = null;
    while (enumlist.hasMoreElements())
    key = (String) enumlist.nextElement();
    prop.put(key, bundle.getObject(key));
    return prop;
    public void run() throws Exception
    Connection conn = null;
    Statement stmt = null;
    ResultSet rset = null;
    String sQuery =
    "select sys_context('userenv', 'instance_name'), " +
    "sys_context('userenv', 'server_host'), " +
    "sys_context('userenv', 'service_name') " +
    "from dual";
    try
    conn = null;
    conn = ods.getConnection();
    stmt = conn.createStatement();
    rset = stmt.executeQuery(sQuery);
    rset.next();
    System.out.println("-----------");
    System.out.println("Instance -> " + rset.getString(1));
    System.out.println("Host -> " + rset.getString(2));
    System.out.println("Service -> " + rset.getString(3));
    System.out.println("NumberOfAvailableConnections: " +
    occm.getNumberOfAvailableConnections("MyCache"));
    System.out.println("NumberOfActiveConnections: " +
    occm.getNumberOfActiveConnections("MyCache"));
    System.out.println("-----------");
    catch (SQLException sqle)
    while (sqle != null)
    System.out.println("SQL State: " + sqle.getSQLState());
    System.out.println("Vendor Specific code: " +
    sqle.getErrorCode());
    Throwable te = sqle.getCause();
    while (te != null) {
    System.out.print("Throwable: " + te);
    te = te.getCause();
    sqle.printStackTrace();
    sqle = sqle.getNextException();
    finally
    try
    rset.close();
    stmt.close();
    conn.close();
    catch (SQLException sqle2)
    System.out.println("Error during close");
    public static void main(String[] args)
    System.out.println(">> PROGRAM using JDBC thin driver no oracle client required");
    System.out.println(">> ojdbc14.jar and ons.jar must be in the CLASSPATH");
    System.out.println(">> Press CNTRL C to exit running program\n");
    try
    FCFConnectionCacheExample test = new FCFConnectionCacheExample();
    while (true)
    test.run();
    Thread.currentThread().sleep(10000);
    catch (InterruptedException e)
    System.out.println("PROGRAM Ended by user");
    catch (Exception ex)
    System.out.println("Error Occurred in MAIN");
    ex.printStackTrace();
    Some of the info i have deleted intensionally as this is confidential
    Property file is as follows
    # properties required for test
    username=test
    password=test
    InitialLimit=10
    MinLimit=10
    MaxLimit=20
    onsconfig=nodes=RAC-node1:port,RAC-node2:port
    url=jdbc:oracle:thin:@(DESCRIPTION= \
    (LOAD_BALANCE=yes) \
    (ADDRESS=(PROTOCOL=TCP)(HOST=RAC-node1)(PORT=1521)) \
    (ADDRESS=(PROTOCOL=TCP)(HOST=RAC-node1)(PORT=1521)) \
    (CONNECT_DATA=(service_name=RAC_SERVICE)))

    Hi;
    Please check below note:
    Link Errors While Installing CRS & RAC Database software [ID 438747.1]
    Codeword File $TIMEBOMB_CWD,/opt/aCC/newconfig/aCC.cwd Missing Or Empty [ID 552893.1]
    Regard
    Helios

  • Error logging problem:

    error logging problem:
    I would like to implement an error logger that will do the following tasks when a error/exception arrises:
    - surpress the DacfErrorPopupLogger
    - alert the user that an error has occured with a simplified popup (create a global listener then use the ErrorAttributes to create the text of the popup)
    - log the error in a file with a timestamp and all error information
    - later if the above works....i would like to add the error attributes (time stamp, error type) to a oracle object/ Jdev domain.
    Questions:
    What is the best technique to use....errorManager, error logger ...?? combination
    How do i use the error manager to register listners for the errors?.
    In the following code i am not sure how to access the ErrorsAttributes[] array that is returned by loggerReader.getErrors();
    Any general tips places to find sample code on errorManager or associated interfaces, will be appreciated
    I used the OutPutStreamLogger to write error information to a FileOutputStream then a loggerReader to get the error attributes from the file. The reason i went in this direction is because i found some smple code on the outputStream logger.
    package DACVideo;
    import oracle.dacf.util.errorloggers.*;
    import oracle.dacf.util.errormanager.*;
    import oracle.dacf.util.errorloggers.InputStreamLoggerReader.ErrorAttributes;
    import java.io.*;
    * A Class class.
    * <P>
    * @author Adam Maddox
    public class ErrorLogger extends Object {
    static OutputStreamLogger logger = null;
    static InputStreamLoggerReader loggerReader = null;
    public ErrorLogger() {
    System.out.println("==============ErrorLogger Created==============");
    //remove default error logger (popup logger)
    ErrorManager.removeErrorLogger(ErrorManager.findLoggerByName(DacfErrorPopupLogger.NAME));
    try
    logger = new OutputStreamLogger(new FileOutputStream("out.dat"));
    loggerReader = new InputStreamLoggerReader(new FileInputStream("out.dat"));
    catch(java.io.IOException e)
    System.err.println("Error!");
    try
    ErrorManager.addErrorLogger(logger);
    catch(NameAlreadyRegisteredException e)
    System.err.println("A Logger with this name is already registered.");
    private void closeErrorLog()
    //close the OutputStream, to force flushing
    logger.closeOutputStream();
    ErrorManager.removeErrorLogger(logger);
    public static void showErrorLog()
    ErrorAttributes[] errorArray = loggerReader.getErrors(); <<<<CANNOT GET ERROR ATTRIBUTES ??
    null

    JDev could you help??

  • Ons.log errors

    I have a 10g grid console installed configured and working.
    However thirty four error lines a second are written to the ons.log file. The error is:
    05/05/02 12:59:42 [4] Local connection 0,127.0.0.1, 6100 missing form factor.
    The above line is repeated thirty four times a second.
    What is this error and how do I get rid of it?

    Could you pls tell me the detail of Metalink id:284602.1?
    Thank you very much!

  • X2-02 log problem

    dear members,
    I have a log problem with my x2-02, only the last occurrence belonging to a certain contact (in the contacts book), is logged. When a new handling-occurence linked to this contact happened, only this last handling is logged (all the previous are deleted, not there anymore).
    This was not the situation before, I did play a little bit through the menu and after that it happened. Of course I did already try the regular solutions, soft reset-hard reset, reinstalling the (latest software). But till now nothing did work.
    Can someone assist on this
    Greetings
    Fiesta
    holland

    dear members
    I would like to contribute the following, I noticed an other bug, which i think occured simultaneously/is linked together. When i go to contacts, and choose the option "View conversations" i see with certain persons, that there are also conversations (sms messages)  not pertaining/belonging to that contact (belonging to more different contacts).
    Does this bell ring some where?
    greetings
    fiesta  

  • ONS.log , invalid connect server IP format

    Dear all,
    We have a RAC system 10g (10.2.0.3) with two database nodes on two dedicated IBM Power servers with AIX 5.3 as OS.
    The following message is occurring in a frequent way in ons.log noting that we have detected that the ons process is consuming very high memory:
    +13/03/18 09:34:33 [2] Passive connection 0,<IP of server 1>,6200 invalid connect server IP format+
    +3232237319,6200,6113,0+
    ONSinfo: !!3232237319!0!6200!0!6113
    hostName: <hostname of server2>
    clusterId: databaseClusterId
    clusterName: databaseClusterName
    instanceId: databaseInstanceId
    instanceName: databaseInstanceName
    Unfortunately we can't find any documentation for that.
    Regards.

    ons process is consuming very high memory....
    is it log size is increasing drastically or any other issue....we are not getting issue .....
    ONS is consuming high CPU? is it ur issue...then
    according to my understanding the hostname or IP value configured for OPMN in the opmn.xml file does not match the corresponding entry in the ons.conf file.
    OPMN reconnects to itself over and over, thereby increasing CPU usage, one more thing is ONS topology is mis-configured....i hope...
    ons.conf file content must be same as all other instance in the cluster.....
    for more information examine the log ORACLE_HOME/opmn/logs/ipm.log ....if possible post the log.....
    thanks,
    DBC,
    Sr DBA.

  • OS X kernel logs problem when USB flash drive connected.

    Previously, my Creative Nomad Muvo TX (MP3 player/1GB USB memory stick) worked fine with my Intel Mac mini (10.4.8) until the latest EFI 1.1 update.
    Now the USB drive does not mount or appear in finder. It is visible in the System Profiler in the USB section, but the disk utility does not see it.
    While the USB stick is plugged in, the system logs the following line repeatedly:
    Nov 26 21:32:39 kernel[0]: USBF: 2517.425 AppleUSBEHCI[0x3969000]::Found a transaction past the completion deadline on bus 253, timing out!
    Booting in Windows XP (with bootcamp) and plugging in the USB memory stick works fine. So the USB stick and the Mac mini hardware is functioning.
    Other USB 2 external harddrives are functioning properly in OS X.
    I suspect that the latest Mac OS X or EFI 1.1 firmware update has spoilt my previously happy USB memory stick connection.
    Any suggestions?
    Thanks in adcvance.
    Stephanus

    Hi, Stephanus.
    1. If Creative does not support that device with a Mac, then that should tell you something. Even if it worked in the past, since they don't support it, there's no guarantee that changes to Mac OS X would render it unusable as you've noted. With that kind of attitude from Creative, I'd think about switching to an iPod...
    Since you can use it when booted into Windows with Boot Camp, you might want to consider running Parallels Desktop for Mac. This leverages the virtualization technology of the Intel chips, permitting you to run Mac OS X and Windows simultaneously, rather than having to boot into Windows with Boot Camp. Parallels is cheaper than buying an iPod.
    2. The USB message you reported is essentially indicating that the OS detected a USB device but cannot talk to it. This is unlikely to be something you're going to work around, e.g. with Terminal.
    3. If you want to pursue this further, you can:3.1. Install the USB debug kit for your version of Mac OS X. Apple provides a variety of Mac OS X USB Software Debug Versions that "are used to provide information about USB device and interface detection, driver and interface matching, driver loading and information generated as a result of normal and abnormal conditions." You could install the package corresponding to the version of Mac OS X you are running and this may help identify if the issue is a USB problem and the exact USB anomaly causing such.
    3.2. Take what you've been able to lear from the USB debugger and do one or more of the following:• Join the Apple USB Mailing List. Once your registration is approved, submit a question including the enhanced output from the USB logger and requesting additional advice. That list is monitored by developers of USB devices. Posts are sometimes answered by Apple engineers.
    • Join the Apple Developer Connection at the "free" level, then submit a bug report.
    • Submit a Mac OS X Feedback.If Creative has their own forums, ala Discussions, you might also want to search or post there for similar reports.Unfortunately, that's about all I have to offer at this point: I don't have the Creative device and hence can't test it.
    I think that Creative is disinterested in helping you is a key issue you need to consider.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X

  • DMEE Log problem

    Hi Specialist
    I created a payment medium using the transaction F110. In the Log Poporsal I didnt find any  error, but in the payment log I found it:
    BFIBL02167               Document 2000 1400259728 2011 either not found or reversed, payment not on payment medium
    The payment was 04.11.2011 and the reversal on 14.11.2011 .. but in my file I couldnt find some documents according to the error.
    After that I investigate in the transaction FBPM ( LOG ERROR Payment medium )
    And I found  more information:
    Document 2000 1400259728 2011 either not found or reversed, payment not on payment medium
    Message no. BFIBL02167
    Diagnosis
    In the payment document validation that you selected in the selection variant of the generic payment medium program SAPFPAYM, the system determines that payment document 2000 1400259728 2011 has either not yet been posted or has already been reversed.
    System Response
    The payment is not transferred on a payment medium in order to avoid a duplicate payment: the items to be paid remain open and could be paid again with a new payment run.
    Procedure
    If, for an update termination, you find it is then possible to post the document, you can subsequently create another payment medium only containing this missing document. To do this, in the dynamic selections select only the reference to document 200014002597282011
    DO you know why I get this error?? The payment was succesfully but I couldnt find it in my DMEE estructure ( the file ) .
    THank you
    Regards

    Hi , thanks for reply.
    Not really. I created the payment method 04.11.2011 and I sent the file to the bank. The problem was the rejection that I received 14 days later.
    Then when i check the file again I found this errors.
    It means that I generate the and the payment the same day.
    Thanks

  • Hello! console log problem with window server

    Hello! I installed today moutain lion, it's all perfect but i have a question...i was checking the console log, and there are a lot of messages like that:
    26/07/12 00:04:10,682 WindowServer[89]: CGXRegisterWindowWithSystemStatusBar: window c already registered
    26/07/12 00:04:17,796 WindowServer[89]: CGXRegisterWindowWithSystemStatusBar: window c already registered
    26/07/12 00:04:42,979 WindowServer[89]: CGXRegisterWindowWithSystemStatusBar: window c already registered
    26/07/12 00:04:46,366 WindowServer[89]: CGXRegisterWindowWithSystemStatusBar: window c already registered
    everytime i swap to a full-screen app, a new line of that appear..hmm..it's ok or there are some problems?
    thanks in advance!

    cool! 'cause if i go to the app by mission control, console is clean...if i swap with the gesture..there is the log! maybe it's a feature of mountain lion by the way, pratically there aren't problem, only the massive logging in console..

  • Java.util.logging - Problem with setting different Levels for each Handler

    Hello all,
    I am having issues setting up the java.util.logging system to use multiple handlers.
    I will paste the relevant code below, but basically I have 3 Handlers. One is a custom handler that opens a JOptionPane dialog with the specified error, the others are ConsoleHandler and FileHandler. I want Console and File to display ALL levels, and I want the custom handler to only display SEVERE levels.
    As it is now, all log levels are being displayed in the JOptionPane, and the Console is displaying duplicates.
    Here is the code that sets up the logger:
    logger = Logger.getLogger("lib.srr.applet");
    // I have tried both with and without the following statement          
    logger.setLevel(Level.ALL);
    // Log to file for all levels FINER and up
    FileHandler fh = new FileHandler("mylog.log");
    fh.setFormatter(new SimpleFormatter());
    fh.setLevel(Level.FINER);
    // Log to console for all levels FINER and up
    ConsoleHandler ch = new ConsoleHandler();
    ch.setLevel(Level.FINER);
    // Log SEVERE levels to the User, through a JOptionPane message dialog
    SRRUserAlertHandler uah = new SRRUserAlertHandler();
    uah.setLevel(Level.SEVERE);
    uah.setFormatter(new SRRUserAlertFormatter());
    // Add handlers
    logger.addHandler(fh);
    logger.addHandler(ch);
    logger.addHandler(uah);
    logger.info(fh.getLevel().toString() + " -- " + ch.getLevel().toString() + " -- " + uah.getLevel().toString());
    logger.info("Logger Initialized.");Both of those logger.info() calls displays to the SRRUserAlertHandler, despite the level being set to SEVERE.
    The getLevel calls displays the proper levels: "FINER -- FINER -- SEVERE"
    When I start up the applet, I get the following in the console:
    Apr 28, 2009 12:01:34 PM lib.srr.applet.SRR initLogger
    INFO: FINER -- FINER -- SEVERE
    Apr 28, 2009 12:01:34 PM lib.srr.applet.SRR initLogger
    INFO: FINER -- FINER -- SEVERE
    Apr 28, 2009 12:01:40 PM lib.srr.applet.SRR initLogger
    INFO: Logger Initialized.
    Apr 28, 2009 12:01:40 PM lib.srr.applet.SRR initLogger
    INFO: Logger Initialized.
    Apr 28, 2009 12:01:41 PM lib.srr.applet.SRR init
    INFO: Preparing Helper Files.
    Apr 28, 2009 12:01:41 PM lib.srr.applet.SRR init
    INFO: Preparing Helper Files.
    Apr 28, 2009 12:01:42 PM lib.srr.applet.SRR init
    INFO: Getting PC Name.
    Apr 28, 2009 12:01:42 PM lib.srr.applet.SRR init
    INFO: Getting PC Name.
    Apr 28, 2009 12:01:42 PM lib.srr.applet.SRR init
    INFO: Finished Initialization.
    Apr 28, 2009 12:01:42 PM lib.srr.applet.SRR init
    INFO: Finished Initialization.Notice they all display twice. Each of those are also being displayed to the user through the JOptionPane dialogs.
    Any ideas how I can properly set this up to send ONLY SEVERE to the user, and FINER and up to the File/Console?
    Thanks!
    Edit:
    Just in case, here is the code for my SRRUserAlertHandler:
    public class SRRUserAlertHandler extends Handler {
         public void close() throws SecurityException {
         public void flush() {
         public void publish(LogRecord arg0) {
              JOptionPane.showMessageDialog(null, arg0.getMessage());
    }Edited by: compbry15 on Apr 28, 2009 9:44 AM

    For now I have fixed the issue of setLevel not working by making a Filter class:
    public class SRRUserAlertFilter implements Filter {
         public boolean isLoggable(LogRecord arg0) {
              if (arg0.getLevel().intValue() >= Level.WARNING.intValue()) {
                   System.err.println(arg0.getLevel().intValue() + " -- " + Level.WARNING.intValue());
                   return true;
              return false;
    }My new SRRUserAlertHandler goes like this now:
    public class SRRUserAlertHandler extends Handler {
         public void close() throws SecurityException {
         public void flush() {
         public void publish(LogRecord arg0) {
              Filter theFilter = this.getFilter();
              if (theFilter.isLoggable(arg0))
                   JOptionPane.showMessageDialog(null, arg0.getMessage());
    }This is ugly as sin .. but I cannot be required to change an external config file when this is going in an applet.
    After much searching around, this logging api is quite annoying at times. I have seen numerous other people run into problems with it not logging specific levels, or logging too many levels, etc. A developer should be able to complete configure the system without having to modify external config files.
    Does anyone else have another solution?

  • Physical standby database standby redo log problem

    Hello
    We have a physical standby database , I've created some standby redo log files but my problem is that they aren't used,
    their status in v$stanby_log view is UNASSIGNED
    and I see this message (ORA-16086: standby database does not contain available standby log files) in primary database alert_log file
    while when I run "alter system switch logfile" in the primary database it transfer redo logs to the physsical standby database
    and archive log file will be created in standby database
    I've even recreated the standby redo log files and I added new ones to them but the problem wasn't solved
    Do you know what is problem ?
    elect group#,THREAD#,BYTES,STATUS from V$STANDBY_LOG;
    group#     THREAD#      BYTES       STATUS
    1                   0                   524288000                   UNASSIGNED                  
    2                   0                   524288000                   UNASSIGNED                  
    3                   0                   524288000                   UNASSIGNED                  
    8                   0                   524288000                   UNASSIGNED                  
    9                   0                   524288000                   UNASSIGNED                  
    10                   0                   524288000                   UNASSIGNED                  
    select group#,THREAD#,BYTES,MEMBERS,STATUS from v$log;
    group#                    THREAD#                    BYTES                    MEMBERS                    STATUS
    4                   1                   524288000                   2                   CLEARING                  
    7                   1                   524288000                   2                   CLEARING_CURRENT                  
    6                   1                   524288000                   2                   CLEARING                  
    5                   1                   524288000                   2                   CLEARING                  
    thanks

    Hello Anurag
    Thank you for your reply
    I have found some issue in the standby database alert_log too , in the standby database alert_log it has been written:
    RFS[782]: Assigned to RFS process 3919
    RFS[782]: Identified database type as 'physical standby'
    Primary database is in MAXIMUM AVAILABILITY mode
    Standby controlfile consistent with primary
    Primary database is in MAXIMUM AVAILABILITY mode
    Standby controlfile consistent with primary
    RFS[782]: No standby redo logfiles selected (reason:6)
    Sun Jan 31 13:59:43 2010
    Errors in file /u01/app/oracle/admin/tehrep/udump/tehrep_rfs_3919.trc:
    ORA-16086: standby database does not contain available standby log files
    Sun Jan 31 13:59:48 2010
    RFS[781]: Archived Log: '/disks/sda/tehrep/archivelogs/1_6516_670414641.dbf'
    Sun Jan 31 13:59:50 2010
    and the context "/u01/app/oracle/admin/tehrep/udump/tehrep_rfs_3919.trc"  is below :
    +/u01/app/oracle/admin/tehrep/udump/tehrep_rfs_3919.trc+
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    ORACLE_HOME = /u01/app/oracle/product/10.2.0/db_1
    System name:    Linux
    Node name:      linserver2.com
    Release:        2.6.9-42.ELsmp
    Version:        #1 SMP Wed Jul 12 23:27:17 EDT 2006
    Machine:        i686
    Instance name: tehrep
    Redo thread mounted by this instance: 1
    Oracle process number: 58
    Unix process pid: 3919, image: [email protected]
    *** SERVICE NAME:() 2010-01-31 13:59:43.865
    *** SESSION ID:(109.1225) 2010-01-31 13:59:43.865
    KCRRFLAS
    KCRRSNPS
    No space in recovery area for active standby redo logs
    The primary database is operating in MAXIMUM PROTECTION
    or MAXIMUM AVAILABILITY mode, and the standby database
    does not contain adequate disk space in the recovery area
    to safely archive the contents of the standby redo logfiles.
    ORA-16086: standby database does not contain available standby log files
    when I saw this line "No space in recovery area for active standby redo logs" I thought that STANDBY_ARCHIVE_DEST parameter points where that there is no enough space , but when I consider I found out that points a directory on disk a "sda" that has enough space , I don't know what that means
    by the way, at below I've written a section of the primary database alert_log context and "lgwr" trace file around Sun Jan 31 13:30:34 2010
    alert_log :
    ORA-16086: standby database does not contain available standby log files
    Sun Jan 31 13:30:34 2010
    LGWR: Failed to archive log 7 thread 1 sequence 6512 (16086)
    Thread 1 advanced to log sequence 6512
    Current log# 7 seq# 6512 mem# 0: /disks/sdb/tehrep/redo71.log
    Current log# 7 seq# 6512 mem# 1: /disks/sdd/tehrep/redo72.log
    LNSc started with pid=53, OS id=11451
    Sun Jan 31 13:36:34 2010
    Errors in file /u01/app/oracle/admin/tehrep/bdump/tehrep_lgwr_3692.trc:
    ORA-16086: standby database does not contain available standby log files
    Sun Jan 31 13:36:34 2010
    LGWR: Failed to archive log 5 thread 1 sequence 6513 (16086)
    Thread 1 advanced to log sequence 6513
    Current log# 5 seq# 6513 mem# 0: /disks/sdb/tehrep/redo51.log
    Current log# 5 seq# 6513 mem# 1: /disks/sdd/tehrep/redo52.log
    */u01/app/oracle/admin/tehrep/bdump/tehrep_lgwr_3692.trc file :*
    Error 16086 creating standby archive log file at host '(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=tcp)(HOST=linserver2.com
    +)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAME=tehrep_XPT.com)(INSTANCE_NAME=tehrep)(SERVER=dedicated)))'+
    *** 2010-01-31 13:30:34.712 60679 kcrr.c
    LGWR: Attempting destination LOG_ARCHIVE_DEST_3 network reconnect (16086)
    *** 2010-01-31 13:30:34.712 60679 kcrr.c
    LGWR: Destination LOG_ARCHIVE_DEST_3 network reconnect abandoned
    ORA-16086: standby database does not contain available standby log files
    *** 2010-01-31 13:30:34.712 60679 kcrr.c
    LGWR: Error 16086 creating archivelog file '(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=tcp)(HOST=linserver2.com)(PORT=1521
    +)))(CONNECT_DATA=(SERVICE_NAME=tehrep_XPT.com)(INSTANCE_NAME=tehrep)(SERVER=dedicated)))'+
    *** 2010-01-31 13:30:34.712 58941 kcrr.c
    kcrrfail: dest:3 err:16086 force:0 blast:1
    Receiving message from LNSc
    *** 2010-01-31 13:30:34.718 55444 kcrr.c
    Making upidhs request to LNSc (ocis 0x0xb648db48). Begin time is <01/31/2010 13:30:30> and NET_TIMEOUT <180> seconds
    NetServer pid:11196
    *** 2010-01-31 13:30:38.718 55616 kcrr.c
    upidhs done status 0
    *** 2010-01-31 13:36:31.062
    LGWR: Archivelog for thread 1 sequence 6513 will NOT be compressed
    *** 2010-01-31 13:36:31.062 53681 kcrr.c
    +Initializing NetServer[LNSc] for dest=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=tcp)(HOST=linserver2.com)(PORT=1521)))(CO+
    NNECT_DATA=(SERVICE_NAME=tehrep_XPT.com)(INSTANCE_NAME=tehrep)(SERVER=dedicated))) mode SYNC
    LNSc is not running anymore.
    New SYNC LNSc needs to be started
    Waiting for subscriber count on LGWR-LNSc channel to go to zero
    Subscriber count went to zero - time now is <01/31/2010 13:36:31>
    Starting LNSc ...
    Waiting for LNSc to initialize itself
    *** 2010-01-31 13:36:34.116 53972 kcrr.c
    +Netserver LNSc [pid 11451] for mode SYNC has been initialized+
    Performing a channel reset to ignore previous responses
    +Successfully started LNSc [pid 11451] for dest (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=tcp)(HOST=linserver2.com)(PORT=1+
    +521)))(CONNECT_DATA=(SERVICE_NAME=tehrep_XPT.com)(INSTANCE_NAME=tehrep)(SERVER=dedicated))) mode SYNC ocis=0x0xb648db48+
    *** 2010-01-31 13:36:34.116 54475 kcrr.c
    +Making upiahm request to LNSc [pid 11451]: Begin Time is <01/31/2010 13:36:31>. NET_TIMEOUT = <180> seconds+
    Waiting for LNSc to respond to upiahm
    *** 2010-01-31 13:36:34.266 54639 kcrr.c
    upiahm connect done status is 0
    Receiving message from LNSc
    Receiving message from LNSc
    Destination LOG_ARCHIVE_DEST_3 is in STANDBY RESYNCHRONIZATION mode
    Receiving message from LNSc

Maybe you are looking for

  • How to combine both DAQ AI signal, write and read file in single VI

    Hi  I am the new user of LabVIEW version 7.1 for testing automation application. I have to measure 33 signals ( mostly analog like temp, pressure, etc...) from NI USB 6210 DAQ system and write in master file for future verfication.From real data or f

  • Sale order with no line items

    Hi,   sale order should not be saved if there is no line item.   Sale order should not be saved if there is no quantity or value for a line item. Can anyone update on this please Ratna

  • German Special Characters in XSTRING to STRING conversion

    Hi Experts, I have a CSV file (created from a Windows Excel file) with German Special Characters (e.g. 'ä', 'Ä') and I am trying to read this into ABAP internal tables. By using the THTMLB tag 'thtmlb:fileUpload' I get an XSTRING and I am trying to c

  • Will Mountain Lion fix the major Internet Sharing bug in Lion?

    Does anyone know if Apple have indicated that they will be issuing a fix to the Internet Sharing bug in Lion (i.e. Internet Sharing does not work) in the new Mountain Lion?

  • Was Java Add in installation error FJS 0003

    Hi all does anyone have an idea about the following problem? I am installing Java Add In on AS/400 platform. SAPINST termitaes with error: FJS-0003 Output is not defined. I cannot understand what's going on. Hints are really appreciated. P.S. Was ABA