Setting of DELAY while primary crashed

Hi all

The needs of the application is to have 15 minutes LATE on standby, so that when disasters occur, the application you which propose to 15 minutes, how many minutes of archives to apply manually, IE point in recovery time.

For database version 11.2.0.3 under linux, in a dataguard set up what is the behavior of the MRP, based on data watch if "DELAY parameter is defined and database main breaks down".
The archives of delays will apply by MRP once the DELAY is over, or they will remain intact (so that these can be picked up manually at a given point in time)

Please suggest.

Rgds,
Sanjay

Hello;

They will be applied.

Delay does not delay the sending of roll forward. It simply indicates the process to apply to the target database.

Source Chapter 2 of the manual on the custody of the data - page 84.

So if you don't want to apply, you should stop the MRP.

Oracle 10

http://docs.Oracle.com/CD/B19306_01/server.102/b14239/log_arch_dest_param.htm#i77472

Oracle 11.1

http://docs.Oracle.com/CD/B28359_01/server.111/b28294/log_arch_dest_param.htm#i77472

Oracle 11.2

http://docs.Oracle.com/CD/E14072_01/server.112/e10700/log_arch_dest_param.htm#i77472

Oracle 9

http://docs.Oracle.com/CD/B10501_01/server.920/a96653/log_arch_dest_param.htm#77475

If you set a deadline for a destination which in real time is activated, delay is ignored.

Best regards

mseberg

Tags: Database

