Problem when switching over to a Logical Standby - RESOLVED

I used GRID to create a logical standby. The primary and standby servers have the same OS's and are both 64-bit. I am using Oracle 10gR3 on both, and the same patches have been applied to both servers. Prior to doing the switchover, I queried switchover_status on the primary database and received a state of SESSIONS ACTIVE. I then issued the command ALTER DATABASE PREPARE TO SWITCHOVER TO LOGICAL STANDBY on the primary, and ALTER DATABASE PREPARE TO SWITCHOVER TO PRIMARY on the logical. The problem is that they are now both stuck in the PREPARING TO SWITCHOVER state and I cannot to anything to budge them from that state. As far as GRID is concerned, they are both in a NORMAL state, but the SQL queries prove differently. The APPLIED_SCN and NEWEST_SCN on the current standby do not match.
Any ideas?
Cheers
Message was edited by:
user458496

Hi,
APPLIED_SCN means that the newest SCN at which all changes have been applied. The values in the APPLIED_SCN and NEWEST_SCN columns will match if all available redo log data has been processed.
NEWEST_SCN means that the most recent SCN available on the standby system. If no more logs are being shipped, then changes could be applied to this SCN. The values in the APPLIED_SCN and NEWEST_SCN columns will match if all available redo log data has been processed.
http://download-east.oracle.com/docs/cd/B19306_01/server.102/b14237/statviews_3250.htm
Hope this helps.
Adith

