The total size of the backup database and Total database size.

Hi Experts,

How can I find the size of the size of the database and the size of the backup with only the RMAN catalog help.
I use Oracle 10.2.0.5. and Tivoli TSM

I have

Hello

See this doc...
http://download.Oracle.com/docs/CD/B28359_01/backup.111/b28270/rcmreprt.htm#CHDBIGHG

Connect to SQL * for the database you intend to question the backup history.

Ask the view V$ RMAN_BACKUP_JOB_DETAILS for more information on the backup type, status, and the start and end time.

The following query shows the history of the backup jobs sorted by the session key, which is the primary key for the RMAN session:

COL STATUS FORMAT a9
COL hrs    FORMAT 999.99
SELECT SESSION_KEY, INPUT_TYPE, STATUS,
       TO_CHAR(START_TIME,'mm/dd/yy hh24:mi') start_time,
       TO_CHAR(END_TIME,'mm/dd/yy hh24:mi')   end_time,
       ELAPSED_SECONDS/3600                   hrs
FROM V$RMAN_BACKUP_JOB_DETAILS
ORDER BY SESSION_KEY;

Ask the view RMAN_BACKUP_JOB_DETAILS V$ at the rate of tasks of backup in an RMAN session.

The following query shows the speed of backup job sorted by the session key, the primary key of the RMAN session. The in_sec and out_sec columns columns display the input data and output per second.

COL in_sec FORMAT a10
COL out_sec FORMAT a10
COL TIME_TAKEN_DISPLAY FORMAT a10
SELECT SESSION_KEY,
       OPTIMIZED,
       COMPRESSION_RATIO,
       INPUT_BYTES_PER_SEC_DISPLAY in_sec,
       OUTPUT_BYTES_PER_SEC_DISPLAY out_sec,
       TIME_TAKEN_DISPLAY
FROM   V$RMAN_BACKUP_JOB_DETAILS
ORDER BY SESSION_KEY;

Ask the view RMAN_BACKUP_JOB_DETAILS V$ for the size of the backups in an RMAN session.

If you run the DATABASE BACKUP, then V$ RMAN_BACKUP_JOB_DETAILS. OUTPUT_BYTES indicates the total size of backup games written by the backup task for the database that you are backing up. To view the backup set sizes for all registered databases, ask RC_RMAN_BACKUP_JOB_DETAILS.

The following query shows the speed of backup job sorted by the session key, the primary key of the RMAN session. The in_sec and out_sec columns columns display the input data and output per second.

COL in_size  FORMAT a10
COL out_size FORMAT a10
SELECT SESSION_KEY,
       INPUT_TYPE,
       COMPRESSION_RATIO,
       INPUT_BYTES_DISPLAY in_size,
       OUTPUT_BYTES_DISPLAY out_size
FROM   V$RMAN_BACKUP_JOB_DETAILS
ORDER BY SESSION_KEY;

The following sample output shows the speed of the backup jobs:

I hope this will help...

Kind regards
Levi Pereira

Tags: Database

