Can standby controlfile be created after backup

can we take the online backup of primary database first and then create standby controlfile.will it be useful.
as i have yesterday backup..now can i create standby controlfile now and configure data guard by restoring that backup.
Regards

Hi,
user11221081 wrote:
can we take the online backup of primary database first and then create standby controlfile.will it be useful.
as i have yesterday backup..now can i create standby controlfile now and configure data guard by restoring that backup.
Regards
Yes, we can create standby  control  file, after backup.
What is your database version?
If you  are using 11g version, then you can RMAN DUPLICATE command FROM  ACTIVE DATABASE option.
This duplication is not backup-based duplication.
Regards
Mahir M. Quluzade

Similar Messages

  • Can't switch operation mode after backup offline

    Hello:
    Every sunday system stop at 9:30 a.m to backup offline at 16:00p.m
    System start at 23:00 p.m.
    Operation mode
    Day : 7:00 a.m 22:00 p.m
    Night 22:00 p.m 7:00 a.m
    This monday dont switch operation mode night to day and disp+work get
    busy .
    Nobody could access the system until it is manually reset.
    Can anybody help us?
    Regards.

    You have following options.
    1 .try to adjust  the operation mode as example given below.
    Add an additional operation mode Except  for the duration of backup .
    Example:
    7:00 a.m. - 7:00 p.m. DAY (normal operation mode)
    7:00 p.m. - 7:00 a.m. NIGHT (normal operation mode)
    3:00 a.m. - 4:00 a.m. EXCEPT (Backup operation mode)
    4:00 a.m. - 7:00 a.m. NIGHT (exception operation mode)
    2.See if you get and error message in sm21 after offline backup.
    3.delete the operation mode and create new .
    4.try to change the timings of day and night operation mode.
    what is your OS and DB and Rel?
    hope it helps.
    Amit

  • Can't find folder created by Backup and Recovery app

    Hi all,
    I have A316i phone and when I select "Backup and Recovery" app and backup my SIM contacts it shows it created backup (and I can see it in the restore tab). But when I want to find that backup on my phone's SD memory card in order to copy it to my PC hard disk I can't seem to find it.
    How do I copy backup folder from phone to PC ( and how do I find it)?
    Thanks.
    Solved!
    Go to Solution.

    Go to contacts > press the settings button (bottom left side)>Import/Export.
    You can also export contacts to your google account... That way every time you change your Android phone just connect with your google account and all your contacts and the data (birthday, address, photo.. )you add to them will show up.
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as ''ACCEPT AS SOLUTION"! 
    Unsolicited PM's will not be answered! ....Please post your question/s in the appropriate forum board.
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

  • Create a standby controlfile using cold backup

    Hi All,
    We have to setup a DR for a production database.
    Here we have the coldbackup which backups all the datafiles and the control file from the production database.
    For cloining we generally copy them to another instance and then create controlfile manually. But for setting up as a DR , we would be creating it for standby controlfile.
    I tried to google but I am not able to find a way to create a standby controlfile from the existing controlfile cold backup.
    OS version solaris 10 , database version 11.2.0.1
    Regards
    KK
    Edited by: Kk on Feb 16, 2012 8:51 AM

    Kk wrote:
    Hi All,
    We have to setup a DR for a production database.
    Here we have the coldbackup which backups all the datafiles and the control file from the production database.
    For cloining we generally copy them to another instance and then create controlfile manually. But for setting up as a DR , we would be creating it for standby controlfile.
    I tried to google but I am not able to find a way to create a standby controlfile from the existing controlfile cold backup.
    OS version solaris 10 , database version 11.2.0.1
    Regards
    KK
    Edited by: Kk on Feb 16, 2012 8:51 AMTry as below
    My version:
    SQL> select * from v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    PL/SQL Release 11.2.0.1.0 - Production
    CORE    11.2.0.1.0      Production
    TNS for 32-bit Windows: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production
    SQL>1) Taken backup of current controlfile
    2) Deleted Current controlfiles
    3) Restored using standby clause from current controlfile
    4) Mounted & now controlfile type is Standby
    Try in this way when you have cold backup. :)
    SQL> select controlfile_type from v$database;
    CONTROL
    CURRENT
    RMAN> run
    2> {
    3> allocate channel ch1 device type disk format 'c:\oracle\control%U.bkp';
    4> backup current controlfile;
    5> release channel ch1;
    6> }
    using target database control file instead of recovery catalog
    allocated channel: ch1
    channel ch1: SID=63 device type=DISK
    Starting backup at 16-FEB-12
    channel ch1: starting full datafile backup set
    channel ch1: specifying datafile(s) in backup set
    including current control file in backup set
    channel ch1: starting piece 1 at 16-FEB-12
    channel ch1: finished piece 1 at 16-FEB-12
    piece handle=C:\ORACLE\CONTROL08N3GEA6_1_1.BKP tag=TAG20120216T230334 comment=NONE
    channel ch1: backup set complete, elapsed time: 00:00:01
    Finished backup at 16-FEB-12
    released channel: ch1
    RMAN> exit
    RMAN> restore standby controlfile from 'C:\ORACLE\CONTROL08N3GEA6_1_1.BKP';
    Starting restore at 16-FEB-12
    using target database control file instead of recovery catalog
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID=66 device type=DISK
    channel ORA_DISK_1: restoring control file
    channel ORA_DISK_1: restore complete, elapsed time: 00:00:03
    output file name=C:\ORACLE\ORADATA\ORCL\CONTROL01.CTL
    output file name=C:\ORACLE\FLASH_RECOVERY_AREA\ORCL\CONTROL02.CTL
    Finished restore at 16-FEB-12
    SQL> alter database mount;
    Database altered.
    SQL> select controlfile_type from v$database;
    CONTROL
    STANDBY
    SQL>
    Some More information:-
    Even if your database backup is old, still you can create a new standby controlfile and restore new controlfile and restore database. Later after starting MRP all will be synchronized. No issues
    SQL> select controlfile_type from v$database;
    CONTROL
    CURRENT
    SQL> alter database create standby controlfile as 'c:\oracle\control_stby.ctl';
    Database altered.
    SQL> $dir c:\oracle\con*
    Volume in drive C is System
    Volume Serial Number is 1853-3E21
    Directory of c:\oracle
    02/16/2012  11:41 PM         9,748,480 CONTROL_STBY.CTL
                   1 File(s)     19,546,112 bytes
                   0 Dir(s)  177,185,570,816 bytes free
    SQL>Now Just restore database. You already have backup.
    Or
    If you have opportunity you can go ahead for Duplicate/Duplicate from active database
    Edited by: CKPT on Feb 16, 2012 11:41 PM

  • How to create standby controlfile from restored backup

    Hi Techies,
    I am re-building one of my DR server, Source and target DB is oracle 10g.
    I have taken the source backup which is going to be restored on target, But I forgot to take a standby controlfile from source DB at the time (Pre/Post) backup.
    Now the issue is I can create a standby controlfile on primary and copy the same to target, But so many datafiles are added after the backup which I have taken to restore and medias are already shipped.
    I can send the other set of backup to DR site, but it takes a week time and I don't want to do that If I can regenerate it.
    So any clue to create standby controlfile on target with restored datafiles?
    Regards,
    Nick Loy

    Hmm... sounds like you perform this in a rather manual fashion...
    Do you use RMAN for taking the backups?
    Or maybe the BR*TOOLS?
    With these tools you are usually safe from such mistakes - I can only recommend to use them!
    However, since you don't have a control file at all on the target side, the only thing left to do would be to
    ALTER DATABASE BACKUP CONTROLFILE TO TRACE NORESETLOGS;
    on the primary side and manually remove the files that have been added since you took the backup from the control file script,
    Afterwards you use the script on the standby side to create the control files.
    regards,
    Lars

  • Iphone4 would not restore Error -50. I have tried to restore and it restored it to the point that it created after 5.0 was installed. How can I get it an older restore point from my backups and restore it on another computer? The phone has been wiped out.

    Iphone would not restore---- Error -50. I have tried to restore, and it restored it to the new point that it created after 5.0 was installed. How can I get it an older restore point from my backups and restore it on another computer? The phone has been wiped out. I can see earlier backups in my C:\Documents and Settings\user\Application Data\Apple Computer\MobileSync\Backup folder. There are four subfolders in this address. I need my contacts, photos, and messages back. I know this is a common error but I can not figure it out. I have ran the other troublshoot items in the error steps for 13 and 14 like apple says. Is there a way to call apple and get a step by step of how to restore from another restore point? Does anybody have a solution????

    It tells you to go to Error 13 and 14 if you receive error (-50).
    Here is what I have tried...
    Error 13 and 14: These errors are typically resolved by performing one or more of the steps listed below:
    Perform USB isolation troubleshooting, including trying a different USB port directly on the computer. See the advanced steps below for USB troubleshooting. I have moved it around to different ports.
    Put a USB 2.0 hub between the device and the computer. Didn't change anything.
    Try a different USB 30-pin dock-connector cable.
    Eliminate third-party security software conflicts. Removed all virus protection and firewall.
    There may be third-party software installed that modifies your default packet size in Windows by inserting one or more TcpWindowSize entries into your registry. Your default packet size being set incorrectly can cause this error. Contact the manufacturer of the software that installed the packet-size modification for assistance. Or, follow this article by Microsoft: How to reset Internet Protocol (TCP/IP) to reset the packet size back to the default for Windows.Used the Microsoft fix it.
    Connect your computer directly to your Internet source, bypassing any routers, hubs, or switches. You may need to restart your computer and modem to get online. Doesn't matter.
    Try to restore from another known-good computer and network. I do not know how to do this or how to find the correct/full/complete restore point. There should be more information for this.

  • ITunes creates corrupted backup after updating to iOS 8.3

    So this happened right after I updated my iPhone 5s to iOS 8.3.
    I got an "iTunes could not backup the iPhone because the backup was corrupt or not compatible with the iPhone" error.
    I've followed instructions to update iTunes, restart the program, computer, and phone.
    Delete backups.
    I've tried backing up on my 2nd computer with the same exact error.
    None of it works.
    iTunes DOES make a backup. It says it was created 12/31/2000 at 6pm. However if I navigate to the folder in AppData it says it was created at the proper time on my computer's clock. I'm too afraid to restore that backup since my phone has no "real" backup now.
    I would call Apple support but they want to charge me $30 for one session.
    I've been avoiding restoring my phone because I don't want to spend the time to get all my apps and photos and music back onto the phone.
    So I'm left with 2 options.
    Restore the iPhone and waste a good hour of my time reinstalling everything.
    Or waiting for the next 8.x iOS update and hope that fixes the issue.
    Unless someone here can think of a 3rd option.

    Hi there offroadguy,
    It sounds like you’ve done quite a bit of troubleshooting to try and resolve the issue creating a backup of your iPhone 5s. If you haven't already, take a look at the article linked below which provides some additional troubleshooting tips that will likely resolve the issue.
    Get help making a backup in iTunes - Apple Support
    So long,
    -Jason

  • Got error when creating a standby DB from rman:  no backup or copy... Why?

    We try to create standby database from a production DB on another server (10.2.0.4). The RMAN backup is in the nfs file system which is also mounted to the target server (the DR box). So, the access path for the rman backup is the same look from primary DB server and DR DB server. I started the RMAN run:
    RMAN> RUN
    2> {
    3> ALLOCATE AUXILIARY CHANNEL aux1 DEVICE TYPE DISK;
    4> ALLOCATE AUXILIARY CHANNEL aux2 DEVICE TYPE DISK;
    5> DUPLICATE TARGET DATABASE for standby
    6> nofilenamecheck
    7> dorecover;
    8> }
    9>
    10> exit
    using target database control file instead of recovery catalog
    allocated channel: aux1
    channel aux1: sid=582 devtype=DISK
    allocated channel: aux2
    channel aux2: sid=584 devtype=DISK
    Starting Duplicate Db at 21-JUN-12
    contents of Memory Script:
    set until scn 12198261770353;
    restore clone standby controlfile;
    sql clone 'alter database mount standby database';
    executing Memory Script
    executing command: SET until clause
    Starting restore at 21-JUN-12
    released channel: aux1
    released channel: aux2
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Duplicate Db command at 06/21/2012 16:33:36
    RMAN-03015: error occurred in stored script Memory Script
    RMAN-06026: some targets not found - aborting restore
    RMAN-06024: no backup or copy of the control file found to restore
    ===========================================================================
    The backups should have controlfile. There is rman show all display:
    RMAN configuration parameters are:
    CONFIGURE RETENTION POLICY TO REDUNDANCY 1;
    CONFIGURE BACKUP OPTIMIZATION OFF;
    CONFIGURE DEFAULT DEVICE TYPE TO DISK;
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '/backup/inbound/online/controlfile_auto%F';
    CONFIGURE DEVICE TYPE DISK PARALLELISM 1 BACKUP TYPE TO BACKUPSET;
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1;
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1;
    CONFIGURE CHANNEL 1 DEVICE TYPE DISK FORMAT '/backup/inbound/online/%d_%T_%t_%s';
    CONFIGURE MAXSETSIZE TO UNLIMITED;
    CONFIGURE ENCRYPTION FOR DATABASE OFF;
    CONFIGURE ENCRYPTION ALGORITHM 'AES128';
    CONFIGURE ARCHIVELOG DELETION POLICY TO NONE;
    CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/backup/inbound/online/snapcf_inbound.f';
    Why and how to fix? Thanks for help!

    Here is the list of command:
    RMAN> list backup of controlfile ;
    List of Backup Sets
    ===================
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    5518 Full 4.57M DISK 00:00:07 17-JUN-12
    BP Key: 5518 Status: AVAILABLE Compressed: NO Tag: TAG20120617T035926
    Piece Name: /backup/inbound/online/controlfile_autoc-2080040856-20120617-00
    Control File Included: Ckp SCN: 12197994840698 Ckp time: 17-JUN-12
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    5522 Full 4.57M DISK 00:00:00 18-JUN-12
    BP Key: 5522 Status: AVAILABLE Compressed: NO Tag: TAG20120618T010158
    Piece Name: /backup/inbound/online/controlfile_autoc-2080040856-20120618-00
    Control File Included: Ckp SCN: 12198041382572 Ckp time: 18-JUN-12
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    5526 Full 4.57M DISK 00:00:01 19-JUN-12
    BP Key: 5526 Status: AVAILABLE Compressed: NO Tag: TAG20120619T010352
    Piece Name: /backup/inbound/online/controlfile_autoc-2080040856-20120619-00
    Control File Included: Ckp SCN: 12198090424606 Ckp time: 19-JUN-12
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    5530 Full 4.57M DISK 00:00:02 20-JUN-12
    BP Key: 5530 Status: AVAILABLE Compressed: NO Tag: TAG20120620T010304
    Piece Name: /backup/inbound/online/controlfile_autoc-2080040856-20120620-00
    Control File Included: Ckp SCN: 12198146424201 Ckp time: 20-JUN-12
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    5534 Full 4.57M DISK 00:00:02 21-JUN-12
    BP Key: 5534 Status: AVAILABLE Compressed: NO Tag: TAG20120621T010357
    Piece Name: /backup/inbound/online/controlfile_autoc-2080040856-20120621-00
    Control File Included: Ckp SCN: 12198210334547 Ckp time: 21-JUN-12
    ==================================================================
    I tried to catalog the controlfile:
    RMAN> catalog controlfilecopy '/backup/inbound/online/controlfile_autoc-2080040856-20120621-00';
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03009: failure of catalog command on default channel at 06/21/2012 17:24:32
    ORA-19563: control file header validation failed for file /backup/inbound/online/controlfile_autoc-2080040856-20120621-00
    ====================================================================
    We have level 1 backup everyday, except Sunday. I have level 0 backup on Sunday. I alos tried the metalink note RMAN Duplicate For Standby Fails with Rman-06024: No Backup Or Copy Of The Control File Found To Restore [ID 466321.1]. It does not work.
    Thanks for help!

  • I have a free agent desk 500GB external hard drive.  Since updating my iMac OS to mountain lion recently, it will no longer backup, stating "an error occurred while creating the backup folder".  Can anyone help me with this?

    I have a free agent desk 500 GB external hard drive.  Since updating my iMac OS to Mountain Lion it no longer backs up through Time Maching like it did in the past.  Now, after completing its work it says, "Unable to complete backup.  An error occurred while creating the backup folder."  I cannot find any sites that help me fix this.  Do I need to purchase a new external hard drive?

    Hi Aaron,
    Have you looked through Pondini's extensive TM help site?
    http://Pondini.org/TM/FAQ.html
    http://pondini.org/TM/Troubleshooting.html
    Can't imaging something not being covered there.

  • How to create primary controlfile from standby controlfile?

    We need to create a primary control file from a standby control file.
    SQL> select name, controlfile_type from v$database;
    NAME CONTROL
    HPR STANDBY
    Please help.
    Thank you very much.

    May wrote:
    We need to create a primary control file from a standby control file.
    SQL> select name, controlfile_type from v$database;
    NAME CONTROL
    HPR STANDBY
    Please help.
    Thank you very much.What is a problem?
    You can not create controlfile from standby controlfile(Expected activate time).
    And you lost controlfile?

  • Please! can anyone tell me if after I create a site with adobe muse, is there anyway for my client t

    Please! can anyone tell me if after I create a site with adobe muse, is there anyway for my client to edit and update text and to a lesser extent images on the website?
    I don't care if the client text/image editing and updating doesn't update in my Adobe Muse, as long as my client can update the text online.
    Please help me answer this question, I have used adobe for decades (2) and am a print designer. I want to use Muse for websites but if my clients can't update text and images, I don't see how I can make it work.
    If I have to use Business Catalist too; I don't care. I just want to be able to use this great software.
    Sorry if I soud desperate but I'm holding on starting a website for a new client and need to get this answered first.

    At the moment you can't using Muse's widgets, though you can insert html! So, you could have photo galleries linked to flickr that the client can update to, for example. I'm sure there are other options for slicker slideshows that can be updated client side!
    For text, I'm too much of a novice, unless you were wanting a blog style: http://www.muse-themes.com/blogs/news/7257782-creating-a-blog-in-adobe-muse-powered-by-nab ble
    Basically, I think you need to find the right html to embed for your purposes

  • Is it still possible to downgrade from ios 6 to ios 5.1.1 on my ipod touch 4th gen as of Sept.24?Also, if I use a backup created AFTER updating to ios 6 when I restore/downgrade to ios 5.1.1, does it become ios 6 again because of the backup?

    Is it still possible to downgrade from ios 6 to ios 5.1.1 on my ipod touch 4th gen as of Sept.24? Also, if I use a backup created AFTER updating to ios 6, when I restore/downgrade to ios 5.1.1, does it become ios 6 again because of the version of ios 6 that I created the backup on?

    There has never been a legit way to downgrade.
    It will always restore to the latest available software.

  • Can Anyone Tell Me Why Time Machine Won't Create A BackUp Folder for a Programed Backup?

    Does anyone know why my Time Machine is NOT creating a backup folder on and regular scheduled backup?  Just recently I downloaded the Time Machine Editor and it said to turn off the regular Time Machine (ON/OFF) switch, and just run off the TM Editor.  However, at 1am in the morning, it comes up with the error saying it can't create a Backup Folder.  I'm sure this is a simple solution but I really don't know how to handle this...  Would appreciate any and all help in this matter... Thanks, Gary

    Were you already backing up with Time Machine - ie, did you have an existing backup folder on the drive before you started using Time Machine Editor? If not, you probably need to do at least one full backup with TM, and then start using TME to schedule backups.
    Matt

  • Hi there  all the new playlist i create after the i os7 in my i tune can t be view in my i phone playlist i have 65 playlist in my i tune only 58 show up in my i phone i sync and try hard i even drag and drop file in some existing playlist i had won't see

    hi there all the playlist i create after upgrading to i phone 5s on my i tune can t be vew on my i phone playlist i sync many time i even try to drag and drap to the playlist that i see in my i phone those file is not showing up to the existing playlist on my i phone but the playlist that is in my itune the file is there that is something apple should take care imediately this is very importan thank you

    Yes, you can sync podcasts. Except in this case it's KEXP.org's song-a-day podcast that are just songs. I want them to work the same way as any song in my library from any other source. I do not want to manage them as podcasts. And for whatever reason it won't send them to my iphone as songs unless I right click and convert to mp3. And yes, they already are mp3s. Before I convert them, they don't ever show up in iTunes DJ or in Music either. I don't know... ask Apple.

  • HT1414 Some videos that are stored in iCloud remain on my iPad after backup.What can I do to store them in the cloud again?

    After watching tv shows that were stored in iCloud, they remain on the iPad device even after backup is performed on iCloud.
    This limits my iPad storage.  How do I get them back to iCloud as soon as I have finished watching?

    Backing up your iPad won't change what is stored on your iPad, and you can't put TV programmes into the cloud - they will only show there whilst the TV company has them for sale in your country's store.
    How did you download them onto you iPad e.g. via the Purchased tab in the iTunes store app or syncing, or do you have videos in the cloud showing (Settings > iTunes & App Store > Videos 'on') and tapped on a cloud TV programme in the Videos app ? If the former then you should be able to delete them directly in the Videos app, either via the Edit button on the TV programme selection screen, or by selecting the series and swiping across the episode from right to left. If the latter then do they show in Settings > General > Usage > Videos (under the 'Storage' heading) ? If they do then you should be able to delete them by swiping across them from right to left.

Maybe you are looking for

  • Display current date in jsp?

    I hate asking for code, but I can't find anything on this. I'm trying to display the current date in the format YYYYMMDD on a jsp page without using scriplets. I've seen getting the time in milliseconds used through <jsp:useBean id="now" class="java.

  • Addition plug-ins for Dictionary Application

    Dear list members, I do a lot of translating work on my Mac, and I noticed that in Tiger that there is this Dictionary Application which is quite useful. However, it is also very limited as it only contains English. Do the other localizations of Mac

  • Questions about the size of x-fi ca

    I recently orderd a dell d/dock for my laptop and I am aware that it is possible to plug in an x-fi xtreame music card into its PCI slot, but I was wondering if the x-fi platinum is the same size as the xtreame music version? and also if it works pro

  • How to add Acrobat Distiller printer driver?

    I have Acrobat 4.0 installed on our Win 2003 server but I can not see Adobe Distiller in my printers and Faxes. Can anyone tell me how to add the Distiller printer/ Where is it located? Which driver should I use? Thanks

  • Set cursor position within table control while scrolling

    hi, Anybody can guide me how to set the cursor with in table control while scrolling down,normally it is going to first input filed. Thanks and Regards, palani.