Prob. with DataGuard

hi everybody
i have created standby db in oracle 9i it is working fine but i have some doubt reg. redolog files.
i have configured log_archive_dest_2='service=<servicename> that means arch process will resposible for log transfre and disk write prameter is by default noaffirm(i realy dont understand the meaning of the affirm/noaffirm)
so i dont need to create any standby redologfile at standby side.
but when we r creating standby controlfile at primary side it also containg the information about online redolog files. so when i m using this standby controlfile at standby side to startup it also showing me online redologfiles when i m quering '"select *from v$logfile" but physicaly it is not there..
i have tryed to drop this online redologfiles at standby db but it is giving me an error that if u have set "standby_file_managemet=auto"" drop logfile will not work so temporary i have set this parameter to manual and tryed to drop this logfiles but still it is giving error....
this is the snapshot about what i have did.....
============================================================
Connected to:
Oracle9i Enterprise Edition Release 9.2.0.1.0 - 64bit Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.1.0 - Production
SQL> select name,database_role,open_mode from v$database;
NAME DATABASE_ROLE OPEN_MODE
ETALB PHYSICAL STANDBY MOUNTED
SQL> select *from v$logfile;
GROUP# STATUS TYPE
MEMBER
3 ONLINE
/usr6/ora_dbfiles/oradata/ETALB/redo03.log
2 ONLINE
/usr6/ora_dbfiles/oradata/ETALB/redo02.log
1 ONLINE
/usr6/ora_dbfiles/oradata/ETALB/redo01.log
SQL> alter database drop logfile
'/usr6/ora_dbfiles/oradata/ETALB/redo03.log';
alter database drop logfile
'/usr6/ora_dbfiles/oradata/ETALB/redo03.log'
ERROR at line 1:
ORA-01275: Operation DROP LOGFILE is not allowed if standby file
management is
automatic.
SQL> alter system set standby_file_management=manual;
System altered.
SQL> alter database drop logfile
'/usr6/ora_dbfiles/oradata/ETALB/redo03.log';
alter database drop logfile
'/usr6/ora_dbfiles/oradata/ETALB/redo03.log'
ERROR at line 1:
ORA-01623: log 3 is current log for thread 1 - cannot drop
ORA-00312: online log 3 thread 1:
'/usr6/ora_dbfiles/oradata/ETALB/redo03.log'
SQL> alter system set standby_file_management=auto;
System altered.
SQL>
============================================================
Thanks in advance...

My First Question: Why you are trying to drop these files ? Don't try to drop any file. Keep standby_file_management to be auto. Basically I mean to say don't disturb your configuration.
Basically as we copied the standby controlfile, it is showing this information. Presence of these entries will not effect to your configuration.
Do you know the concept of Failover or Switchover. The standby database will become primary database when Failover or Switchover happens. How it will create the online redo log files ? What are the names it will give to online redo log files ? Where it will create online redo log files ? The standby controlfile will help standby database to address all these issues. Also please understand about init.ora parameter log_file_name_convert.
Land on this link please.
http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14239/toc.htm
-aijaz

