How to check if standby db works

Hi all

EBS R12.2.4

11 GR 2

OL6.5

My primary DB, I run:

SQL > archive logs list;

Database log mode Archive Mode

Active AutoArchive

Archive destination/home/ARCH

Sequence of journal online oldest 7629

Log sequence archive 7630

Current log sequence 7630

Then my db backup, I run:

SQL > archive logs list;

Database log mode Archive Mode

Active AutoArchive

Archive destination/home/ARCH

Sequence of journal online oldest 7629

Log sequence to archive 0

Current log sequence 7630

Is this enough the cheque?

Does this mean that my watch doesn't work well?

Kind regards

JC

What is your archivelog location and what is political deletion log archives?

visit the archivelog deletion policy...

https://docs.Oracle.com/CD/E18283_01/server.112/e17022/RMAN.htm

You can define archive political deletion log and remove them based on that...

Tags: Database

Similar Questions

  • How to check if BI Scheduler works or not?

    How to check if BI Scheduler works or not?

    How to check if BI Scheduler works or not?

    Check the log file

    tail-f /OracleBI/server/Log/*NQScheduler.log*

  • How to check if my fan works?

    After 30 minutes, listening to a dvd, my satellite A100-768 becomes slow and the temperature of the processor (fan speed) is about 86 degrees... the fan does not start. If I blow in the extract system, DVD again. How can I check my fan?

    Hello

    Could you explain what you want to check the fan?
    If there is something wrong, the laptop must be open to check the hardware!
    But if you do yourself, you will lose the warranty.

    That's why I put t recommend opening the laptop or the removal of the covers!
    Contact the ASP and explain to him the situation with the cooling modules

  • How to check link flow control works on EqualLogic?

    I recently had to disable DCB on different switches did not fully support DCB.  Now I want to ensure that EqualLogic Arrays use correctly the link flow control.  I remember a message in the event log earlier who said that flow control is enabled on all interfaces, but I wonder if there is an easier way and makes it more definitive to me to check if flow control is enabled and working on the EqualLogic arrays.  The firmware version is 7.0.9.  I have enabled in the EqualLogic group DCB (as recommended by Dell) and disabled on Ethernet switches.  Thank you.

    Hello

    You need to check the switches, they should show it is activated or not.   EQL paintings will never SEND a pause frame to the switch, it will however, respond to the flowcontrol if make him recover from the switch.

    Note: Not all switches support send flowcontrol.

    Kind regards

  • How to check if the printer works.

    They gave me printet 720C en with empty cartridges. I connected the printer. But when I try to print nothing happens. Not at least the paper to go so I can see if the printer works? I do not like to spend money for the ink and then discover the printer does not work.

    VDV

    OK, some are progressing.  The Red blinking light may indicate a number of things, but printing will not happen in this case.  I would start by clean cartrdige contacts, as shown here.

    If that does not solve the problem then see the page here.

    There is not low on ink or another indicator for the Deskjet 720 that could prevent printing (or at least going through the motions) with a cartridge empty.  The printer does an electric test of cartridges before printing to that there are no problems might damage the printer control electronics.  The printer will also check and make sure that the cartridges are installed, this model cannot work without both cartridges.

  • How to check is that DG works well?

    Hi all

    31%

    AIX

    We have dataguard configured on our prod primary and physical standby database.

    My boss ask me to create a script for the tech email group every day at 08:00 the status of replication (apply logs).

    Since I am on dataguard broker. I'll do the script as follows:

    ===========================

    Oracle@prodsvr:/Home/Oracle > dgmgrl

    DGMGRL for IBM/AIX RISC System/6000: Version 11.2.0.3.0 - 64 bit Production

    Copyright (c) 2000, 2009, Oracle. All rights reserved.

    Welcome to DGMGRL, type 'help' for more information.


    DGMGRL > Connect sys/Manager

    Connected.

    DGMGRL > see the configuration;

    Configuration - DGConfig1

    Protection mode: MaxPerformance

    Databases:

    PROD - primary

    PRODDR - physical of the standby database

    Fast-Start Failover: DISABLED

    The configuration status:

    SUCCESS

    DGMGRL > output

    =========================

    How to save the logs above or by e-mail? (I know how to send an email already) I just need the log file.

    Thank you

    MK

    Don't mean our expectation has no latency period?

    If apply lag is 0 seconds, then Yes!

    as in the update in real time?

    What is your definition as updated in real-time?

    Applies what real-time means it's that roll forward is applied as it is received.  The offset to be applied will not necessarily always be zero... depends on your mode of about.

    Protection of data protection modes

  • How to check loadbalancer is currently working?

    Hi all

    We have implemented as a result of our environment R12 loadbalancer Note: 380489.1 web unique entry point to.

    How can we ensure that the load is charge of distrubited between two nodes of AppsTier?

    How can we control loadbalancer work?

    Kind regards
    Tareq

    Please see these documents.

    Simultaneous treatment - how to ensure the load balancing of the competitor Manager process in the Configuration of CFP - RAC [ID 762024.1
    How to set up and test the failover of the CFP on no RAC environments. [743716.1 ID]

    Thank you
    Hussein

  • How to check if the deduplication works correctly

    Hi all
    I understand that deduplication securefile is for the same column. Suppose if I have 2 identical data in a column, say one, with the size of 4000 bytes, the deduplication makes stores only 4000 bytes instead of 8 000 bytes table. From sqlplus, how can I check if this particular column takes only space to 4000 bytes instead of 8000?

    Kind regards
    Val

    Valerie Debonair wrote:

    How can I check if this particular column takes only space to 4000 bytes instead of 8000?

    You can't exactly check without looking at the discharge of the LOB segment. It is easier to just check LOG segment does not increase when you insert the same LOB values:

    SQL> DROP TABLE T1
      2  /
    
    Table dropped.
    
    SQL> CREATE TABLE t1(
      2                  C CLOB
      3                 )
      4    LOB(C) STORE AS SECUREFILE
      5  /
    
    Table created.
    
    SQL> SELECT  SEGMENT_NAME
      2    FROM  USER_LOBS
      3    WHERE TABLE_NAME = 'T1'
      4      AND COLUMN_NAME = 'C'
      5  /
    
    SEGMENT_NAME
    ------------------------------
    SYS_LOB0000077372C00001$$
    
    SQL> INSERT
      2    INTO T1
      3    SELECT  LPAD('A',10000,'A')
      4      FROM  DUAL
      5  /
    
    1 row created.
    
    SQL> COMMIT
      2  /
    
    Commit complete.
    
    SQL> SELECT  BYTES
      2    FROM  USER_SEGMENTS
      3    WHERE SEGMENT_NAME = 'SYS_LOB0000077372C00001$$'
      4  /
    
         BYTES
    ----------
       1245184
    
    SQL> INSERT
      2    INTO T1
      3    SELECT  LPAD('A',10000,'A')
      4      FROM  DUAL
      5      CONNECT BY LEVEL <= 100
      6  /
    
    100 rows created.
    
    SQL> COMMIT
      2  /
    
    Commit complete.
    
    SQL> SELECT  BYTES
      2    FROM  USER_SEGMENTS
      3    WHERE SEGMENT_NAME = 'SYS_LOB0000077372C00001$$'
      4  /
    
         BYTES
    ----------
       2293760
    
    SQL> DROP TABLE T1
      2  /
    
    Table dropped.
    
    SQL> CREATE TABLE t1(
      2                  C CLOB
      3                 )
      4    LOB(C) STORE AS SECUREFILE(
      5                               DEDUPLICATE
      6                              )
      7  /
    
    Table created.
    
    SQL> SELECT  SEGMENT_NAME
      2    FROM  USER_LOBS
      3    WHERE TABLE_NAME = 'T1'
      4      AND COLUMN_NAME = 'C'
      5  /
    
    SEGMENT_NAME
    ------------------------------
    SYS_LOB0000077375C00001$$
    
    SQL> INSERT
      2    INTO T1
      3    SELECT  LPAD('A',10000,'A')
      4      FROM  DUAL
      5  /
    
    1 row created.
    
    SQL> COMMIT
      2  /
    
    Commit complete.
    
    SQL> SELECT  BYTES
      2    FROM  USER_SEGMENTS
      3    WHERE SEGMENT_NAME = 'SYS_LOB0000077375C00001$$'
      4  /
    
         BYTES
    ----------
       1179648
    
    SQL> INSERT
      2    INTO T1
      3    SELECT  LPAD('A',10000,'A')
      4      FROM  DUAL
      5      CONNECT BY LEVEL <= 100
      6  /
    
    100 rows created.
    
    SQL> COMMIT
      2  /
    
    Commit complete.
    
    SQL> SELECT  BYTES
      2    FROM  USER_SEGMENTS
      3    WHERE SEGMENT_NAME = 'SYS_LOB0000077375C00001$$'
      4  /
    
         BYTES
    ----------
       1179648
    
    SQL> 
    

    SY.

  • How to check if the indexer works?

    The problem I have is that it generates a lot of disk activity.  If I do works that are heavy on the use of the disc, it becomes almost impossible to work.

    Is it possible to control when the indexer runs in the background?  I can work in two ways.

    1. If a process of a given name is in CPU, run no indexer

    2 in some window of time, don't throw an indexer (indexer or limited only to run in a window of time)

    Thank you

    Hello

    Thank you for your response.

    You can always return to your default configuration by disabling the additional folder that you added to the indexed location (-> Panel-> option change indexing) and rebuild the index (Control Panel-> option-> Advanced Indexing - > rebuild). Indexing of the entire system can lead to search huge index of data which may result from eating up your hard drive space and slow down your system.

    If the issue still persists I would say you are referring to the link below:

    See Mike Hall responded on 15 March 2012
    http://answers.Microsoft.com/en-us/Windows/Forum/Windows_7-files/does-Windows-search-indexing-really-slow-down-PC/1bd40e28-a1ef-486b-9246-867200139b81

    Hope this information helps and if you have other questions related to Windows do not hesitate to post on Microsoft Community, we will be happy to help you.

  • iPod Classic stopped display work.  Work displayed in iTunes.  Updated iTunes to 12.4 but did not help.  I can see how to check

    iPod Classic stopped display work.  Work displayed in iTunes.  Updated iTunes to 12.4 but did not help.  I can see how to check and uncheck "Display work" in iTunes but not how on the iPod as others have suggested.  Need to perhaps restore and recharge.

    Long ago with including works on devices was optional, and you can sometimes fix cache work on a device by not including and then add it again. This choice has long since disappeared. A complete restoration and reloading is now the only method to recreate the cache.

    TT2

  • How to check the database pending?

    Hello

    How to check if standby DB is used in Oracle 8.1.7.2.0? I just want to know the initialization parameters that must be defined for the destinations journal archive.

    OS - AIX 3 4

    Cordially,

    Bala

    Don't know if you are interested, but this seems to be the list:

    http://docs.Oracle.com/CD/A87860_01/doc/server.817/a76995/standby.htm#31537

    Best regards

    mseberg

  • How standby database works

    Hello!!

    I created the database (testcat) pending for the primary database (test) using the command RMAN duplicate on the same server (windows XP) on Oracle 11.2. I know how to create the standby database but I don't know how and when Eve database works. I checked the file init.ora backup of database that contains all parameters prefixed to *. as follows

    * .db_create_file_dest = "F:\app\Administrator\oradata".

    * .db_domain = "

    * .db_recovery_file_dest = "F:\app\Administrator\flash_recovery_area".

    * .db_recovery_file_dest_size = 10737418240

    * .db_unique_name = "testcat".

    *. Db_name = 'test '.

    * .control_files = 'D:\APP\ORACLE\ORADATA\TESTCAT\CONTROLFILE\CONTROL_STAND1. CTL "

    While the primary database init.ora file contains entries like

    db_create_file_dest = F:\app\Administrator\oradata

    db_recovery_file_dest = F:\app\Administrator\flash_recovery_area

    db_recovery_file_dest_size = 4039114752

    control_files = 'F:\APP\ADMINISTRATOR\ORADATA\TEST\CONTROLFILE\O1_MF_8TXW6QN0_. CTL.

    So I want to know is

    1. What IS the difference between the settings that start with. * and start without. *

    2. can I set db_create_file_dest parameter in init.ora backup of database to another location.

    3. how to make journal apply to the standby database when I run ALTER DATABASE RECOVER... command

    4. where log files archived on eve of the databases will be stored?

    Hello

    You mean there are two types of transport for recovery logs.

    ((1) ASYNC 2) SYNC.

    1. If the transport type is ASYNC what background process will perform redo transport?

    LNS background process

    2. If the transport type is SYNC then what background process will perform redo transport?

    If version<11.2.0.3 then="" lns="" ,="" else="">

    3. is there a difference between ASYNC and SYNC?

    SYNC required for the Protection of Max and MAX availability Modes, ASYNC held a Max performance.

    4. According to your first post, RFS receives (which exist in standby mode) repeat primary and MRP applies it again then what is the role of SRL, LGWR - LNS, GAP?

    SRL required for demand in time real process and Max Protection and availability modes Max.

    When the GAP occurs, not transported logs archived corrupted or deleted on the side of priamry.

    Concerning

    Mr. Mahir Quluzade

    p.s. Please read: Data Guard - content

  • My MacBook Pro suddenly becomes very slow, accepting orders very slow how to check if the ram is working properly

    My MacBook Pro suddenly becomes very slow, accepting orders very slow how to check if the ram is working properly

    You can try this download.   Etrecheck.   https://etrecheck.com/#about

    Then publish the report as a reply in this thread.

    It will allow us to review your system without disclosing a private matter.

  • I found an old vista home basic dvd with a key, how can check whether key works but not install it?

    I found an old vista home basic dvd with a key, how can check whether key works, but not install it? some dvd install can be live boot from themselves too [password required for a direct start?]?

    Hello

    You must install it to see if it is legal to do so.

    There is no public database of product keys.

    See you soon.

  • How can I check if the hardware works correctly?

    How can I check if the hardware works correctly?... including fans, hard drive, cd players, etc...

    Hello

    I suggest you to generate system health report to check if the system is working properly. To run the system health report, follow the steps below.

    1. click on start

    2. go in Control Panel

    3 go to the Tools and performance information

    4 search for Advanced Tools in the left panel of the window.

    5 go to generate a system health report

    You can also check the material status of the devices in the Device Manager. Follow the link for more information on the Manager of devices below.

    http://Windows.Microsoft.com/en-us/Windows-Vista/open-Device-Manager

Maybe you are looking for

  • The incognito in 39 of Firefox for Mac does not work

    When I connect to Gmail with Firefox for the Mac sha256 39 - 7da80d615390fc65f0f5540ac2fbaa6e5d8e8e0b and close the tab, then immediately open gmail again it automatically logs me on my same Gmail account if I use private browsing.Private browsing is

  • Flash video stops playing after 10-12 seconds

    Not sure when this started, but the videos now only play for about 10-12 seconds at a time. No crashes just breaks down, no errors, and it's only video. I can jump to another point in the video, and it stops after 10-12 seconds from there. I'm on the

  • Installation of Win XP OS on Portege 3490CT

    I'm trying to install XP Pro on my 3490CT. Looking at this forum, it seems that a large number of owners of 3490CT is installed this OS on the unit. Can anyone provide me with the Protocol of installation for this facility? What do I need, what order

  • Laptop does not start

    My laptop froze and I had to force a stop to turn it off. Since then, it does not start upward. It shows the Toshiba screen briefly as usual then goes to a screen asking me to start up as usual, or try to repair the startup problem. If I choose to st

  • Damage to LAN and USB on the left side of the Satellite A300 PSAGCA

    Hello! I have a toshiba satellite A300 and awhile back he had a fall and had damage to the ethernet port and USB ports on the left side of the laptop.Ethernet still works when the position but the cord torn and the ethernet is no longer rest in.2 USB