Similar Messages

  • Mouse pausing every few minutes when switched over from a KVM?

    I have just replace my old IOGEAR 2 port KVM that developed issues with a newer version of the same thing and the mouse and Wacom tablet are pausing very 45sec. - 90sec? when switched over to the MINI but run fine on the G5 plugged into the other port.
    Nothing has changed except for the replacement 2 port KVM.
    Anyone have any ideas???

    If you crisscross the outputs from the KVM does the problem then move to the G5 and the mini work OK? That would suggest an issue with the KVM.

  • HT6114 Delaying problem when switching desktop

    After upgrading to Mavericks v10.9.2 Update my "Macbook pro Retina, 15-inch, Early 2013" is delaying when switching desktops or switching to mission control. An overall delay problems occured. I need help!

    First off, I meant to title this "When switching spaces application window is not showing."
    Just in case anyone else runs into this problem or any other weirdness with switching between spaces, the answer seems to be trashing the com.apple.dock.plist file and then restarting the dock. The preferences file can evidentially get corrupted and create some problems. Spaces does not have it's own plist file but stores it's data in the dock's plist file. Be warned that this will reset all of your dock preferences including which apps you have on the dock.
    Mark

  • Safari 7.0 problem when hovering over links

    Recently updated to Mavericks and Safari 7.0.  Now encountering a problem with my wordpress website www.robinmandel.net (and several other sites that use the same theme evince the same problem.)  Problem is: some links, both text and images, are now jumping around when moused over, making them impossible to click and disrupting the formatting of the page.  Same problem with Chrome.  Firefox works fine.  I've looked at my site on an older machine with Safari 6 and no problem.  Thoughts?

    Use another theme.

  • Problem when switch wifi to 3G or 3G to wifi

    Hi,
    I recently bought the iPad 64 wifi + 3G. I face a problem when I want to switch wifi to 3G network or the reverse. I do it through the parameters window. The wifi or 3G indicators do appear but then when I launch safari, no connexion is madfe and the following error message appear :
    "No cellular data ..."
    What can I do ?
    Plus I have problem connecting when both wifi and 3G are on.
    The ipad should manage this easily. That's key for its use.
    Thanks !

    If both cellular and wifi are on and connected, the iPad will use wifi first and only default to 3G if the wifi connection is lost. In setting you can turn wifi and 3g (cellular) off and on individually. Not infrequently a wifi connection will be show by the icon but in reality there really is no connection. You can check by going into Setting>Network>the right hand arrow by the network that may be connected. If the IP address starts with a 169 you are not really connected. There are many discussion on the forum about wifi problems.

  • XSLT problem when switching to JDK 1.4

    Hi,
    I have used Xalan for transforming XML into HTML under JDK 1.3.1 but when I switch to 1.4.1 I get problems with attributes in the HTML part of my XSL file. I know that Xalan is included in 1.4 and apparently something has changed...
    Java code ---------------------------------------------------------------:
    System.setProperty("javax.xml.transform.TransformerFactory", "org.apache.xalan.processor.TransformerFactoryImpl");
    TransformerFactory tFactory = TransformerFactory.newInstance();
    String xmlFile = "C:/<<path>>/test.xml";
    String xslFile = "C:/<<path>>/test.xsl";
    String htmlFile = "C:/<<path>>/test.html";
    StreamSource xmlSource = new StreamSource(xmlFile);
    StreamSource xsltSource = new StreamSource(xslFile);
    StreamResult htmlResult = new StreamResult(new BufferedOutputStream(new FileOutputStream(htmlFile)));
    // Get a XSLT transformer
    Transformer transformer = tFactory.newTransformer(xsltSource);
    // Do the transform
    transformer.transform(xmlSource, htmlResult);
    XSL code ---------------------------------------------------------------:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="html"/>
    <xsl:template match="/">
    <html>
    <body>
    <table>
    <tr><td>some text</td></tr>
    </table>
    </body>
    </html>
    </xsl:template>
    </xsl:stylesheet>
    If I add any attribute to the HTML part of the XSL file I get a fat stack trace.
    Changing to (added a "bgcolor" attribute):
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="html"/>
    <xsl:template match="/">
    <html>
    <body bgcolor="#0000FF">
    <table>
    <tr><td>some text</td></tr>
    </table>
    </body>
    </html>
    </xsl:template>
    </xsl:stylesheet>
    will give me:
    javax.xml.transform.TransformerConfigurationException: javax.xml.transform.TransformerConfigurationException: javax.xml.transform.TransformerException: java.lang.NullPointerException
         at org.apache.xalan.processor.TransformerFactoryImpl.newTransformer(TransformerFactoryImpl.java:767)
         at se.carmen.db.XsltTransform14.main(XsltTransform14.java:32)
    Caused by: javax.xml.transform.TransformerConfigurationException: javax.xml.transform.TransformerException: java.lang.NullPointerException
         at org.apache.xalan.processor.TransformerFactoryImpl.newTemplates(TransformerFactoryImpl.java:946)
         at org.apache.xalan.processor.TransformerFactoryImpl.newTransformer(TransformerFactoryImpl.java:750)
         ... 1 more
    Caused by: javax.xml.transform.TransformerException: java.lang.NullPointerException
         at org.apache.xalan.processor.TransformerFactoryImpl.newTemplates(TransformerFactoryImpl.java:942)
         ... 2 more
    Caused by: java.lang.NullPointerException
         at org.apache.xerces.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:987)
         at org.apache.xalan.processor.TransformerFactoryImpl.newTemplates(TransformerFactoryImpl.java:934)
         ... 2 more
    javax.xml.transform.TransformerConfigurationException: javax.xml.transform.TransformerException: java.lang.NullPointerException
         at org.apache.xalan.processor.TransformerFactoryImpl.newTemplates(TransformerFactoryImpl.java:946)
         at org.apache.xalan.processor.TransformerFactoryImpl.newTransformer(TransformerFactoryImpl.java:750)
         at se.carmen.db.XsltTransform14.main(XsltTransform14.java:32)
    Caused by: javax.xml.transform.TransformerException: java.lang.NullPointerException
         at org.apache.xalan.processor.TransformerFactoryImpl.newTemplates(TransformerFactoryImpl.java:942)
         ... 2 more
    Caused by: java.lang.NullPointerException
         at org.apache.xerces.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:987)
         at org.apache.xalan.processor.TransformerFactoryImpl.newTemplates(TransformerFactoryImpl.java:934)
         ... 2 more
    etc...
    java.lang.NullPointerException
         at org.apache.xalan.processor.XSLTElementDef.getAttributeDef(XSLTElementDef.java:624)
         at org.apache.xalan.processor.XSLTElementProcessor.setPropertiesFromAttributes(XSLTElementProcessor.java:352)
         at org.apache.xalan.processor.XSLTElementProcessor.setPropertiesFromAttributes(XSLTElementProcessor.java:311)
         at org.apache.xalan.processor.ProcessorLRE.startElement(ProcessorLRE.java:315)
         at org.apache.xalan.processor.StylesheetHandler.startElement(StylesheetHandler.java:656)
         at org.apache.xerces.parsers.AbstractSAXParser.startElement(AbstractSAXParser.java:342)
         at org.apache.xerces.impl.xs.XMLSchemaValidator.startElement(XMLSchemaValidator.java:401)
         at org.apache.xerces.impl.XMLNamespaceBinder.handleStartElement(XMLNamespaceBinder.java:809)
         at org.apache.xerces.impl.XMLNamespaceBinder.startElement(XMLNamespaceBinder.java:556)
         at org.apache.xerces.impl.dtd.XMLDTDValidator.handleStartElement(XMLDTDValidator.java:2678)
         at org.apache.xerces.impl.dtd.XMLDTDValidator.startElement(XMLDTDValidator.java:782)
         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanStartElement(XMLDocumentFragmentScannerImpl.java:747)
         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(XMLDocumentFragmentScannerImpl.java:1445)
         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:328)
         at org.apache.xerces.parsers.StandardParserConfiguration.parse(StandardParserConfiguration.java:479)
         at org.apache.xerces.parsers.StandardParserConfiguration.parse(StandardParserConfiguration.java:521)
         at org.apache.xerces.parsers.XMLParser.parse(XMLParser.java:148)
         at org.apache.xerces.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:972)
         at org.apache.xalan.processor.TransformerFactoryImpl.newTemplates(TransformerFactoryImpl.java:934)
         at org.apache.xalan.processor.TransformerFactoryImpl.newTransformer(TransformerFactoryImpl.java:750)
         at se.carmen.db.XsltTransform14.main(XsltTransform14.java:32)
         Anyone got any ideas??

    I took a look in the release notes for the version of JAXP that I had previously downloaded and used with JDK 1.3:
    Specification Version: 1.2
    Reference Implementation (RI) Version: 1.2.0-EA1
    I could also find this information:
    Version 1.4 of the Java Platform
    To use this version of the Java XML release with version 1.4 of the Java platform, you must place them in
    <platformLocation>/jre/lib/endorsed
    They must exist in this location to override earlier versions of the Xalan libaries that are a standard part of the 1.4 platform. Because of that special requirement, it is not possible to specify these libraries using the -classpath option on the java/javac command line.
    Putting my xalan.jar (and xerces.jar) in a new folder named "endorsed" as specified actually made it work!
    I still have one question... Is there another way to specify the new version of xalan without putting it in this folder, I do not have control over the target platform and it would be better to use some kind of JVM setting if there is one?

  • Problem when switching from https to http on Safari

    I am using a Safari browser and try to switch from https to http within the same web application.
    The Safari browser is configured so that on Safari->Preferences->Security the check box "Ask before sending a non-secure form to a secure website" is checked.
    When using the Safari browser in my web application and going from an https page to an http page, the browser shows an (expected) dialog box asking the user whether he wants to send a non secure form. Clicking Ok (twice) causes the following problematic dialog box to appear :
    Safari can't open the specified address;
    Safari can't open "(null)" because Mac OS X doesn't
    recognise Internet addresses starting with "(null)"
    How can I avoid this problem without having to uncheck the above mentioned check box in Safari->Preferences->security.

    I have somehow a similar problem,too. My site is in https upon login which maintains some session data. One of the features of my site is the file upload (servlet) which does some batch processing. Since my https session terminates(timeout)upon uploading, I resorted to switching the link to an http session using
    File Upload
    When I do "session.getAttribute('data')" in my servlet after being called by the "upload.jsp", a NullPointerException is thrown at that particular line.
    My question:
    1. Upon uploading of file/data via https, is there a maximum bytes that it can only process? My file is just less than 1MB and it terminates the session. How do I go about it? Should I switch it then to an http?
    2. If I switch from https to an http session, SSL session data can not be retrieved from an http session?
    Thanks!

  • Codec Problem when switching computers

    I am having a problem, where I copy my .fcp and all the videos that are with it, to another computer.
    I have a macbook with leopard.
    the other computer is a 2ghz core duo imac (the white ones)which has tiger
    It says it cant find the codec.
    Also, sometimes thef iles arent connected, when i try and reconnect them, it says the times don't match up. Im literally using the same files, nothing is different.
    Any help on what to do to switch computers to work on things would be very helpful

    DX50 is a DivX format and is not a natively supported codec. the trouble is that the Mac where it plays properly has had a third party codec installed which enables that file type, whereas the other one hasn't
    Download and install Perian form http://www.perian.org then see if it doesn't automaigaclly start working

  • Ms exchange activesync problem when switching networks

    i've noticed that when i switch networks (i.e. go from ny to sf), i land and set my phone from airplane mode to active, my iphone does not sync with my company's exchange server. it gives me a connection error. i then have to do a reset of the phone and it works fine.
    this also occurs when i switch from 3G to edge and vice versa. i have to do a hard reset of the phone in order to get mail to work again. this doesn't occur with my gmail account, just my MS Exchange activesync.
    anyone else notice this?

    by the way, i'm running 2.0.1 firmware and this was not a problem with 2.0 firmware.

  • Problem when switching Pearl on - please help

    Hope someone out there can help me.  I have a Pearl 8100, its been working fine for a few months, but yesterday when i went to turn it on, the hourglass displayed for about 1 minute then i had the front screen, but with the hourglass displaying and a box the with a message "Verifying Security Software and a % sliding amount of the checking that has been processed, this is displayed for a minute or more then the phone switches off!  tried taking the battery out etc but phone again goes through this process - any help is appreciated.  

    Hey dumpeal2,
    Welcome to the forums.
    Try following the instructions here to backup and do a clean reload of your device software. http://bbry.lv/cKy9A0 if you get the same result then I would suggest contacting your service provider and have them escalate your issue to RIM. 
    -SR
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • Nokia Lumnia 610 problem when switched off

    when I switch the mobile fully off then switch it back on again and/or the battery is discharged, it doesn't record any calls or texts received when the phone is switched off [fully] or the battery is flat. Can anybody help please

    It wont record anything if switched off,some operators provide a call catcher service,ie you get an sms that you have had a missed call.
    If you turn on your phone and no sms come through it simply means you got none.
    If  i have helped at all a click on the white star below would be nice thanks.
    Now using the Lumia 1520

  • Look & Feel Problem when switching to JRE1.6.0_10 (GTK error on fedora 9)

    Hi,
    I have switched a Swing app I'm developping from openjdk to sun jdk1.6.0_10 in order to track memory leacks (the profiler I wish to use tells me openjdk is not stable enough to get itself installed).
    Now I have problems displaying some of the GUI components : background in some JPanel herited classes (propertysheet l2fprod component), buttons on combo boxes.
    I get these messages in the console :*
    +(<unknown>:6330): Gtk-WARNING **: Attempting to add a widget with type GtkButton to a GtkComboBoxEntry (need an instance of GtkEntry or of a subclass)+
    +(<unknown>:6330): Gtk-CRITICAL **: gtk_widget_realize: assertion `GTK_WIDGET_ANCHORED (widget) || GTK_IS_INVISIBLE (widget)' failed+
    +(<unknown>:6330): Gtk-CRITICAL **: gtk_paint_box: assertion `style->depth == gdk_drawable_get_depth (window)' failed+
    +(<unknown>:6330): Gtk-CRITICAL **: gtk_paint_box: assertion `style->depth == gdk_drawable_get_depth (window)' failed+
    As far as I know it's running fine under XP with jre 1.6.0_07. The problems occurs at runtime with jre1.6.0_10 on Fedora9. It's okay if I launch it with openjdk (but I can't use my profiler !). I didn't try other jre versions on my Linux box neither I know if the problem occurs under XP with jre1.6.0_10.
    Here's the config I have this problem on :_
    OS/Desktop : Fedora 9 (kernel 2.6.25.14.fc9.i686), GNOME 2.22.3
    VM : Java HotSpot(TM) Client VM version 11.0-b15
    Library path:
    /usr/java/jre1.6.0_10/lib/i386/client:/usr/java/jre1.6.0_10/lib/i386:/usr/java/jre1.6.0_10/../lib/i386:/usr/java/packages/lib/i386:/lib:/usr/lib
    Boot class path:
    /usr/java/jre1.6.0_10/lib/resources.jar:/usr/java/jre1.6.0_10/lib/rt.jar:/usr/java/jre1.6.0_10/lib/sunrsasign.jar:/usr/java/jre1.6.0_10/lib/jsse.jar:/usr/java/jre1.6.0_10/lib/jce.jar:/usr/java/jre1.6.0_10/lib/charsets.jar:/usr/java/jre1.6.0_10/classes
    Any Ideas ?
    Edited by: squiggly on Oct 24, 2008 1:59 AM

    I have no experience with cscript, but by typing cscript in a command prompt i get:
    Microsoft (R) Windows Script Host Version 5.7
    Copyright (C) Microsoft Corporation. All rights reserved.
    Usage: CScript scriptname.extension [option...] [arguments...]
    Options:
    //B         Batch mode: Suppresses script errors and prompts from displaying
    //D         Enable Active Debugging
    //E:engine  Use engine for executing script
    //H:CScript Changes the default script host to CScript.exe
    //H:WScript Changes the default script host to WScript.exe (default)
    //I         Interactive mode (default, opposite of //B)
    //Job:xxxx  Execute a WSF job
    //Logo      Display logo (default)
    //Nologo    Prevent logo display: No banner will be shown at execution time
    //S         Save current command line options for this user
    //T:nn      Time out in seconds:  Maximum time a script is permitted to run
    //X         Execute script in debugger
    //U         Use Unicode for redirected I/O from the consoleDoesn't this mean that the script file name should come before the option (//Nologo)?
    I run XP SP 3.

  • Problem when copying over the Oracle Lite DB Files...

    Hi All,
    i have installed oracle Lite 10g on my desktop and created a Database and then created a user on it.
    when i created all of that, it created two files: one which is a .odb (datbase file) and .opw (password file).
    the opw files has encrypted info about the user that i created on the DB.
    i am trying to port my entire application on to a laptop.
    so i install oracle lite 10g on it and then copy over these Datafiles (.odb) and password (.opw) file.
    i make the neccesary entries in the ODBC.ini file.
    now when i try to msql into the database it gives me an POL-5150 Access Violation error.
    any clue as to why it does not let me login.
    I Tried logging in both as the system user and the user that i created on the DB.
    any help would be great.
    i can login into the DB on my Desktop with the same username/password. no issues there. the issue is when i copy those files on the laptop.
    thanks,
    Milind

    Make shure that this file is in a folder that is in your path.
    to check this check your path (form cmd prompt typ set path) en search your hard disk for occurences of olod2040.dll.
    On my desktop the file is in C:\oracle\olite\Mobile\Sdk\BIN, this folder is also part of my path.
    normaly the file can also be found in C:\mobileclient\bin or whereever you installed the mobile client. I once noticed that deinstalling the sdk gave me the same error, the path was not set correctly when deinstalling.

  • Compilation problem when switching databases.

    it looks like oracle reports need recompilation everytime in order to run on other databases otherthan database where it compiled.Otherwise Oracle reports says "Unable to load program units.Do you want to load source copy only?".If you say Yes,it works fine but i need all those reports to run in non interactive mode(batch mode).this problem happens with reports 3.0 & 6i runtime tools calling from commandline.i also noticed another problem that oracle reports needs recompilation again for the same database if you have any reports dependant oracle object modified after the first compilation.please let me know the answer which is very useful for other users facing similar issues.
    Contact ph :- 302-791-8976
    without touching the columns that reports depending on.
    null

    We had this same problem with a certain version of Reports 3.0. We upgraded to version 3.0.5.12, recompiled the reports against 1 database instance, and then they ran fine on all of our instances.
    Hope that helps.

  • Problem when switching IDE environment

    Hi, all
    I've a serious and killing question, that is 2 days before, i use Netbeans to develop my JSP web server project, it work just right. But then yesterday, i try to use Eclipse 3 to develop, it tell me there is an error, which is the class path NOT found, thus i plan to switch back to Netbeans again, ok! You know guy, the project won't start, it just hang / stop at middle code of the starting project, my development spec is below:
    1.) Tomcat 4.1.3
    2. ) JAVA 1.4.2
    3.) Netbeans 3.6
    wat is happening???
    the project stop / hang at here:
    Jan 11, 2005 3:18:39 PM org.apache.coyote.http11.Http11Protocol init
    INFO: Initializing Coyote HTTP/1.1 on port 8080
    Starting service Tomcat-Standalone
    Apache Tomcat/4.1.30
    before the error, there are many other line printed between here actually
    Jan 11, 2005 3:18:42 PM org.apache.struts.util.PropertyMessageResources <init>
    INFO: Initializing, config='org.apache.struts.util.LocalStrings', returnNull=tru
    e
    Jan 11, 2005 3:18:42 PM org.apache.struts.util.PropertyMessageResources <init>
    INFO: Initializing, config='org.apache.struts.action.ActionResources', returnNul
    l=true
    Jan 11, 2005 3:18:43 PM org.apache.struts.util.PropertyMessageResources <init>
    INFO: Initializing, config='org.apache.webapp.admin.ApplicationResources', retur
    nNull=true
    Jan 11, 2005 3:18:45 PM org.apache.coyote.http11.Http11Protocol start
    INFO: Starting Coyote HTTP/1.1 on port 8080
    Jan 11, 2005 3:18:45 PM org.apache.jk.server.JkMain start
    INFO: APR not loaded, disabling jni components: java.io.IOException: java.lang.U
    nsatisfiedLinkError: no jkjni in java.library.path
    Jan 11, 2005 3:18:45 PM org.apache.jk.common.ChannelSocket init
    INFO: JK2: ajp13 listening on /0.0.0.0:8009
    Jan 11, 2005 3:18:45 PM org.apache.jk.server.JkMain start
    INFO: Jk running ID=0 time=0/31  config=C:\tomcat4.1.30\bin\..\conf\jk2.properti
    es

    All I can say is that something really screwed up your installation. Try reinstalling netbeans completely (your application settings are in your user folder, so they are not deleted).

Maybe you are looking for