Similar Messages

  • Prob. with iTunes, Phone won't shut off.  Tks.

    3GS with 6.1.3 Prob. with iTunes.  When I want to close out of iTunes after a Podcast the App will not close out when I hit Home. All other Apps shut down, only prob. is with iTunes.  Cant turn phone off goes back ti iTunes when turned on again.  Tks.

    I hope the previous replies are wrong. It was my understanding that even when Match is turned off in iTunes, music previously matched or uploaded to iCloud will stay there, associated with my Apple ID, even through a cold boot etc. If you want to remove songs from iCloud, but keep them locally, do this:
    1. Click "Store" in the iTunes top Menu
    2. Select "Turn on iTunes Match" (if it isn't already turned on)
    3. Close iTunes.
    4. Hold down the Shift key while you open iTunes - this will prompt you to choose or create a (new, locally empty) Library in a different folder from your main Library.
    5. Now you should see ONLY music that is stored in iCloud.
    6. Delete them all. iTunes will show a checkbox or button for you to click to delete the selected items from iCloud.
    7. Turn off iTunes Match (see #1)
    8. Restart iTunes with the Shift key again, so you can get back to your main Library - with Match turned off.

  • I have copied my iTunes library onto a new computer, but when I play back the songs there seems to be random "miss" or "drop out".  No probs with old computer, just the new one.  I'm onto my third new computer - same problem.  Any suggestions please?

    I have copied my iTunes library onto a new computer, but when I play back the songs using the new computer, there seems to be random "miss" or "drop out" during play back, similar to a small scratch on a vinyl record.  Although when I play the same song over again, the "miss" occurs in a different location during the song.  No probs with old computer, just the new one.  I'm onto my third new computer - same problem.  Any suggestions please?

    You don't say which version of iTunes you are using, but the symptoms you describe have been encountered by some users with the 64-bit version of iTunes 12.1.
    There is an alternative version for 64-bit editions of Windows here:
    iTunes 12.1 for Windows (64-bit — for older video cards)
    that seems to address the most of the playback issues that some users have been reporting with the full 64-bit version of 12.1.0.77 - including problems with Bluetooth speakers where either sound is degraded or completely absent.  The alternative installer here is the same architecture as most previous "64-bit" versions of iTunes, i.e., a 32-bit application with a 64-bit installer.  The "for older video cards" label appears to be something of a misnomer as some people have reported that this corrects problems found on current / high-spec systems.
    Some users have reported that after installing this alternative version it is necessary to adjust the "Play audio using" selection (normally to "Direct Sound" rather than "Windows Audio Session", though this may vary based on your audio hardware/drivers) in Edit > Preferences > Playback to restore glitch-free audio (one part of the reported symptoms is that the "Direct Sound" choice isn't available, usually in Windows 8).  It may also be necessary to ensure that your Bluetooth speakers are active and selected as the default audio device before you run iTunes.
    If this doesn't address the issue, you may want to think about reverting to iTunes 12.0 - see Turingtest2's notes on Troubleshooting issues with iTunes for Windows updates for steps needed to completely remove all installed iTunes components, and for links to the 12.0 installers.

  • Prob with decode function

    hi iam having prob with the following decode function
    declare
    c varchar2(20);
    begin
    select decode(deptno,
    10, 'accounting',
    20,'Research',
    30 ,'sales',
    40,'operations','UNKNOWN') into c from dept where loc='DALLAS';
    dbms_output.put_line('DEPARTMENT in DALLAS'||c);
    select decode(deptno,
    10, 'accounting',
    20,'Research',
    30 ,'sales',
    40,'operations','UNKNOWN') into c from dept where loc='INDIA';
    dbms_output.put_line('DEPARTMENT IN INDIA'||c);
    end;
    iam getting no_data_found exception which is reasonable..but what happened to 'unknown' clause in decode function.
    thank u
    rajiv

    Please see the responses to your prob in decode function
    John

  • Airport connection probs with Mac Pro and 10.4.8  too.

    This prob is not just related to iMacs or MacBooks as published in the knowledge base doc. I have exactly the same prob with my 2.66 GHz Mac Pro. I have to reconnect this beast to my wlan router manually every time.
    PLZ Apple fix this asap!

    I had a similar problem which I've fixed!
    I have four machines here which can connect to my Netgear DG834N via Aiport. (I say can because they normally connect via ethernet.) My MacBook Pro always used to be fine when connected wirelessly but recently, not aware of any changes I've made, it connects for about 10 seconds then disconnects. All other machines are fine and hold the connection.
    This is what I tried before finding my solution:
    1) Deleted all references to the network in the keychain and remade them.
    2) Created another user to try
    3) Changed channels on the router even though I can't see any neighbour's networks.
    4) Made sure computer and router were up to date with firmware/software.
    I'm assuming that it has to be a computer problem as the PowerMac, iMac and iPod Touch have no issues at all. However, the cure was in the router.
    I run with SSID broadcast turned off, WPA2 encryption and MAC address filtering. Allowing broadcast of the SSID cures my problem. Turn it off and the computer connects then drops it ten seconds later. Turn broadcast on and it maintains the connection. I've tried it all afternoon, leaving it connected for about 30 minutes at a time before turning SSID broadcast off again. Works every time! Broadcast SSID - fine, no broadcast - drops after ten seconds.
    Now, if only I knew why! And why only the laptop?

  • Problem with DataGuard

    Hello.
    Please help me with problem. I install OEM with DataGuard on one computer and install database and agent on other. When I install this programs I can manage from OEM other computer on what install database. After I try create standby database for my database from OEM but it answered me "Cannot determine primary host architecture". What I need do for fix this problem? I can create standby database for base on one computer but I can't create standby for database on other computer.

    Can you be more specific ?
    -- Where is the Primary DB installed on ? Which version of DB ? What version of agent is installed on it ?
    -- Where is the OEM Grid installed on ? Version ?
    -- Where are you trying to create the Standby DB on ? If it is on a different server what version of the agent is installed on it ?
    -- Have you enabled the parameters for Data Broker ?

  • Hey, i have very strange prob with my iphone 5(latest version/updated), after resetting it, so it doesn't connect to my laptop, even it doesn't charge too. it does charge from wall charger i try all the possible methods but still i am facing the prob

    Hey, i have very strange prob with my iphone 5(latest version/updated), after resetting it, so it doesn't connect to my laptop, even it doesn't charge too. it does charge from wall charger i try all the possible methods but still i am facing the prob any fix/solution for it.. Helppppp!!!!!!!!!!!!!!!!!!!!!!!! As soon as possible, it will be gratefulness,
                                Thnksssssss....

    So you are saying that you followed all of the steps in the support document for problems with connection, including removing and reinstalling iTunes? You do not say what you have tried, so it is hard to make recommendations. If this is the case, then you have tried resolving driver issues? What if you go to Device Manager and look for the iPhone. You should be able to click on it and see about drivers. You can update/reinstall the device driver.

  • Function module Prob with kostl

    hi,good day guys.
    Iam using K_ORDER_SRULE_ADD for settelment rules. In this other function module  for read the fields one whic is K_DEFAULT_RULE_READ.. This is k_order_srule_add f.m source code as below as.
    .default rule table TKB2C is maintained as 'I_SRULES' therefore
    *.....aditional work area is needed.
          i_srules = srules.
    *.....fill COBL to find KONTY
          cobl-kokrs        = ld_kokrs.
          cobl-gsber        = srules-bus_area.
          cobl-bukrs        = srules-comp_code.
          cobl-saknr        = srules-gl_account.
          cobl-prctr        = srules-profit_ctr.
          cobl-kostl        = srules-costcenter.                     "here iam getting the cost center value
          cobl-aufnr        = srules-orderid.
          CALL FUNCTION 'CJPN_EXTERN_TO_INTERN_CONV'
            EXPORTING
              ext_num       = srules-wbs_element
            IMPORTING
              int_num       = cobl-ps_psp_pnr
            EXCEPTIONS
              error_message = 2
              OTHERS        = 1.
            EXIT.
          ENDIF.
          cobl-anln1        = srules-asset_no.
          cobl-anln2        = srules-sub_number.
          cobl-nplnr        = srules-network.
          cobl-vornr        = srules-activity.
          cobl-kdauf        = srules-sales_ord.
          cobl-kdpos        = srules-s_ord_item.
          cobl-kstrg        = srules-cost_obj.
          cobl-prznr        = srules-co_busproc.
    *.....get ASSIGN information in IT_DFTAB
          CLEAR konty.
          CALL FUNCTION 'K_DEFAULT_RULE_READ'        "this FM reads the fields and assining to the lt_dftab
            EXPORTING
              dfreg         = 'BAP'
              obart         = 'OR'
              i_cobl        = cobl
            IMPORTING
              e_konty       = konty
            TABLES
              dftab         = it_dftab                                           "iam not getting the costcenter[kostl] field..
            EXCEPTIONS
              error_message = 2
              OTHERS        = 1.
          IF ( sy-subrc <> 0 ).
            MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4
                    RAISING error_occurred.
            flg_leave = 'X'.
            EXIT.
          ENDIF.
    Based on lt_dftab fields. K_POSTING_RULE_INSERT f.m willbe insert the values.prob with costcenter.
    Edited by: balaji kiran on Apr 14, 2010 7:55 AM
    Edited by: balaji kiran on Apr 14, 2010 7:57 AM

    Hi,
    Could you explain how you did it?
    -Thanks

  • ACE HTTP Probe with regex

    ACE HTTP Probe with regex
    Hi,
    I'm trying to setup a HTTP probe with expected string rather then a code (config below). I do a GET for the page then a search for a string in the response however it's not working, as probe appears as failed.
    I've tested the connection to the server by using telneting and then looking at the page displayed to make sure the string I want to match is in the response.
    probe http HTTP-PROBE
    port 43050
    interval 30
    passdetect interval 30
    passdetect count 1
    request method get url /action=help
    open 43050
    expect regex action=help
    Q. Is there anything wrong with this configuration and what I'm trying to achive?
    Thanks,
    Pritesh

    Use "expect status" under probe config. expect regex doesnt work if expect status is not configured.
    expect regex work flawlessly with static pages. It doesnt work all the time with dynamic pages.
    Specially if "content-length" header is missing from Server response.
    Hope it helps
    Syed Iftekhar Ahmed

  • I Was trying to update my apps, then i got an alert that said sign in required. I pressed continue, then it took me to my acct settings and it said there was a prob with my previous purchase and I havent purchased anything???

    I Was trying to update my apps when i got a sign in required alert,
    i signed in and it took me to my account settings ]it said there was a prob with a previous purchase and i havent purchased anything?

    http://support.apple.com/kb/ht1808

  • Since I'm having probs with ios6 and Safari, would the Atomic browser be worth a try?

    Since i'm having probs with ios6 and Safari (Autofill and loss of Wi Fi), would the Atomic browser be worth a try?  trouble is, I'm a bit of a 'newbie' when it comes to the 'clever' stuff, so need a bit of expert advice here.

    I use the Atomic browser for some things. I feel it's main advantage is that you can set the type of browser that Atomic reports. I set mine to Internet Explorer and that allows me to visit regular websites without being redirected to a tablet version. Its free so why not download it and give it a try. If you find it wanting just delete it.

  • Does RMAN Work With DataGuard And Restore Points?

    I only have a basic experience of RMAN on a training course and no experience of Data Guard.
    We have an 11g set up where DataGuard is keeping production and DR in sync.
    On a release weekend we want a rollback strategy in case any of the config goes wrong.
    When the database was small and before we were using DataGuard this just consisted of datapump.
    Now the database is 120GB that isn't an option in our timescale.
    Can I set a restore point and use archive logs to keep track so that if there is a problem and we need to roll back we can just rollback to the restore point?
    Would this work or would it cause problems with DataGuard?
    Is rolling back to a restore point a relatively fast operation?

    DataGuard works with Restore Points.  The use case is when
    a. You created a Restore Point for the Primary and Standby
    b. You upgraded the Primary
    c. You find a fault with the Primary
    d. You revert both the Primary and the Standby to the Restore Point and resume DataGuard.
    Hemant K Chitale

  • Implementing 11gR2 RAC with dataguard

    Could any one provide the steps on how to setup 11gR2 two node RAC With Dataguard . Could the 11R2 Active database duplication can be used in setting up the standby ?
    I just need the order of steps to be followed to set up the environment.
    1] Set up the Grid Infrsatructure for the 2 node RAC .
    2] Create the database .
    3] Modify the init.ora prameter to chage the above created database as primary .
    4] Set up the grid infrastructure for the 2 node RAC on the DR site.
    5] Create the standby database using 11gR2 active database dupication.
    Is the above order correct ? If not , let me know the correct order of steps that needs to be followed to setup 11gR2 RAC with dataguard.

    Could any one provide the steps on how to setup 11gR2 two node RAC With Dataguard . Could the 11R2 Active database duplication can be used in setting up the standby ?This below document is one of best one, to configure two node standby for two node primary database,
    http://www.oracle.com/technetwork/database/features/availability/maa-wp-10g-racprimaryracphysicalsta-131940.pdf
    starting from 11gR2 you can use duplication from active database. also refer below note.
    How to create physical standby database with 11g RMAN DUPLICATE FROM ACTIVE DATABASE [ID 747250.1]

  • I'm a photoshop user on Mac and I was obliged to uninstall Photoshop because prob with generator. Now it's impossible for me to re-download Photoshop. Can you Help? Please

    I'm a photoshop user on Mac and I was obliged to uninstall Photoshop because prob with generator. Now it's impossible for me to re-download Photoshop. Can you Help? Please

    Run the cleaner tool and try again.
    Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    Mylenium

  • ACE Appliance HTTP Probe with "POST" query

    Does the ACE support HTTP Probe with a "POST" query?
    Thanks
    Joe

    Hi Joe,
    The ACE only supports GET and HEAD
    Here is the documentation related to this:
    http://www.cisco.com/en/US/customer/docs/interfaces_modules/services_modules/ace/vA5_1_0/configuration/slb/guide/probe.html#wp1031485
    Cesar R

Maybe you are looking for

  • ITunes on a PC with Windows 7, iPhone and Ipad

    iTunes installed on a PC with Windows 7, you can sync with an iPhone and Ipad users and different accounts?

  • Confirmation of 2 Services for a Service PO

    Hi All, We are using SRM 3.0, EBP 4.0 ECS. We create a Service PO in SRM and have 2 Services (items) for the Service PO. While doing confirmation in SRM both the services are available. If we confirm one Service (item) for the full quantity and then

  • New FireWire external hard drive won't mount: conflict with iSight?

    My parents just upgraded their eMac (1 GHz, 1GB RAM) to Leopard and bought an external FireWire hard drive to use Time Machine. We got the drive back to their place, powered it up, and plugged it in via the FireWire cable. Nothing. Wouldn't mount, di

  • Can't get rid of music videos in music section

    Well, frankly, I know this is possible, because I did it on my other account, but I forgot how. Basically, when I put any videos into the designated Music Videos section in iTunes, it also automatically puts a file into the Music section. How do I ge

  • Graphite case problem

    I have a clamshell graphite that has a problem with the rubber trim around the front of the unit. It has started to come away from the plastic case. Can it be re-attached without much trouble. It is only a cosmetic issue, but if I want to upgrade to