Similar Questions

  • I've just loaded 5.6 LR 64 bit on a new PC. When I try to set the preferences, the program crashes. I did a repair without result. Any suggestions; This only happened on the old PC.

    I've just loaded 5.6 LR 64 bit on a new PC. When I try to set the preferences, the program crashes. I did a repair without result. Any suggestions; This only happened on the old PC.

    Tony Davies

    Lightroom crashes when opening preferences | Windows

  • WE set with delay

    Hi guys,.

    I am new to LabView, programming as well. What I need is to control with LabView Arduino microcontroller and is nessessery for my diploma. I tried the solution of my problem here in the forum and all over the web, but I'm a bit confused of all this.

    What I do is when it comes to the TRUE value of the sensor, it sets ON an output pin for a deadline (in ms) and after time is managed by, he sets OFF again. I tried with the elapsed time in While loop, but when he doesn't loop with the time running in the main code loop (all looping in while loop)-> main code signs stops until the loop with the passage of time runs out. It's nessessery for me run the main code all the time without delays stop. IM little in blue, so...

    Help, please.

    Thank you very much.. Hanes


  • Variable setting "Frame Delay" for the animation.

    I try to set time frame in an animation, I train. There are a lot of pictures and they all have different delays. I don't know if the script is the best way, but here's what I have so far (by using VBA because that's what I know): I'm the slightest error at line 23, saying it is a "type mismatch".

    Sub Set_Frame_Delay()
        Dim appPS As Photoshop.Application
        Dim docPS As Photoshop.Document
        Dim NewLay  As Photoshop.ArtLayer
        Dim LaySet As Photoshop.LayerSet
        Dim ref1 As Photoshop.ActionReference
        Dim actPS
        
        
        Set appPS = CreateObject("Photoshop.Application")
        appPS.Visible = True
        
        Set docPS = appPS.ActiveDocument
        Set LaySet = docPS.LayerSets("Text")
        Set ref1 = CreateObject("Photoshop.ActionReference")
        
        
        For Each NewLay In LaySet.ArtLayers
                Select Case NewLay.Name
            
                Case "Test1"
            
                    actPS = ref1.PutName("Frame Delay", 0.540769)
                    NewLay.Application.ExecuteAction (actPS)
            
                Case "Test2"
    
                    actPS = ref1.PutName("Frame Delay", 1.013942)
                   NewLay.Application.ExecuteAction (actPS)
              End Select
          Next NewLay
        
        MsgBox "frame set"
        
     
     
    End Sub
    
    
    

    Yes, Ive used the script before listener, but hoped to avoid because I didn't understand what it spits out. But I think that I fell and I came up with below. I tweeked my original solution to use a text file.

    Sub Set_Frame_Delay3()
        Dim appPS As Photoshop.Application
        Dim ActDescPS1 As Photoshop.ActionDescriptor, ActDescPS2 As Photoshop.ActionDescriptor, ActDescPS3 As Photoshop.ActionDescriptor
        Dim ActRefPS1 As Photoshop.ActionReference, ActRefPS2 As Photoshop.ActionReference
        Dim dialogMode
        Dim idsetd, idnull, idOrdn, idTrgt, idT, idslct
        Dim idAniFrClass, idAniFrDelay
        Dim sFileName As String
    
        Application.ScreenUpdating = False
    
        Set appPS = New Photoshop.Application
        appPS.Visible = True
    
        dialogMode = 3
    
        With appPS
            idsetd = .CharIDToTypeID("setd")
            idnull = .CharIDToTypeID("null")
            idOrdn = .CharIDToTypeID("Ordn")
            idTrgt = .CharIDToTypeID("Trgt")
            idT = .CharIDToTypeID("T   ")
            idslct = .CharIDToTypeID("slct")
            idAniFrClass = .StringIDToTypeID("animationFrameClass")
            idAniFrDelay = .StringIDToTypeID("animationFrameDelay")
        End With
    
        sFileName = Application.GetOpenFilename("Textfiles (*.txt),*.txt", , "Open a textfile...")
        oIndex = 0
    
        iFileNum = FreeFile()
        Open sFileName For Input As iFileNum
        Do While Not EOF(iFileNum)
            oIndex = oIndex + 1
    
            Line Input #iFileNum, oDelay
    
            Set ActDescPS1 = New Photoshop.ActionDescriptor
            Set ActRefPS1 = New Photoshop.ActionReference
    
            ActRefPS1.PutIndex idAniFrClass, oIndex
            ActDescPS1.PutReference idnull, ActRefPS1
            appPS.ExecuteAction idslct, ActDescPS1, dialogMode
    
            Set ActDescPS2 = New Photoshop.ActionDescriptor
            Set ActRefPS2 = New Photoshop.ActionReference
    
            ActRefPS2.PutEnumerated idAniFrClass, idOrdn, idTrgt
            ActDescPS2.PutReference idnull, ActRefPS2
    
            Set ActDescPS3 = New Photoshop.ActionDescriptor
    
            ActDescPS3.PutDouble idAniFrDelay, oDelay
            ActDescPS2.PutObject idT, idAniFrClass, ActDescPS3
            appPS.ExecuteAction idsetd, ActDescPS2, dialogMode
    
            Set ActDescPS1 = Nothing
            Set ActRefPS1 = Nothing
            Set ActDescPS2 = Nothing
            Set ActRefPS2 = Nothing
            Set ActDescPS3 = Nothing
    
        Loop
        Application.ScreenUpdating = True
        Set appPS = Nothing
        MsgBox "Frames Delays have been set!"
    End Sub
    

    The text file must list the hours in seconds in order frames. In case anyone else wants to copy the code. Such as:

    0.916303

    0.826175

    0.660941

    1.374455

  • How can I programmatically set the delay of a feedback node?

    I'm generating a sine wave using the vi simulate Signal Express. I then use a feedback node to delay the signal of a specific amount. The front displays 2 charts: one of the original signal and another of the delayed signal.

    The problem is that I will determine the amount of delay based Boolean user entry rather than having to set by using the configuration box (the time will be 4000 if the user chooses "real" and 2000 if the user chooses "fake". I do this with a box structure. How can I use the delay printed by the case structure to control the delay of feedback node?

    I'm relatively new to Labview, so maybe there is a better way to reach my goal of using a Feedback node. Any ideas are appreciated!

    Take a look at this response, "Is there a period of dynamic for nodes of z comments?"

  • Double hard double disk E: (primary - crashed) and secondary C (ok)

    Windows 7 Home Premium running on a 2 years old PC (bought as a new building about a year ago in a store) and my main boot E: drive freezing randomly upward in recent months. I left all my files drive E: primary on the 2nd drive C: about 2 weeks ago but the primary E: crashed yesterday and now my system does not yet recognize the E: drive.

    My files that I moved in the C: also an error code path E: is not found when I try to open them. I really need to open the way somehow to the files on the 'c: healthy"so I can work with them as I work from home and I can not open my timesheet to send. I can always start and connect to the internet for work etc but Office does not quite straight and all the files that I recorded my mistakes looking for drive E: now. I can say my system to recognize the C: drive as the primary drive?

    I have the new hard drive to install but not sure the restore disc, I created this last weekend will work once I get the new HD and try to start. The disc has showing startup files. In addition, can I still have my Windows 7 from the C: drive "Image" because it has all the files from the E: drive?

    Hello

    Thank you for visiting Microsoft Community.

    I suggest you to post your query on our MSDN Forums , as this issue should be better there.

    Please refer to the reference to the link below to send your request:

    http://social.msdn.Microsoft.com/forums/en-us/home

    Hope this information helps.

  • How to set the delay of frame for an animation in PS?

    I've created an animation I want to convert a gif to put on a Web site. When I put the gif on the Web site and check it out there is a delay of 5 seconds or more before it starts to play. I think it's because of the delay of the frame however it is not obvious to me how I can change the delay in Photoshop. Any advice?

    My apologies for the late reply.

    It turns out I had set the animation to start 6 seconds after that that he had loaded in revolution Slider on the timeline. I put it at the beginning and it worked fine.

    Thanks for your help on this.

  • I don't know why the live monitoring is delayed while recording.

    I don't know why but when I record and I want to hear my voice in the headphones I can hear myself but its delay. I tried to adjust latency on the asio Control Panel, but it makes no difference, please help.

    Don't know what you're asking, but to listen to headphones off the Tascam with no latency, you set my Mix on the Tascam on entry button.

    To listen through the hearing, you set the Mix of my computer and in the multitrack display, you click on the button next to the M, S and R - I button buttons. Between settings latency on the Tascam in Windows Control Panel and settings of the hearing, the latency should be OK. It's here with just the default settings.

    In the Audio preferences of the hearing, material, you must have ASIO as the device class, of course.

    Everything I can reallly say is that it works very well here, so you should be able to sort it out simply enough.

  • Window XP setting after a while

    Nice day

    I work some time on this and I am currently few options.

    Location:

    We have 26 workstations on 1 vlan with a configuration which has been 3 years already. This vlan is new.

    This vlan is connected with fiber optics and well cables some switches. The problem is that if we put jobs there computers are starting to pick up after a while. Some time is completely random and never the all of them but 2 or 3. I mean by wedging is sometimes you see the ntloader starts and sometimes during work on the pc, it takes 5 minutes to start the cmd prompt. But after a while (10 minutes later), it works normally again for a while and start over again.

    I watched the eventviewer there is no significant problem that I see /firewall dns works correctly. Also proc LUN and Explorer of proc and bootvis shows nothing weird. If I place a workstation to a different VLAN in this segment, it slows down after a day, en when I put a machine since the new vlan also it works.

    The computer is not just slow down internet speed that it stalls it looks like everything with hard disk i/o is going slower. And when I restart the machine he can go further or not. Normally, we have speed 68/mbit for download something, but then it breaks down less than 1 MB.

    Someone has an idea that I am using wireshark now for inbound traffic.

    Hello

     
    The question you posted would be better suited in the TechNet Forums. I would recommend posting your query in the TechNet Forums.
     
  • Is there a way to cause (or uncause) your computer to delay while you type. In other words, there is a large gap between when I type and when the characters actually appear.

    My son hit the keyboard and somehow changed the way in which the computer types. There is a long delay before appear it the keys I have tap on the screen. It's a frustrating way to type. Does anyone have an idea if it's a shortcut that I can disable or what other explanation/solution can exist. Thank you.

    Hello

    Power - off wait a few minutes and power on again to allow a full reset.

    There may be a stuck key check so the area where it hit.

    This happens in all such programs as IE, Notepad, WordPad and others?

    I hope this helps.

    Rob - bicycle - Mark Twain said it is good.

  • Problem setting online after a computer crash. Windows Vista

    Dell Inspiron Portable system crash needed re-install of Vista.  1. I have re-installed Vista. 2. no wireless networks were found.  3. in the attempt to solve problems, got the message that "this computer doesn't have an adapter installed & configured wireless.  4. I checked Device Manager and no network device is listed.  It is my understanding that the wireless application is part of the hardware on this computer.  so... I guess I need a wireless driver if there is such a thing.  Any help would be appreciated!

    http://support.Dell.com/support/downloads/index.aspx

    Go to the Dell Web site > drivers and downloads Section > search for your model number > look for the latest Vista drivers > download/install the.

    The computer you are using now if you have an Internet connection with the other > download / save drivers > copy them into Flash Drive > transfer / install on another computer/laptop.

    See you soon.

    Mick Murphy - Microsoft partner

  • Can I set a delay closing down?

    I would like to know if there is any way I can get my laptop to stop saying, an hour from here? I don't want to run all night, but sometimes I fall asleep and I wake up with him still running. It is plugged, it's why he does not die. Is there a way I can put it just to stop at a specific time?

    You can use a scheduled task to run the shutdown.exe command.  Discover the Scheduler of tasks and shutdown.exeand see if it looks like it fits your needs.  You can tell shutdown.exe to shut down the computer in a specified number of minutes, then maybe you don't even have a task scheduled to tell the system to stop at some point - rather, just run the shutdown command when you start working on the computer at night. You can even set up a shortcut to run the program, so you don't have to type the command each time.

  • vo.hasNext is set to false, while getFetchedRowCount is 1

    jdev 11.1.1.6

    In my class impl for my VO (based on the employee table),

    EmpVOImpl vo = (EmpVOImpl) getEmp ();

    vo.setWhereClause ("EMP_ID =" & empId)    EmpID coming as a parameter

    vo.executeQuery ();

    System.out.println ("getFetchedRowCount" + vo.getFetchedRowCount () + "getRowCount" + vo.getRowCount () + "getEstimatedRowCount" + vo.getEstimatedRowCount ());

    System.out.println ("hasNext" + vo.hasNext ());

    The output looks like:

    getFetchedRowCount 1 getRowCount 1 getEstimatedRowCount 1

    fake hasNext

    Even I tried the getQuery and and the query returns 1 row, then why is this false hasNext and vo.next () returns null?

    Note: the view object, that I am using is editable based on an entity object.

    Well, you can do it, but you can also use your first approach. In this case we must change the way in which you request information on the VO. example: in case you are interested or know that there is a defined result line hostel, you check the line about count (as you did) and if there is a line, you use premier() to get it. If there is more than one line, and you want on them that you do not loop

    While (vo.hasNext ())

    but you loop as

    Line = vo.first ();

    While (line! = null) {}

    work with the line

    line = vo.next ();

    }

    Timo

  • set of pages while exporting an article out of InDesign

    Export DPS Article in InDesign:

    Miss me the ability to set the pages I want to export to an article. Today you must export all all of the pages of time. It's on the roadmap? If not, where can I do a feature request.

    Thank you

    Haha

    Hi haha, you use a single InDesign file to create several articles? You have experimented with different layouts in the same InDesign file? That would help with your particular workflow.

    Export of specific page isn't on the roadmap. On the plan where to make a feature request, good question! I don't know actually. But, you've done pretty well just the feature request. :-)

  • Remove the cast/blue tint of JPG (setting the wrong while taking picture white balance)

    Hello

    Photosohop newb here with still CS3 (10.0), so please be patient.

    I was at a convention, there is not so long ago, I took a lot of pictures with my phone. I have noticed that in the House, that some of the photos came out with an intense blue cast because of a bad white balance setting (I must have accidentally changed).

    I tried to fix the image for the last 2 hours, without real success. I tried everything under Image-> settings-> "Auto color", "Levels of colors" and "Match Color", moving the sliders up and down to get the best match. The best I could come up with was still far from the other photos that I took the same day.

    This is one of the bad pictures: http://imgur.com/vw12aTQ

    And here is one I took a few minutes later with the 'normal' setting: http://imgur.com/RMFm7fo

    In fact, I had a pretty good game by cutting stones on the two photos and using "matches the color'-> 'Source', but I couldn't apply this technique to the overview.

    Could someone please help me to make the colors of the first image similar to the second?

    Thank you

    Roland

    Here is an easy solution...

    Choose the Image - adjust - curves, and then right-click the gray Point eyedropper and sample something in the picture that should be a neutral gray - say one of the rocks on the ground.  Click on in various places, until you like what you see.

    -Christmas

Maybe you are looking for

  • My companies site only appears correctly in Internet Explorer compatibility view. Is there a way I can make it work properly in FireFox?

    My small company uses JustHost to host our Web site. Recently, I went to Firefox of Internet Explorer and found that the site is not displayed correctly. I looked back on Internet Explorer and found it was only display correctly on that because of th

  • custom scales

    Is there a way to get custom scales that appear in my Explorer in MAX? Thank you Steve

  • Example of reference for PCIe Data Streaming double 6537 s disc

    Hello world I have successfully changed the example of reference for streaming ( http://zone.ni.com/devzone/cda/epd/p/id/5315 ) for the card PCIe-6537 UNIQUE and able to write to the clock speed of 20 M (at end of initial test) without any error. How

  • Can not play the games?

    Recently I tried to play Left 4 Dead 2 in my laptop with Windows7 as operating system. However, after installation, when I run the game. He says impossible to check DLLs. font. Launcher DLL failed. Is this a problem with Windows7? My brother tried th

  • I can't play CDs or movies.

    I can't play CDs or movies. I used shaker film before but now it does no file.so I tried to do it manually and it said file is missing or damaged. He uses something pioneering and somwething teak for driver