Similar Questions

  • modify the INSTANCENAME parameter after the backup database

    Hello

    our primary database is configured as follows:

    SQL > show parameter db_name;
    VALUE OF TYPE NAME
    ------------------------------------ ----------- ------------------------------
    db_name string prod01


    SQL > show the INSTANCENAME parameter
    VALUE OF TYPE NAME
    ------------------------------------ ----------- ------------------------------
    instance_name string prod01

    the corresponding backup database is configured as:

    SQL > show parameter db_name;
    VALUE OF TYPE NAME
    ------------------------------------ ----------- ------------------------------
    db_name string prod01


    SQL > show the INSTANCENAME parameter
    VALUE OF TYPE NAME
    ------------------------------------ ----------- ------------------------------
    instance_name string stbyprod01

    Now, the standby database must be enabled. Later, I want to change the stbyprod01 to prod01 INSTANCENAME parameter.

    The question now is: what does take to change the INSTANCENAME parameter? In fact the database pending will be

    already be activated and be considered and treated as a stand-alone database. The former primary database will be used no more.

    I would like to do the following:

    SQL > create pfile = 'initprod01.ora' of spfile;

    SQL > shutdown immediate;

    Oracle # > change the pfile file and change the stbyprod01 to prod01 INSTANCENAME parameter

    SQL > startup;

    SQL > create spfile = 'spfileprod01.ora' of pfile;

    SQL > shutdown immediate;

    SQL > startup;

    That should be all - from my point of view (I know that LISTENER.) ORA and TNSNAMES. ORA should be modified, too).

    If someone has already experiences with the INSTANCENAME parameter change but sees some additional configurations: Please let me know!

    Rgds

    Jan

    1. you can use "alter system set instance_name" to change the value of the instance name.

    2. you must do the following to activate the standby database (NOTE:-this is only for the activation of the backup database and not the passage to digital database)

    1 startup nomount

    2. change the base of Mount Eve.

    3. change the database activate the database pending.

    4. change the database open.

  • the backup database must be restored after failover and flashback 11

    I tried a failover with 11g r2 and RAC. Failover worked. I have flashed then return of the database (old primary) according to this http://docs.oracle.com/cd/E11882_01/server.112/e17022/scenarios.htm#i1049997, and now is the archiveurs application again.

    The problem is in the broker, it says this

    DGMGRL> show configuration;
    
    Configuration - DG_Config
    
      Protection Mode: MaxPerformance
      Databases:
        DB11G_STBY - Primary database
        DB11G      - Physical standby database (disabled)
          ORA-16661: the standby database needs to be reinstated
    
    Fast-Start Failover: DISABLED
    
    Configuration Status:
    SUCCESS
    I tried deactivating and reactivating the configuration, but still the same. Any other ideas?

    Here's a link [url http://nikolayivankin.wordpress.com/2012/02/14/dgmgrl-reinstating-ex-primary-to-standby-by-flashback-database-feature/] a demo, your theme

  • Activate the backup database

    Hi gurus,

    Had a small request for you guys, I have a production and a configuration of standby on Windows 2003 (10.2.0.4) database, my day has been recovered up to archive log 883, because of some problems with my production, I activated my database pending. Because the standby mode is enabled, the database gets open resetlogs. My archives to start generating sequences 1,2,3...

    But now when I query v$ archived_log to verify that the sequence max # generated it still shows as 883... as opposed to 6 which is my creation of journal number of archive.

    According to my understanding, when activate us a backup database, the wait flag of database in the control file is reset so that the control file behaves like that of the production database (I know that I am using profane taps here)... so, what makes the view v$ archived_log show the old value of sequence # before activation rather than the new value after activation?

    Help or direction in this on your side you would know...

    Thank you
    Aurélie

    Interesting...

    I think why you faced with this is, the v$ archived_log retrieves the information from the control file and the control file keeps the information up to it's minimum (default 7 days) retention period. Now even if you did resetlog on the database, the old are always stored in the controlfile according to its retention period, controlled by the parameter "control_file_record_keep_time". Please refer to 'archive log list' for the correct sequence number.

    C:\Documents and Settings\sakumar>set oracle_sid=santu
    
    C:\Documents and Settings\sakumar>sqlplus /nolog
    
    SQL*Plus: Release 11.1.0.6.0 - Production on Sat Feb 6 07:17:16 2010
    
    Copyright (c) 1982, 2007, Oracle.  All rights reserved.
    
    SQL> conn /as sysdba
    Connected.
    SQL> shu immediate
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    SQL> startup mount
    ORACLE instance started.
    
    Total System Global Area  535662592 bytes
    Fixed Size                  1334380 bytes
    Variable Size             176161684 bytes
    Database Buffers          352321536 bytes
    Redo Buffers                5844992 bytes
    Database mounted.
    
    SQL> recover database until cancel;
    Media recovery complete.
    SQL> alter database open resetlogs;
    
    Database altered.
    
    SQL> select max(sequence#) from v$archived_log;
    
    MAX(SEQUENCE#)
    --------------
                16
    
    SQL> archive log list
    Database log mode              Archive Mode
    Automatic archival             Enabled
    Archive destination            USE_DB_RECOVERY_FILE_DEST
    Oldest online log sequence     1
    Next log sequence to archive   1
    Current log sequence           1
    SQL>
    

    I hope that's what you wanted to ask. Now once again, it would be interesting to see what the result of the query on v$ archived_log after the retention period.

    Kind regards
    S.K.

  • RMAN - RETRIEVE the backup complete and necessary archives Logs of SBT_TAPE to disk

    Hello

    I've never done this before and no one on my team seems to have idea if possible. In our environment, backups are performed using netbackup to bands using RMAN. I have a request to recover a good full backup of an oracle database (where we can restore the database, if required in the future) of January 13 and place in a way they provided for example: / dbbkup/dbName/files.

    The backup team tied the tapes required for this backup, which in this case is January 13, 2016, see below. We can only use RMAN to restore this backup, but I don't want to restore this backup on a database, instead would like to capture the full backup and zip and place it in the provided path. Is there is a possibility with RMAN?

    If yes I would appreciate the full commands necessary to capture all of the basic + archivelogs (how can I determine what archivelogs are needed?)

    I came with thisbut do not know if this will do.

    Run {}

    until ' to_date (' 01 2016 13 11:00 ', 'YYYY MM DD HH24') ";

    allocate auxiliary channels ch1 type 'sbt_tape '.

    DESTINATION FOR RESTORE GAME ' / dbbkup/dbName/files ";

    RESTORE THE DATABASE;

    }

    OPERATION STATUS OBJECT_TYPE START_TIME, END_TIME

    --------------------------------- ----------------------- ------------- ------------------- -------------------

    BACKUP COMPLETE DB FULL 01/13 / 01/13 2016:11:01:51 / 2016:11:23:03




    RMAN > backup databas list;

    Time of accomplishment BS key Type LV size device Type elapsed time

    ------- ---- -- ---------- ----------- ------------ --------------------

    1096026768 complete SBT_TAPE 4.44 G 00:11:01 January 13, 2016 23:12:47

    BP key: 1096026774 status: AVAILABLE Tablet: NO Tag: TAG20160113T230146

    Handle: e1qra7eq_1_1 Media:

    List of defined backup data files 1096026768

    Name of file LV Type cash SNA cash time

    ---- -- ---- ---------- -------------------- ----

    2 full 342817549 13 January 2016 23:01:46 /hostname/db/sid/oradata3/undotbs01.dbf

    4 integer 342817549 13 January 2016 23:01:46 /hostname/db/sid/oradata1/users01.dbf

    6 integer 342817549 13 January 2016 23:01:46 /hostname/db/sid/oradata1/_data_sid_01.dbf

    9 whole 342817549 13 January 2016 23:01:46 /hostname/db/sid/oradata1/_indx_01.DBF

    Time of accomplishment BS key Type LV size device Type elapsed time

    ------- ---- -- ---------- ----------- ------------ --------------------

    1096026769 complete SBT_TAPE 4.11 G 06:12:00 January 13, 2016 23:13:52

    BP key: 1096026775 status: AVAILABLE Tablet: NO Tag: TAG20160113T230146

    Handle: e2qra7eq_1_1 Media:

    List of defined backup data files 1096026769

    Name of file LV Type cash SNA cash time

    ---- -- ---- ---------- -------------------- ----

    342817550 full 1 January 13, 2016 23:01:46 /hostname/db/sid/oradata1/system01.dbf

    3 full 342817550 13 January 2016 23:01:46 /hostname/db/sid/oradata1/tools01.dbf

    5 integer 342817550 13 January 2016 23:01:46 /hostname/db/sid/oradata1/sysaux01.dbf

    7 full 342817550 13 January 2016 23:01:46 /hostname/db/sid/oradata1/_indx_sid_01.dbf

    8 whole 342817550 13 January 2016 23:01:46 /hostname/db/sid/oradata1/l_data_01.DBF






    Yes, we cannot copy the backupsets of a band on the disc with RMAN.

    The only option is to restore the database to a separate host computer (or we can restore the database to a filesystem separte or diskgroup within the same host of source database), and backup the database on a disk in compressed format.

    -Thank you

  • We are performing the backup yesterday and in the process of primary connection attempt that isn't in the script

    We making the backup only on standby db. Backup complete but see error connection failed.

    connected to the recovery catalog database

    RMAN > BACKUP INCREMENTIELLE LEVEL = 1 base DATA CUMULATIVE PLUS ARCHIVELOG DELETION ENTRY;

    2 > DELETE OBSOLETE;

    3 >

    From January 13, 15 backup

    RMAN-06820: WARNING: unable to archive the current log on the primary database

    Target ORACLE database error:

    ORA-17629: unable to connect to the remote database server

    ORA-17627: ORA-01017: name of user and password invalid. connection refused

    ORA-17629: unable to connect to the remote database server

    allocated channel: ORA_DISK_1

    channel ORA_DISK_1: SID = 77 type device = DISK

    channel ORA_DISK_1: starting compressed archived log backup set

    channel ORA_DISK_1: specifying the newspapers archived in the backup set

    archived journal thread = 1 sequence = 10552 entry RECID = STAMP 61494 = 868817127

    archived journal thread = 1 sequence = 10553 entry RECID = STAMP 61496 = 868817130

    archived journal entry thread = 1 sequence = 10554 RECID = 61497 STAMP = 868817131

    archived journal thread = 1 sequence = 10555 entry RECID = STAMP 61495 = 868817130

    Change the "rman TARGET / ' to 'rman target sys/password@stby.

    Hemant K Collette

  • Using RMAN/Flashback to restore or passage / failover to the backup database

    Hello

    I'm new on the protection of the data.  I read the documentation and have implemented the Data Guard for my database of test called PPRD.  So I PPRD for the primary database and PPRD_DR0 for sleep.

    I've implemented the custody of data with the default, maximum Performance. I'm testing. (That's 11 GR 2.  I also use SQL/RMAN to set everything up.  I can implement Grid Control to administer it.

    What I was asking is - as the case may be, are there times where I'm better NOT do a failover to the standby?  Given that the PPRD is in archivelog mode (of course) and we have full and incremental backups archivelogs all being written to the disc, AND my expectation is mode maximum performance... is there times where there was NO data loss by restoring the database and he recovering from RMAN? Indeed, recovery logs are intact, not if the first line of conduct?

    Now, obviously if there is some sort of disaster and the primary is destroyed we would failover to our expectation. But for most typical failures, wouldn't we want to use RMAN and the backups/archivelogs as a first course, because there MAY be loss of data with the maximum performance mode? Also, I know there are views, that we can use to see how in sync is the day before, but I'm a little unclear on this.  At the time of a database problem, if we do not have an automatic failover enabled and configured, exactly how can we check how to synchronize the standby is with the primary?  (I know that this response is common and there, I don't want to ask the obvious question.)

    Since I was in archivelog and flashback as well on mode the primary... If the primary is still intact (but has a problem) I use RMAN, flashback, etc. before making failover/switching in high school?

    Thank you for any response.

    Hello;

    Yes. For me, a failover is a last resort. Ask yourself a few questions:

    My company requires an availability of 100%?

    How long the principal will be not not available?

    How long and how to recover from failover?

    I can make a move to the place?

    Each year we turn off the room of servers for a weekend. What I do, it is a failover, then a switch after the old primary appears as the day before and catch up.

    Here are my notes of failover test:

    http://www.Visi.com/~mseberg/data_guard/Data_Guard_Failover_Test_using_SQL.PDF

    This may help too:

    Roll a standby forward using an RMAN backup to trouble The Nologging changes incremental (Doc ID 958181.1)

    Best regards

    mseberg

  • How to activate the Guard Data after test on the backup database

    Hi all

    I have a plan for the test of standby database and this is my plan

    1. check the gap newspaper archive and transfer the logs to check if necessary

    2. stop the replication Data Guard

    3 stop Standby Database

    4 back-up Standby Database before the test

    5. starting Standby Database to test (and main database fixed by using the user and performs operations during testing)

    After trials and Active Data Guard

    1 restore a database to the standby since before the backup set

    2. start Standby Database in the mode standby

    3. check Data Guard

    I have a question. Can I use log archiving of primary to apply pending before activate Data Guard? or must reconfigure DataGuard to activate Data Guard after having tested?

    Thank you

    Hiko

    Yes you can do it.

    following the procedure below.

    1 apply the logs to archive left on the previous day.

    2. the database pending judgment.

    3. take backup controlfile and data files.

    4. start the database in the editing phase.

    5. turn on the standby database. 'alter database activate standby database'

    6. then do what ever you want to test.

    7. once it is filled the database ensures activated.

    8. restoration of the database from the backup.

    9. then start appplying archive of the last archive applied before the database was arrested.

  • Error recovery in the backup database

    I got the following error to the standby database. No idea what this means and how can I get it without a full clone.


    Kills Aug 14 17:23:32 2012
    Recovery Media Log /spdata07/SPDB/fra/FINSP_GDRSD_LISTENER_NL/archivelog/2012_08_10/o1_mf_1_11131_82bmbgvs_.arc
    Kills Aug 14 17:23:32 2012
    Errors in the /spdata07/ora_11202/product/dbhome/rdbms/log/spdb_pr00_24915.trc file:
    [ORA-00600: internal error code, arguments: [2619], [11131], [], [], [], [], [], [], [], [], []]
    Completed: alter the managed standby database recovery database using the current log file disconnect from the session
    Use ADRCI or Support established for the packaging of the incident.
    See Note 411,1 to My Oracle Support to error and packaging details.
    Errors with /spdata07/SPDB/fra/FINSP_GDRSD_LISTENER_NL/archivelog/2012_08_10/o1_mf_1_11131_82bmbgvs_.arc newspaper
    MRP0: Background Media Recovery terminated with error 600
    Kills Aug 14 17:23:34 2012
    Errors in the /spdata07/ora_11202/product/dbhome/rdbms/log/spdb_pr00_24915.trc file:
    [ORA-00600: internal error code, arguments: [2619], [11131], [], [], [], [], [], [], [], [], []]
    Managed Standby recovery not using real time applies
    Recovery interrupted!


    spdb_pr00_24915.TRC trace file:




    Has started the recovery of parallel media
    krsh.c 17:23:31.503 4265 2012-08-14
    Managed Standby recovery to apply in real time
    Dumping table incarnation of database:
    RESETLOGS 0 Yvert and time: 22/05/2012 0x0000.00000001 20:55:23
    Incarnation of recovery targets = 1, activation ID =-328156793
    The flow buffer limit = 55611 min (50% x 111222, 100000)

    2012-08-14 17:23:32.106
    Start the recovery to the thread 1 ckpt SNA 26430758 logseq 11131 block 2
    Initial size of the buffers: read 1024K, K 820 overflow, change 805K

    2012-08-14 17:23:32.132
    Add a Media Recovery redo thread 1

    2012-08-14 17:23:32.249
    Recovery Media Log /spdata07/SPDB/fra/FINSP_GDRSD_LISTENER_NL/archivelog/2012_08_10/o1_mf_1_11131_82bmbgvs_.arc
    = Critical error (any incident) dump (ORA 600 [2619]) =.

    2012-08-14 17:23:32.315
    dbkedDefDump(): from the default crash dumps (flags = 0 x 0, level = 3, mask = 0 x 0)
    -Error stack dump-
    [ORA-00600: internal error code, arguments: [2619], [11131], [], [], [], [], [], [], [], [], []]
    -SQL statement (none).
    Run SQL information not available - no cursor.
    -Call trace stack memory-

    ORA-00600 = open an SR to MyOracleSupport.

  • error in the backup database

    Hello

    I'll put up the previous day datbase (9i release 2), I followed all the steps, the archived logs are transported

    from the primary to the mode standby.

    When I run sql > alter datbase opened read-only. at the rescue site, it gives the following error

    ERROR on line 1:
    ORA-16004: backup database requires recovery
    ORA-01157: cannot identify/lock data file 1 - see DBWR trace file
    ORA-01110: data file 1: ' C:\ORACLE\BKP\PAYROLL\SYSTEM01. DBF'

    data files are located at "C:\ORACLE\BKP\".

    but I'm not able to understand, where he adds directory pays its way

    I checked pfile/spfile and re-created control file

    It doesn't give any error at the point of Mount, but - opening in read only mode datbase error


    his same showing different location of data files


    SQL > select FILE #, CREATION_TIME, TS #, STATUS, ENABLED, NAME from v$ datafile;

    FILE # CREATION_ TS # STATUS ENABLED NAME
    ---------- --------- ---------- ------- ---------- ------------------------------------------------------------
    1 12 MAY 02 0 SYSTEM READ/WRITE C:\ORACLE\BKP\PAYROLL\SYSTEM01. DBF
    2 12 MAY 02 1 READ/WRITE C:\ORACLE\BKP\PAYROLL\UNDOTBS01 ONLINE. DBF
    3 12 MAY 02 3 ONLINE READ/WRITE C:\ORACLE\BKP\PAYROLL\CWMLITE01. DBF
    4 12 MAY 02 4 ONLINE READ/WRITE C:\ORACLE\BKP\PAYROLL\DRSYS01. DBF
    5 12 MAY 02 5 ONLINE READ/WRITE C:\ORACLE\BKP\PAYROLL\EXAMPLE01. DBF
    6 12 MAY 02 6 ONLINE READ/WRITE C:\ORACLE\BKP\PAYROLL\INDX01. DBF
    7-12 MAY 02 7 ONLINE READ/WRITE C:\ORACLE\BKP\PAYROLL\ODM01. DBF
    8-12 MAY 02 8 ONLINE READ/WRITE C:\ORACLE\BKP\PAYROLL\TOOLS01. DBF
    9-12 MAY 02 9 ONLINE READ/WRITE C:\ORACLE\BKP\PAYROLL\USERS01. DBF
    10-12 MAY 02 10 ONLINE READ/WRITE C:\ORACLE\BKP\PAYROLL\XDB01. DBF

    but the real place is C:\ORACLE\BKP\

    Published by: user7864753 on October 19, 2009 17:33

    You use in your standby init.ora file parameter

     DB_FILE_NAME_CONVERT='C:\oracle\oradata\','C:\oracle\bkp\ 
    

    It takes DB_FILE_NAME_CONVERT = 'C:\oracle\oradata\payroll\','C:\oracle\bkp\

    Make that change and try again. Before attempting to open the day before in mode readonly make sure that this expectation is able to run in managed mode.
    As your alert.log file shows that whenever tryes standby to run in managed mode, it is written error. So, logacially, your standby configuration isn't always
    completed. So, you cannot open the database pending.

  • How to move the hard drive to external hard drive backup and how to make the backup automatically and regularly

    Original title: EVOLUTION of BACKUP

    I SAVED IT ON THE HARD DRIVE TO PUT IN PLACE TO ENSURE THE GUARD. NOW, I HAVE A LIL BOX IS AN EXTERNAL HARD DRIVE, I GUESS. I GOT IT FOR THE MEMORY, LIKE A BIG THUMB. SAYS ITS NEED F HOW TO BACKUP IT (MY LAPTOP) THIS AUTOMATICALLY AND REGULARLY. HELP PLEASE, THANK YOU?

    Hello

    You can try the following methods and check if it helps.

    Method 1: Change where you back up your files
    http://Windows.Microsoft.com/en-us/Windows-Vista/change-where-you-back-up-your-files

    Method 2: Set up or change automatic backup settings
    http://Windows.Microsoft.com/en-us/Windows-Vista/set-up-or-change-automatic-backup-settings

    Reference:
    Back up and restore: frequently asked questions:
    http://windows.microsoft.com/en-US/windows-vista/Back-up-and-restore-frequently-asked-questions

    Backup your files: http://Windows.Microsoft.com/en-us/Windows-Vista/back-up-your-files

  • Performance on the backups RMAN and LOBs

    Hi all

    We have 4 data nodes (11.2.0.3) running on a RHEL. The db has 2.5TBs, and we realized that the backup incremental level 1 takes too long to complete. Doing some research, we found a few posts saying that, during a backup of a segment, if this same segment has a large number of business segments (and that's our case... a large number of business segments) and backup compression (we use COMPRESSION to CONFIGURE ALGORITHM 'HIGH' OPTIMIZE for LOAD REAL EN BROADCAST 'DEFAULT') this backup even can take much longer than an uncompressed backup. What I would like to know, is if you have had an equal experience and if you change the algorithm of compression to zero, the backup will run faster.

    PS - the entry and exit of the backup is disk.

    Thanks in advance.

    Hello;

    Yes is the simple answer.

    SELECT
      ALGORITHM_NAME,
      ALGORITHM_DESCRIPTION,
      IS_DEFAULT
    FROM
      V$RMAN_COMPRESSION_ALGORITHM;
    

    Compression can take a long time depending on the stored data. Try to compress a file zip for example, it is generally slower on the second pass.

    Best regards

    mseberg

  • transfer of newspaper on the backup database

    Hi guys,.

    I packed a watch on RHEL5 database. My primary database is on the same host. I use oracle 10 g 2.

    everything is tiny but only newspapers is not get transferred to Eve directory.

    I just all the parameters in the initialization parameter file according to docs. Here are my primary and standby pfiles:-

    DATABASE STANDBY PFILE
    **************************************
    ORCL.__db_cache_size = 88080384
    ORCL.__java_pool_size = 4194304
    ORCL.__large_pool_size = 4194304
    ORCL.__shared_pool_size = 62914560
    ORCL.__streams_pool_size = 0
    *.audit_file_dest='/U01/app/Oracle/admin/ORCL/adump '
    *.background_dump_dest='/U01/app/standby/std_data/bdump '
    * full = '10.2.0.1.0'
    *.control_files='/u01/app/standby/std_data/stdby.ctl'
    *.core_dump_dest='/U01/app/standby/std_data/cdump '
    * .db_block_size = 8192
    * .db_domain = '< NAME > '.
    * .db_file_multiblock_read_count = 16
    * .db_name = "orcl".
    * .db_recovery_file_dest_size = 2147483648
    * .db_unique_name = "pending".
    *. Dispatchers ='(Protocol=TCP) (SERVICE = orclXDB)"
    #*. FAL_CLIENT = 'pending '.
    #*. FAL_SERVER = "orcl".
    * .job_queue_processes = 10
    *. LOG_ARCHIVE_CONFIG = 'DG_CONFIG = (Standby, ORCL)'
    *. LOG_ARCHIVE_DEST_1 =' LOCATION = / u01/app/Eve/std_data/stdarchive
    VALID_FOR = (ALL_LOGFILES, PRIMARY_ROLE)
    DB_UNIQUE_NAME = standby"
    *. LOG_ARCHIVE_DEST_2 = "SERVICE = orcl LGWR ASYNC
    VALID_FOR = (ONLINE_LOGFILES, PRIMARY_ROLE)
    DB_UNIQUE_NAME = orcl'
    *. LOG_ARCHIVE_DEST_STATE_1 = 'ENABLE '.
    *. LOG_ARCHIVE_DEST_STATE_2 = 'ENABLE '.
    *. LOG_ARCHIVE_FORMAT=%t_%s_%r.arc
    *. LOG_ARCHIVE_MAX_PROCESSES = 30
    *. LOG_FILE_NAME_CONVERT='/u01/app/oracle/oradata/orcl/redo01.log','/u01/app/standby/std_data/redo05.log','/u01/app/oracle/oradata/orcl/redo02.log','/u01/app/standby/std_data/redo06.log','/u01/app/oracle/oradata/orcl/redo03.log','/u01/app/standby/std_data/redo07.log'
    * .open_cursors = 300
    * .pga_aggregate_target = 16777216
    * runoff = 150
    * .remote_login_passwordfile = "EXCLUSIVE."
    * .sga_target = 167772160
    *. STANDBY_FILE_MANAGEMENT = 'AUTO '.
    * .undo_management = "AUTO".
    * .undo_tablespace = "UNDOTBS1.
    *.user_dump_dest='/U01/app/standby/std_data/udump '
    *. DB_FILE_NAME_CONVERT='/U01/app/Oracle/oradata/ORCL/sysaux01.dbf','/U01/app/standby/std_data/sysaux01.dbf ',.
    ' / u01/app/oracle/oradata/orcl/system01.dbf','/u01/app/standby/std_data/system01.dbf',
    ' / u01/app/oracle/oradata/orcl/undotbs01.dbf','/u01/app/standby/std_data/undotbs01.dbf',
    ' / u01/app/oracle/oradata/orcl/temp01.dbf','/u01/app/standby/std_data/temp01.dbf',
    ' / u01/app/oracle/oradata/orcl/users01.dbf','/u01/app/standby/std_data/users01.dbf'

    DATABASE PRIMARY PFILE
    *******************************

    ##############################################################################
    # Copyright (c) 1991, 2001, 2002 by Oracle Corporation
    ##############################################################################

    ###########################################
    IO and cache memory #.
    ###########################################
    DB_BLOCK_SIZE = 8192
    db_file_multiblock_read_count = 16

    ###########################################
    # The library Cache and sliders
    ###########################################
    open_cursors = 300

    ###########################################
    # Identification of the database
    ###########################################
    db_domain = < NAME >
    db_name = orcl
    db_unique_name = orcl
    LOG_ARCHIVE_CONFIG = 'DG_CONFIG = (ORCL, Standby)'


    ###########################################
    # Diagnostic and statistical
    ###########################################
    background_dump_dest = / u01/app/oracle/admin/orcl/bdump
    = core_dump_dest / u01/app/oracle/admin/orcl/cdump
    user_dump_dest = / u01/app/oracle/admin/orcl/udump

    ###########################################
    # Configuration file
    ###########################################
    control_files = ("/ u01/app/oracle/oradata/orcl/control01.ctl", "/ u01/app/oracle/oradata/orcl/control02.ctl", "/ u01/app/oracle/oradata/orcl/control03.ctl")
    db_recovery_file_dest = / u01/app/oracle/flash_recovery_area
    db_recovery_file_dest_size = 2147483648

    ###########################################
    # Work queue
    ###########################################
    JOB_QUEUE_PROCESSES = 10


    ###########################################
    # Various
    ###########################################
    compatible = 10.2.0.1.0

    ###########################################
    # Process and Sessions
    ###########################################
    process = 150

    ###########################################
    # SGA memory
    ###########################################
    SGA_TARGET = 167772160

    ###########################################
    # Security and audit
    ###########################################
    audit_file_dest = / u01/app/oracle/admin/orcl/adump
    Remote_login_passwordfile = EXCLUSIVE lock

    ###########################################
    # Shared server
    ###########################################
    Dispatchers = "(Protocol=TCP) (SERVICE = orclXDB)" "

    ###########################################
    # Sort, hash joins, index Bitmap
    ###########################################
    pga_aggregate_target = 16777216

    ###########################################
    # System managed Undo and Rollback Segments
    ###########################################
    UNDO_MANAGEMENT = AUTO
    undo_tablespace = UNDOTBS1
    ##############################################
    LOG_ARCHIVE_DEST_1 =
    "LOCATION = / u01/app/oracle/flash_recovery_area/orclarchive"
    VALID_FOR = (ALL_LOGFILES, PRIMARY_ROLE)
    DB_UNIQUE_NAME = orcl'

    LOG_ARCHIVE_DEST_2 =
    "SERVICE = sleep LGWR ASYNC
    VALID_FOR = (ONLINE_LOGFILES, PRIMARY_ROLE)
    DB_UNIQUE_NAME = STANDBY"

    ################################################################

    LOG_ARCHIVE_DEST_STATE_1 = ENABLE

    LOG_ARCHIVE_DEST_STATE_2 = ENABLE

    ###################################################################

    LOG_ARCHIVE_FORMAT=%t_%s_%r.arc

    LOG_ARCHIVE_MAX_PROCESSES = 30

    ##################################################################

    FAL_SERVER = standby
    FAL_CLIENT = orcl
    ###############################################################################
    DB_FILE_NAME_CONVERT =
    ' / u01/app/standby/std_data/sysaux01.dbf','/u01/app/oracle/oradata/orcl/sysaux01.dbf',
    ' / u01/app/standby/std_data/system01.dbf','/u01/app/oracle/oradata/orcl/system01.dbf',
    ' / u01/app/standby/std_data/undotbs01.dbf','/u01/app/oracle/oradata/orcl/undotbs01.dbf',
    ' / u01/app/standby/std_data/temp01.dbf','/u01/app/oracle/oradata/orcl/temp01.dbf',
    ' / u01/app/standby/std_data/users01.dbf','/u01/app/oracle/oradata/orcl/users01.dbf'
    ##############################################################################################3

    LOG_FILE_NAME_CONVERT =
    ' / u01/app/standby/std_data/redo05.log','/u01/app/oracle/oradata/orcl/redo01.log',
    ' / u01/app/standby/std_data/redo06.log','/u01/app/oracle/oradata/orcl/redo02.log',
    ' / u01/app/standby/std_data/redo07.log','/u01/app/oracle/oradata/orcl/redo03.log'

    ################################################################################

    STANDBY_FILE_MANAGEMENT = AUTO

    What is the problem with these files? whenever I try to open the database it gives error "system data file is not recovered enough old sauvegardΘ" but I copid it and made according to the docs...

    How transfer journal to destination ensure?

    can anyone help?

    Thanks and greetings
    VD

    Published by: vikrant dixit on December 26, 2008 01:36

    Your situation is very clearly - see you go alert.log "influence the privileges. If you must rebuild the password file and try to play with this. I must say that sometimes, the behavior of Oracle in this is very strange. I also had questions, I tried to recreate the password file, and then copy this file from the primary. That I had done several times and ultimately, it worked. I don't know what I have, but I know it's because of password file.

    With regard to the statement you must have passwords for sys similar on primary and standby and copy the password from the main file.

    Published by: Vyacheslav Ostapenko on December 26, 2008 12:38

  • How the backup bridge and Photoshop CS4 settings?

    I'm being forced to get a new computer and need to know the fastest and easier (and less techie) how to back up all my settings (such as workspaces) bridge and Photoshop, including keyboard shortcuts, actions, and probably several other ones that I have not yet thought.  I am currently using Windows XP and will import in Windows 7.  Any help will be greatly appreciated.

    Here is a document that provides a portion of the location of the files.  http://kb2.Adobe.com/CPS/828/cpsid_82893.html

    For keywords, go to brige and in the upper right of the keywords Panel, click drop-down list.  Choose export and save the file to disk.

    Don't forget to disable (help/disable PS) copies on the old computer, and then turn back on the new computer.

    Best of do not copy the program, but do the installation disks.

  • content and the backup database

    How can I backup my database and the Web site content? Can I configure scheduled backups?

    Hello

    BC is not a tool of backup schedule.  How you will back up data is to follow the migration article.

    - http://kb.worldsecuresystems.com/203/bc_2038.html

    Please note BC keep a daily backup of your site, but is only a restoration of disaster recovery (system failure, etc.).

    Kind regards

    -Sidney

Maybe you are looking for