Standby RFS issue

At standby database RFS is not working.Thogugh archivelog at production database are there after 4749..4750,4751,...4768.
SQL> set linesize 1000
SQL> select process,client_process,status,sequence# from v$managed_standby;
PROCESS                     CLIENT_PROCESS           STATUS                 SEQUENCE#
ARCH                        ARCH                     CONNECTED                 0
ARCH                        ARCH                     CONNECTED                 0
MRP0                        N/A                      WAIT_FOR_LOG           4749whenever i run this query select process,client_process,status,sequence# from v$managed_standby,
i see the same result as above without RFS process.
PROCESS                     CLIENT_PROCESS           STATUS                 SEQUENCE#
ARCH                        ARCH                     CONNECTED                 0
ARCH                        ARCH                     CONNECTED                 0
MRP0                        N/A                      WAIT_FOR_LOG           4749When i check alert of primary database i get the following error.
Error 12154 received logging on to the standby
Sun May  8 20:47:13 2011
Errors in file /orahome/PROD/db/tech_st/10.2.0/admin/PROD_dbprod/bdump/prod_arc3_29624.trc:
ORA-12154: TNS:could not resolve the connect identifier specified
PING[ARC3]: Heartbeat failed to connect to standby 'standby'. Error is 12154.but i can connect to standby database using its connect string for standby database from primary database.
[oraprod@dbprod mirrorarc]$ sqlplus sys/*****@standby as sysdba
SQL*Plus: Release 10.2.0.2.0 - Production on Sun May 8 20:54:52 2011
Copyright (c) 1982, 2005, Oracle.  All Rights Reserved.
Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - Production
With the Partitioning, OLAP and Data Mining options
SQL>listener is also up at standby database
[oraprod@dbdg ~]$ lsnrctl status
LSNRCTL for Linux: Version 10.2.0.2.0 - Production on 08-MAY-2011 20:36:14
Copyright (c) 1991, 2005, Oracle.  All rights reserved.
Connecting to (ADDRESS=(PROTOCOL=tcp)(HOST=)(PORT=1521))
STATUS of the LISTENER
Alias                     PROD
Version                   TNSLSNR for Linux: Version 10.2.0.2.0 - Production
Start Date                08-MAY-2011 16:39:31
Uptime                    0 days 3 hr. 56 min. 42 sec
Trace Level               off
Security                  ON: Local OS Authentication
SNMP                      OFF
Listener Parameter File   /orahome/PROD/db/tech_st/10.2.0/network/admin/PROD_dbdg/listener.ora
Listener Log File         /orahome/PROD/db/tech_st/10.2.0/network/admin/prod.log
Listening Endpoints Summary...
  (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROCPROD)))
  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.3.11)(PORT=1521)))
Services Summary...
Service "PLSExtProc" has 1 instance(s).
  Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
Service "PROD" has 1 instance(s).
  Instance "PROD", status UNKNOWN, has 1 handler(s) for this service...
Service "standby" has 1 instance(s).
  Instance "PROD", status READY, has 1 handler(s) for this service...
Service "standby_XPT" has 1 instance(s).
  Instance "PROD", status READY, has 1 handler(s) for this service...
The command completed successfullyIt was working perfectly alright , this morning i just did the following activities and nothing else.
-Cancel standby recovery mode
-Shutdown standby database.
-Shutdown Production database.
-Startup production database.
-Startup Standby database.
-Put standby database in recovery mode (alter database recover managed standby database disconnect from session).
i have done the same above step many time as before but never confront such issue at standby database.Could you please let me know how can i resolve this issue.

As i said i faced the same issue as before and got it resolved by killing Arc0 background process at Production (Primary Database) , this time i did the same few days before but invain dont know which BG process i killed at primary database ;) , i just did the same again and archivleog started to shipped :) , very strange , it could be due to getting off from office and having sound sleep after a toughest involvement of month end closing ;)
At Production
=============
[oraprod@dbprod orahome]$ ps -ef | grep ora_arc
oraprod    366 15311  0 15:41 pts/1    00:00:00 grep ora_arc
oraprod  19182     1  0 May09 ?        00:00:10 ora_arc0_PROD
oraprod  20893     1  0 May09 ?        00:00:15 ora_arc1_PROD
oraprod  29307     1  0 May08 ?        00:00:39 ora_arc2_PROD
oraprod  29624     1  0 May08 ?        00:00:41 ora_arc3_PROD
oraprod  29633     1  0 May08 ?        00:00:43 ora_arc4_PROD
oraprod  29644     1  0 May08 ?        00:00:41 ora_arc5_PROD
oraprod  29664     1  0 May08 ?        00:00:43 ora_arc6_PROD
oraprod  29687     1  0 May08 ?        00:00:46 ora_arc7_PROD
oraprod  29709     1  0 May08 ?        00:00:41 ora_arc8_PROD
oraprod  30005     1  0 May08 ?        00:00:54 ora_arc9_PROD
[oraprod@dbprod orahome]$ kill -9 29624
[oraprod@dbprod orahome]$ ps -ef | grep ora_arc
oraprod    755     1  0 15:42 ?        00:00:00 ora_arc3_PROD
oraprod    757 15311  0 15:42 pts/1    00:00:00 grep ora_arc
oraprod  19182     1  0 May09 ?        00:00:10 ora_arc0_PROD
oraprod  20893     1  0 May09 ?        00:00:15 ora_arc1_PROD
oraprod  29307     1  0 May08 ?        00:00:39 ora_arc2_PROD
oraprod  29633     1  0 May08 ?        00:00:43 ora_arc4_PROD
oraprod  29644     1  0 May08 ?        00:00:41 ora_arc5_PROD
oraprod  29664     1  0 May08 ?        00:00:43 ora_arc6_PROD
oraprod  29687     1  0 May08 ?        00:00:46 ora_arc7_PROD
oraprod  29709     1  0 May08 ?        00:00:50 ora_arc8_PROD
oraprod  30005     1  0 May08 ?        00:00:54 ora_arc9_PROD
[oraprod@dbprod orahome]$ kill -9 19182
[oraprod@dbprod orahome]$ kill -9 20893
[oraprod@dbprod orahome]$ kill -9 29307
[oraprod@dbprod orahome]$ ps -ef | grep ora_arc
oraprod    755     1  1 15:42 ?        00:00:02 ora_arc3_PROD
oraprod   2356     1  1 15:44 ?        00:00:00 ora_arc0_PROD
oraprod   2663     1  5 15:44 ?        00:00:00 ora_arc1_PROD
oraprod   2689     1 23 15:44 ?        00:00:00 ora_arc2_PROD
oraprod  29633     1  0 May08 ?        00:00:45 ora_arc4_PROD
oraprod  29644     1  0 May08 ?        00:00:42 ora_arc5_PROD
oraprod  29664     1  0 May08 ?        00:00:45 ora_arc6_PROD
oraprod  29687     1  0 May08 ?        00:00:47 ora_arc7_PROD
oraprod  29709     1  0 May08 ?        00:01:00 ora_arc8_PROD
oraprod  30005     1  0 May08 ?        00:01:01 ora_arc9_PROD
[oraprod@dbprod orahome]$ kill -9 29633
[oraprod@dbprod orahome]$ kill -9 29644
[oraprod@dbprod orahome]$ kill -9 29664
[oraprod@dbprod orahome]$ kill -9 29687
[oraprod@dbprod orahome]$ kill -9 29709
[oraprod@dbprod orahome]$ kill -9 30005
[oraprod@dbprod orahome]$ ps -ef | grep ora_arc
oraprod    755     1  1 15:42 ?        00:00:03 ora_arc3_PROD
oraprod   2356     1  0 15:44 ?        00:00:00 ora_arc0_PROD
oraprod   2663     1  2 15:44 ?        00:00:01 ora_arc1_PROD
oraprod   2689     1  2 15:44 ?        00:00:01 ora_arc2_PROD
oraprod   2778     1  2 15:45 ?        00:00:00 ora_arc4_PROD
oraprod   3069     1  2 15:45 ?        00:00:00 ora_arc5_PROD
oraprod   3088     1  4 15:45 ?        00:00:00 ora_arc6_PROD
oraprod   3144     1  3 15:45 ?        00:00:00 ora_arc7_PROD
oraprod   3170     1  6 15:45 ?        00:00:00 ora_arc8_PROD
oraprod   3186     1 12 15:45 ?        00:00:00 ora_arc9_PROD
oraprod   3234 15311  0 15:45 pts/1    00:00:00 grep ora_arcStandby Database
================
SQL> select process,client_process,status,sequence# from v$managed_standby;
PROCESS                     CLIENT_PROCESS           STATUS                                SEQUENCE#
ARCH                        ARCH                     CONNECTED                                     0
ARCH                        ARCH                     CONNECTED                                     0
MRP0                        N/A                      APPLYING_LOG                               4774
SQL> /
PROCESS                     CLIENT_PROCESS           STATUS                                SEQUENCE#
ARCH                        ARCH                     CONNECTED                                     0
ARCH                        ARCH                     CONNECTED                                     0
MRP0                        N/A                      APPLYING_LOG                               4778
RFS                         N/A                      IDLE                                          0Thanks for all who beard sometime for me here.

Similar Messages

  • Standby upgrade issue

    Hi
    I have a 11gR1 database with dataguard setup.I have successfully upgraded the primary database to 11gR2 using dbua.
    Although 11gR2 software is installed on standby server,I realized archivelogs were not shipped to standby server during the database upgrade.
    When I switch logfile in primary, I see below errors in standby alertlog:
    RFS: 'Attach' request version mismatchI think it is because the database versions become different after the upgrade( primary became 11.2, standby is still 11.1)
    Because of this issue, archivelogs are not being transferred.
    Do I manually need to edit oratab, create new spfile and start standby instance from new oracle home (11.2) ? These things were done automatically on primary database by dbua.

    Hello;
    The short story on this is :
    See Oracle support article : How do you apply a Patchset,PSU or CPU in a Data Guard Physical Standby configuration [ID 278641.1]
    My overview is :
    Disable log shipping from the Primary.
    Shutdown Standby .
    Install 11.2.0.2 software only on the Standby.
    Start the Standby in recovery mode ( using the new home and env. settings ) ( do not run DBUA on standby )
    Re-enable log shipping
    Monitor the redo apply from Primary to Standby -- this will upgrade the Standby
    Your questions
    Do I manually need to edit oratab, create new spfile and start standby instance from new oracle home (11.2) ?
    You can edit the oratab afterwards on the standby.
    You can move (copy) the spfile and password file to the new Oracle home on the standby. (This is what I do before restarting)
    Yes, you need to change the env to the new Oracle home before starting up mount and starting recovery.
    Just did four of these this week and I'm doing four more today. Will keep my eyes open for you.
    Best Regards
    mseberg
    Later
    Another thing I do is copy my tnsnames.ora and listener.ora to the new home on both the Standby and Primary and edit this in the listener.ora as needed :
    (SID_DESC =
           (global_dbname = PRIMARY_DGMGRL.thanks.buddy.com)
           (ORACLE_HOME = /u01/app/oracle/product/11.2.0)
           (sid_name = PRIMARY)
        )Then if you restart the listeners on both and bounce the databases you will probably avoid a "heartbeat" error.
    mseberg
    Edited by: mseberg on Dec 10, 2011 6:12 AM

  • Logical Standby working issues Oracle 9i, Windows

    Hi,
    Set up Oracle 9i Logical Standby on Windows. (instructions as per Oracle Documentation)
    Did not have any issues setting up.
    While setting up the Logical Standby, Recovered the Primary Database until Oct 10/09 8:16 pm
    Registered the archive log in the logical standby generated hence and the FAL took care of copying/registering the rest of the archivelogs.
    Created and inserted some records in Primary database and could see them in Standby.
    So far so good.
    On Oct11 data was entered into Primary database. Archivelogs were shipped to Standby, I could see them registered in DBA_LOGSTDBY_LOG.
    The APPLIED_SCN,NEWEST_SCN were in sync as per DBA_LOGSTDBY_PROGRESS.
    Today, we had some issues with data and when we queried the user tables: (no skip settings)
    Couldn't see any data in standby past the recovery...
    No errors reported in DBA_LOGSTDBY_EVENTS. No errors in Alert log also.
    What could be happening?
    Thanks,
    Madhuri

    I figured it out...
    Today, we had some issues with data and when we queried the user tables: (no skip settings)
    Couldn't see any data in standby past the recovery...I was using two tables as random spot check and both did not get updated. So, I was under the impression SQL APPLY did not do anything.
    But, it did apply the redo on the rest of the tables.
    These 2 tables in question were skipped because both of them had Function Based indexes.
    They are very huge individual tables .
    So, exporting them from Primary database and Importing them into Standby Database. Skipping DML in DataGuard.
    That solved the problem.
    --Madhuri                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • N9-00 Standby screen issue

    Hi,
    I'm facing a pretty strange issue with my N9. I've reflashed the phone yesterday but this hasn't fixed the problem.
    The normal process should (and was for the last 18 months of running my N9):
    1. Hide the proximity sensor
    -> The screen gets off
    2. Unhide the proximity sensor
    -> The screen gets on again, show the standby screen with time
    For some days, here is how my N9 works:
    1. Hide the proximity sensor
    -> The screen gets off
    2. Unhide the proximity sensor
    -> The screen gets on again, but it remains totally empty. In a dark room, I can clearly see the screen is on, but is shows nothing. If I want the time to be displayed, I have to push the on/off button twice.
    Any help ti fix this? Thanks.
    Solved!
    Go to Solution.

    Fixed the issue. Just did a full N9 reflash with data wipe. It works now.

  • Physical Standby: RFS: 'Attach' request version mismatch

    I have a 10.1.0.4 database that I want to move to a new machine and also upgrade to 10.2.0.1. I'm trying to follow the instructions for using SQL Apply to perforn a rolling upgrade with minimal downtime. My understanding is that I must first create a physical standby, and then transition the physical standby to a logical standby. Well, my physical standby is failing. I see the following in the standby's alert log:
    RFS: 'Attach' request version mismatch
    Both databases have their COMPATIBLE parameter set to 10.1.0.2.
    As an aside, if I must first create a working physical standby, then why do I need to transition that standby to a logical standby? I mean, can't I just get the physical standby working, perform a switchover, and be done with it?

    I was confused. I thought I could just create a 10.2.0.1 standby for a 10.1.0.4 primary. The process, though, is to first get a working 10.1.0.4 (logical) standby for the 10.1.0.4 primary. At that point dbua can be used to upgrade the standby, and I can go from there.
    I'm sure everything will work, now that I understand the steps required.

  • Standby logfile issue

    I created a dataguard, one primary database and one physical standby. The protection mode is maximum protection. My issue is: everytime when I archive a logfile in primary, it will write to standby logfile in standby logfile. Then the standby logfile status will show 'ACTIVE', and can't reuse it. if I need archive standby logfile in standby database, then I can get the standby logfile reuse?
    Now if I add one more standby logfile in standby database, I can archive a logfile in primary. Then I can't archive another more in primary, unless i add one more standby logfile in standby.
    thanks a lot,
    kelvin

    Thank you everyone. Yes mike, I already 'recover managed standby database using current logfile disconnect from session'. And Emre, I have 3 logfile groups in primary, every group has 2 members. I am using ASM for storage. in standby, at beginning, I created 4 standby groups(every one has 2 members and same size with primary logfile). But after a while, the primary database shut down. I checked alert log in primary, mention 'no available standby logfile to use'. So I added another 4 standby logfiles ......
    So anybody know, for the standby logfile, if we need archive those logfiles. So primary can reuse and write log to these standby logfile when primary database do a 'archive log current'. Now I believe my primary database can't reuse those standby logfile in standby database, so I need to add one more, one more standby logfile..
    Thanks a lot,
    kelvin

  • Standby/hibernation issues after driver upgrades

    Hi
    I recently upgraded a whole bunch of drivers for my T500 (including a BIOS update, the PM driver and software, fingerprint reader, etc) and now when I try go into Standby or Hiberation, my machine goes to the "Preparing to Standby..." screen but nothing ever happens. It's not frozen because the mouse still works, but it just never does anything. Strangely, it doesn't happen if I've just rebooted though, but I have no idea of what is causing the issue. I've tried making sure that all applications etc are closed in case it's an app that's causing the issue, but it still does it. I'd like to try reinstalling the old PM drivers etc, but I can't find them on the website.
    Does anyone have an ideas or maybe some tips on how to troubleshoot this?
    Any help would be much appreciated.
    Thanks
    James

    hardaway wrote:
    Thanks for the tips!
    C) doesn't make it often to you?
    Thank God, no ^^
    But the sometimes hanging, after being moved and the seldomly not waking up from standby are present ... but not too often.
    Greetz!
    M.T.

  • Physical Standby Configuration Issue

    Hi All,
    DB Version:10.2.0
    OS Version:Windows
    I am trying to create Physical standby DB on the same machine where my pri db is running for testing purpose. I am following the Official Doc for configuring the physical standby
    docs.oracle.com/cd/B19306_01/server.102/b14239/create_ps.htm
    But this time what happens with me when i configure all the things as per the doc and issue
    SQL>ALTER DATABASE RECOVER MANAGED STANDBY DATABASE DISCONNECT FROM SESSION; on standby
    what i saw redo files redo01,redo02,redo03 are generated again in standby folder which already contains standby logfiles. And this gnerates an error of unable to read file redo03.log on the standby path when i check the aler log files of standby db.below are my pfile for sec db:
    *.audit_file_dest='E:\oracle\product\10.2.0\admin\pak\adump'
    *.background_dump_dest='E:\oracle\product\10.2.0\admin\pak\bdump'
    *.compatible='10.2.0.1.0'
    *.control_files='E:\oracle\product\10.2.0\oradata\pak\control01.ctl'
    *.core_dump_dest='E:\oracle\product\10.2.0\admin\pak\cdump'
    *.db_block_size=8192
    *.db_domain=''
    *.db_file_multiblock_read_count=16
    *.db_file_name_convert='india','pak'
    *.db_name='india'
    *.db_recovery_file_dest='E:\oracle\product\10.2.0/flash_recovery_area'
    *.db_recovery_file_dest_size=2147483648
    *.db_unique_name=pak
    *.dispatchers='(PROTOCOL=TCP) (SERVICE=indiaXDB)'
    *.fal_client=pak
    *.fal_server=india
    *.job_queue_processes=10
    *.log_archive_config='DG_CONFIG=(india,pak)'
    *.log_archive_dest_1='LOCATION=E:\oracle\product\10.2.0\flash_recovery_area\pak\ VALID_FOR=(ALL_LOGFILES,ALL_ROLES) DB_UNIQUE_NAME=pak'
    *.log_archive_dest_2='SERVICE=india LGWR ASYNC VALID_FOR=(ONLINE_LOGFILES,PRIMARY_ROLE) DB_UNIQUE_NAME=india'
    *.log_archive_dest_state_1='ENABLE'
    *.log_archive_dest_state_2='ENABLE'
    *.log_file_name_convert='E:\oracle\product\10.2.0\oradata\india\','E:\oracle\product\10.2.0\oradata\pak'
    *.open_cursors=300
    *.pga_aggregate_target=92274688
    *.processes=150
    *.remote_login_passwordfile='EXCLUSIVE'
    *.sga_target=278921216
    *.standby_file_management='AUTO'
    *.undo_management='AUTO'
    *.undo_tablespace='UNDOTBS1'
    *.user_dump_dest='E:\oracle\product\10.2.0\admin\pak\udump'
    Kindly help me what i need to do
    Thanks all in advance

    Hi All,
    When I check group# in primary DB by using sql
    SQL> select group# from v$log;
    it shows me
    GROUP#
    1
    2
    3
    When i run the same query on standby i am getting the same result
    This means that standby is not accessing the standby redo log file
    Can anyone help me in this matter

  • Droid 3 Cell Standby Battery Issue - Call Verizon and let them know you're having a problem.

    At this time, the cell standby battery problem is not considered a known issue despite it being a very serious problem for every Droid 3 owner I've spoken with so far. If you are experiencing this or any other problem, report it and encourage everyone you know to report it.
    They are working on a patch for the camera because a lot of people complained, the only way they will fix this issue is if you call and complain - make sure they are aware of the problem. Make sure Motorola is aware of the problem.

    Mine reboots off and on after update but I told them. And when I'm charging it does shut off. I have the new update. After it does this then when I go into a Verizon app like NFL mobile I have to log in to my Verizon profile before I can use the app. Ugh. Does it make u sign in to if my Verizon profile after u turn the phone on as well as go into say NFL mobile or a Verizon owned app like media manager just when u start the app on. Everytime the phone turns off I have to sign in if I want to open one of these apps.

  • Satellite 1410 standby/resume issue

    Hello world,
    this is my first post in the Toshiba laptop forums. I am facing an issue on my Satellite 1410, in which I would need some expert help.
    The following happened:
    I have installed Mythbuntu 9.10 (media center edition of Ubuntu) on my Satellite 1410 notebook (Mobile Celeron 1.8GHz / 512M / 160G). Everything went fine, I've been using it for some time.
    I started watching a divx movie on my LCD TV connected to the HD15 port of the notebook and after a while, I closed the lid. The notebook went into standby and since then I have not been able to wake it up.
    Everytime when I try to turn it on, the fan spins up, however the screen remains black, no disk activity can be heard and the power LED starts blinking in amber (1s on - 1s off).
    I tried the following:
    1. Took battery and AC power out, held power button for 90s - after turning on, still standby mode with spinning fan.
    2. Took battery and AC power out for about 72 hours - still standby mode with spinning fan.
    3. Took battery, AC power and CMOS battery out for about 90 min - still standby mode with spinning fan.
    At this point I am a bit confused...
    Why does the notebook go into such strange state that the fan is spinning, but the LED shows standby?
    Where could this information be stored that it should go into this state (CMOS battery was removed for 90 minutes)?
    Has anyone experienced similar issues?
    Thanks in advance,
    latrodectus

    I have the same problem. I loaded Ubuntu 9.10 on my 1410. All went well until I closed the lid whilst the laptop was still switched on.
    It does not matter what I do, but the laptop does not want to come out of hibernation.
    I cannot even boot up with a CD or other source.
    The screen does not even give option to go into the BIOS
    Thanks

  • Logical standby database issue?

    Hi,
    I created a logical standby database on the same server as primary database.
    then I transited the old primary DB to standby DB,
                                old standby DB to primary DB.
    and "alter system switch logfile" in new Primary DB.
    execute sql in new standby DB:
    SQL> SELECT APPLIED_SCN, NEWEST_SCN FROM DBA_LOGSTDBY_PROGRESS;
    APPLIED_SCN NEWEST_SCN
              0
    question:
    the redo logs can not be applied to new standby DB,
    How to solve it?
    thanks
    DB release:9i

    Hi,
    Can you upload the output of:
    sqlplus> show parameter arc
    from both instances, or post the init.ora parameters from both. I would like to verify your arc related parameters.
    Also, did you check the alert log in the primary and standby for errors?
    Thanks,
    Idan.

  • Standby database issue

    Hi All,
    My Oracle database version is Oracle9i Enterprise Edition Release 9.2.0.8.1 in windows.
    My client want to do some verfication on DR database. Users will connect to their application and they should be able to view the DR transaction.Generally our transaction logs come to Production to DR in moring. So they must view all the transaction comes in production to the DR.
    phase 2 will be the user submitting the transaction.
    overall procedure is :-
    1. DBA set the DR in read only mode.
    2. User config needs to be changed to point to DR Databse
    3. User run the appln to view the transaction.
    In this case,we are not going to shutdown the production database.
    Now my question is how do I start and what steps do i need to follow? Do i need to disable dataguard from production and open the DR database in read only mode?
    Thanks,
    Meena

    Hello,
    If the users need to view the transaction reports on the standby database, then yes, it needs to be opened in Read Only mode.
    But, when you open your standby database in read only mode, there would not be any recovery in progress on the standby (no Active Dataguard option for the version you are using).
    1. Cancel the MRP on the standby database
    SQL>alter database recover managed standby database cancel;
    2. Open the standby database in read only mode
    SQL>alter database open read only;You can later ask the users to connect to the standby database by providing them its TNS entries. The standby database can be used only for reporting purpose (select operations) when you have opened it with read only option.
    Regards,
    Shivananda

  • Physical standby databasse issues

    By mistake we deleted around 600 archive log files from primary location before it applied to standby database, and we don't have any backup of those archive logs. Its a physical standby database. Is there any way to fill that gap without affecting the primary database.
    - Mano

    Assuming its Oracle 10gR2, you can take RMAN incremental from SCN backup of primary database from the point where your standby is out of sync. Move RMAN backup pieces to the standby database server and recover standby database.
    Oracle documentation is worth looking at:
    http://download.oracle.com/docs/cd/B19306_01/backup.102/b14191/rcmdupdb.htm#BGBCEBJG
    Asif Momen
    http://momendba.blogspot.com

  • Vodafone Standby App Issue (OS v11.047.227.3)

    The Vodafone standby application is a nice little replacement for the standby screen but it stops the right shortcut key from being used for voice commands.
    The only way to get to use voice commands is to stop using the Vodafone app.
    N85 OS v11.047.227.3

    I haven't got a Vodafone branded N85 (mine is generic, 11.047) - my right soft key is mapped to NGAGE. Are you keeping your finger on the right soft key for 2 - 3 seconds?
    If you found this post helpful, please click on the green "Kudos!" star. Cheers!

  • Idle / standby / hibernation issues with T400

    Hello,
    I would like to know if anyone knows why
    A) When returning from hibernation the screen is off (in the login screen) and until I move the mouse it doesn't turn on again
    B) After hibernating, when turning on the computer the screen of the bios (with the logo of thinkpad) appears twice, just after showing the screen it appears like rebooting again.
    C) Sometimes, when the computer is idle it has a espontanius reboot. It can go to sleep mode and if not it restarts... It never happen when working with it.
    I am running vista bussiness 32 bits. I have all packages from thinkvantage activated
    Message Edited by hardaway on 12-23-2008 07:28 PM
    T400 (2767-AK3)

    hardaway wrote:
    Thanks for the tips!
    C) doesn't make it often to you?
    Thank God, no ^^
    But the sometimes hanging, after being moved and the seldomly not waking up from standby are present ... but not too often.
    Greetz!
    M.T.

Maybe you are looking for

  • Distributed Transaction Coordinator not displaying remotely on a server core cluster node..

    We setup a server core single node cluster (W2012 R2).  The MS DTC is running, and the Distributed Transaction Coordinator firewall rules are enabled.  I can connect to the firewall rules and compmgmt.msc remotely for this server.  When I attempt to

  • Just updated to 6.0 and I'm noticing random white pixels on black images.

    Just updated to 6.0 and I'm noticing random white pixels on black images. It's not my monitor since this doesn't happen to any other browsers. It might also be a plugin.

  • Stored Procedure issue

    I have this stored procedure to check if someone ordered a Cancellation date on the line before cancelling it but when i try to add another condition where it should also check for cancellation code it fails. It works if they are individually used. A

  • How to configure non-unicode in JVM of 1.4...

    hii, Plz explain me how configure non unicode bytes in JVM, ie SYSTEM PROPERTY set to false in JVM 1.4.1 & higher verison. waiting for reply, Santosh

  • Flash Lite 1.1 Update Content

    Hi all, i'm very2 new for flash lite. I want to create a flash lite application for nokia 7610 as a completion of my study at my Univ. But i have no idea how to start it. Is it possible a flash lite application can be update. For example a news appli