Void VI - given passage

I have a VI that I found online to calculate the heart beats per minute (BPM).

"Monitor.vi of the heart rate.

In another vi, index.vi, I have a large window with many rankings because I want to view all the signals to make my real-time acquisition card:

I would use the "heart rate monitor.vi" to run without showing himself and passes the signal to the index.vi, so I can view it on the map, and also I would like to pass the decimal string of the beats per minute.

In the future, I'll have to do the same thing with the other different signals, so I guess it will be the same way.

Can someone help me please?

If there is an another easier way to do that please tell me, I'm quite new to labview

Hi Simo,

There are number of method to share data between one VI to the other but, as you're new to LabVIEW, I'll tell you a simple method of sharing data between two screws

Step 1: Simply place global variable in "frequency heart monitor.vi", as in the image below.

Step 2: double click on place overall varialbe. By doing so, a window will open.

Step 3: Simply place the graphic "Cardiofrequence-meter" and the BPM indicator in global VI that you want to share data at index.vi and Global.vi to save to your local drive

Step 4: Wire then this variable with "Cardiofréquence-mètre" graphic and the BPM indicator in "frequency heart monitor.vi" (global Varialbe will be in write Mode)

Step 5: Place this global variable (overall Varialbe will be in playback Mode) in index.vi and wired it to one of your graph on the front panel.

Step 6: "" After completing this process, you will need to put "frequency heart monitor.vi ' in index.vi and then run parellely" monitor.vi of heart rate "will also take place and share the BPM data to index.vi.

Note: By doing so youhave to also share stop condition to your "pace heart monitor.vi" index.vi in the same way, then you can stop the two vi at once otherwise "frequency heart monitor.vi" will not stop and index.vi will remain in the mode of enforcement only.

If you still have any other question please email me.

Tags: NI Software

Similar Questions

  • InputFile value lost after the validation fires

    Hi all

    I use Jdeveloper 11.1.1.5.
    I have a date. MinValue, InputFile and a commandButton control.

    Requirement: -.
    1. the user will select the file using the InputFile component, and then he clicks the command button to process the file.
    2. but if the date value. MinValue is null, the system will display an error message that the value of Date entry is necessary. (Note:-c' is just an example, the scenario real business contains a complex logic here).
    3. If the value is available in date. MinValue, the system will process the file.

    Now the problem is that if the user selects the file & directly click on the button, then as the component date. MinValue does not contain a value, it will show a mssage error, but at the same time the inputFile changes through update.
    Now, if the user selects a value in the date, and then he clicks the button, the value of inputFile in my managed bean will be void. Given that the user is nt going to browse the file again. In any case, there should be a way to get the value of the inputFile.

    This is my code jspx: -.
    < af:form id = "f1" usesUpload = "true" binding = "#{backingBeanScope.PanelSplitterBean.f1}" >
    < af:inputDate label = "Label 1" id = "id1" binding="#{backingBeanScope.PanelSplitterBean.id1}"/ >
    < af:commandButton text = "commandButton 1" id = "cb1" action ="#{backingBeanScope.PanelSplitterBean.executeFile} '"
    partialSubmit = "true" binding="#{backingBeanScope.PanelSplitterBean.cb1}"/ >
    < af:inputFile label = "Label 1"id = "if1' valueChangeListener =" #{backingBeanScope.PanelSplitterBean.getFile} ".
    Binding="#{backingBeanScope.PanelSplitterBean.IF1}"/ >
    < / af:form >

    This is my bean managed code: -.
    file UploadedFile private;
    private text RichInputText;
    private RichInputFile if1.
    private RichCommandButton cb1;
    private RichInputDate id1;
    private RichForm f1;
    private RichMessages m1;
    private RichDocument d1;
    private UploadedFile fo;

    {} public void getFile (ValueChangeEvent valueChangeEvent)
    Add the code in the event here...
    file = (UploadedFile) valueChangeEvent.getNewValue ();
    }

    public String executeFile() {}
    Add the code in the event here...
    try {}
    Here, it may be any postings business logic
    {if (ID1. GetValue () is nothing)}
    FacesContext.getCurrentInstance () .addMessage (id1.getClientId (FacesContext.getCurrentInstance ()),
    new FacesMessage (FacesMessage.SEVERITY_ERROR,
    "The date is requested."
    "Please enter date"));

    }
    else {}
    Gets the file with the null value if the validation of Date fires once.
    System.out.println (file. GetFilename()); +
    }
    Returns a null value.


    } catch (Exception e) {}
    TODO: Add catch code
    e.printStackTrace ();
    }
    Returns a null value.
    }


    Why the value of the file takes the value zero, if validation is triggered. Because either way, the user will fix the error and then click the command button? This point of time, that value will be nil in the object file.
    Is it possible to keep the inputFile value?

    Please think!

    Kind regards
    Shah

    Well, look more closely your still not formatted code shows you use support beanScope to store the value of the downloaded file. Problem is that after clicking on the button, the bean is killed and (now empty a new) is created. A reason to get rid of the link moer automatic usles in a bean!
    You should take a look at https://blogs.oracle.com/groundside/entry/the_uimanager_pattern and store the values in a uiManager bean that you inject into the bean application scope that manage you the logic.
    I used a xxyyzz bean in the scope of the application to manage the logic

    
    private static ADFLogger _logger = ADFLogger.createADFLogger(Xxyyzz.class); 
    
       public String handleUpload() {
            //Here it can be any business logic validations
            if (getUiManager().getUser() != null && !getUiManager().getUser().isEmpty()) {
                //Gets the file as null if the validation of Date is being triggered once.
                String name = getUiManager().getFile().getFilename();
                _logger.info("Information" + name);
            } else {
                FacesContext.getCurrentInstance().addMessage("it1", new FacesMessage(FacesMessage.SEVERITY_ERROR, "Input is required", "Please enter data"));
            }
            return null;
        } 
    
        public void handleGetFile(ValueChangeEvent valueChangeEvent) {
            getUiManager().setFile((UploadedFile)valueChangeEvent.getNewValue());
        } 
    
        public void setUiManager(UIManager _uiManager) {
            this._uiManager = _uiManager;
        } 
    
        public UIManager getUiManager() {
            return _uiManager;
        } 
    

    the uiManager bean

    
    import org.apache.myfaces.trinidad.model.UploadedFile; 
    
    public class UIManager {
        private UploadedFile file;
        private String user;
        public UIManager() {
            super();
        } 
    
        public void setFile(UploadedFile file) {
            this.file = file;
        } 
    
        public UploadedFile getFile() {
            return file;
        } 
    
        public void setUser(String user) {
            this.user = user;
        } 
    
        public String getUser() {
            return user;
        }
    } 
    

    and the code page of the user interface

    
    
                    
                    
                    
                   
    

    The installation program of the bean in faces-config. XML

    
    
        uiManager
        de.hahn.xxyyzz.UIManager<;/managed-bean-class>
        session
       
    

    the injection into the bean xxyyzz

    
      
        xxyyzz
        de.hahn.xxyyzz.Xxyyzz<;/managed-bean-class>
        request
        
          uiManager
          de.hahn.xxyyzz.UIManager<;/property-class>
          #{uiManager}
        
       
    

    So your use case works as you expect.

    Timo

  • Void string formula during the passage of several values of variable presentation

    Dear all,

    I have a scenario where I will get one or more presentation variable values, and each value should create a separate chart where each graph should filtered by a single value.

    For example: If suppose that my presentation of the values of variable passing as below.

    IN ("ASTON MARTIN", "KIA", "PEUGEOT", "DACIA")

    Then I should get four chart:

    as the first chart report filtered by ASTON MARTIN

    as the second chart report filtered by KIA

    as the third graphic report filtered by PEUGEOT

    as the fourth graphic report filtered by DACIA.

    Kindly help me out here.

    Thank you

    In your non-text expression expression may be only "Dim MBV CSD". "' @{RF1} {Lk Veh Vehiclemake}.

    Then

    LOCATE(',' || cast("Dim MBV CSD"."@{RF1}{Lk Veh Vehiclemake}"as varchar(1000)) || ',',  ',' || '@{L1}{FIAT,FORD}' || ',') >0
    

    PS

    But in this column (if is not text) you'll never find values 'FIAT', 'FORD' etc.

    Make sure that your model and reports are correct.

  • Given that I have updated to FireFox 9 all link icons disappeared

    Mac OS 10.6.8
    FireFox 9
    Given that I have updated to FireFox 9 all link icons have disappeared.

    P.S. Workaround is given in the comment 705516 bug 11.

    (Copied from a post of Verdi in another thread)

    This is a bug in Firefox 9. Here is how to fix until we have to fix:

    1. In the address bar, type about: config and press on return.

      • The subject: config "This might void your warranty!" warning page may appear. #Click I'll be careful, I promise!, to continue on the subject: config page.
    2. In the filter section type, image.mem.decodeondraw
    3. Double-click the entry that results to change its value to "False".
    https://support.mozilla.com/en-US/kb/latest-firefox-issues#w_icons-missing-in-the-bookmarks-menu
    
  • Envy 15 K2T37AV: Replace digitizer for Envy 15-Instructions and void the warranty?

    I dropped my computer a few days ago from cracking of the digitizer, but not the LCD screen. The display still works, and I'm debating whether to pay to fix it or just do it myself or ask at a local store to do. My questions are:

    (1) do I have to dissect your laptop to replace the digitizer, or y at - it a simple way to just pull the digitizer off the LCD display and replace it?

    (2) in doing so void my warranty? Especially if I don't really have to unscrew anything, and given that the display is not covered by the warranty anyway, if it voids the warranty on everything else?

    (3) if I go with it, what is the model number of the digitizer and are there instructions I could follow?

    Thank you in advance!

    Hi there @chaimss,

    Welcome to the Forums of HP Support! It's a good place to find the help you need, other users, the HP experts and other members of the support staff. I understand that you have a problem with your Envy15. I'll be happy to help you.

    Here is the HP ENVY 17 Notebook PC HP ENVY 15 Notebook PC HP ENVY Notebook PC - Maintenance and Service Guide of m7.

    Pages 47-55 is a list of parts for the screen and how to remove.

    HP has continually enhances and modifies the components of the product. For complete information and up to date on
    support for parts for your computer, HP Partsurfer , select your country or region, and then
    Follow the on-screen instructions.

    Please use the following http://www.hp.com/contacthp and create a folder for your question and contact HP. If you do not live in the United States / Canada, please click on the link below to get contact information for your region.

    http://WWW8.HP.com/us/en/contact-HP/WW-phone-assist.html

    Thank you for your participation in the Forums of HP where we want to help you as well as others who may encounter a similar problem that you have. Please consider tagging the post in order to resolve your problem as "Accept as Solution" to help other members of the community! To show recognition for my efforts please click the Thumbs Up below. Thank you.

  • Passage of custody of data with broker fails with ORA-16570 / ORA-16665

    I'm using Data Guard 11 g on Windows Server 2012 64 Bit. Recently, I have configured the broker to manage the permutations more uncomfortable.

    Unfortunately the digital switchover does not work. Broker Setup seems fine, since I can activate t and redo apply works perfectly...

    Now, the behavior is as follows... Once I put the passage through brokers, it shows the following:

    DGMGRL > passage to the smart_stb

    Continue to pass, please wait...

    Error: ORA-16665: wait for the result of a database

    Failed.

    Unable to failover, primary database is always "smart".

    The digital switchover happens, there is no restart of the primary database well! Does not appear to be linked to a DGMGRL buggy service entrance. In fact the database will not yet descended. The principal is supending all processes while trying to do so. Broker runs into a timeout, of course, but the principal remains in a State of supending. The primary doesn't seem to be able to cominicate with side standby or vice versa. Which is strange since the restoration of log shipping and apply is workng fine as mentioned... do a manual failover. I don't know what could cause this kind of behavior... Double checked everything. Once I restart the two databases and align on the rule of law that the digital transition is complete. But Needless to say that it is not intending to use the broker...

    Primary DRC.log States the following:

    2014-09-10 746441090-02000000 MICHAEL 09:13:01.378: PASSAGE to smart_stb

    2014-09-10 746441090-02000000 MICHAEL 09:13:01.378: start execution of the task: the DIGITAL switchover

    2014-09-10 09:13:01.378 NSV1: using RFIUPI_DGCI_CDESC

    2014-09-10 09:13:01.409 NSV1: using RFIUPI_DGCI_CDESC

    2014-09-10 09:13:01.409 02001000 746441090 notifier Oracle Clusterware to the primary database of disassembly for the DIGITAL switchover

    2014-09-10 09:13:01.425 ACLS: not configured CRS, config = 2

    .

    2014 09-10 02001000 746441090 MICHAEL 09:13:01.425: display primary instances for PASSAGE of phase 1

    2014 09-10 02001000 746441090 MICHAEL 09:13:01.425: State of rfi_post_instances() for CTL_SWITCH = ORA-00000

    2014-09-10 09:13:01.425 INSV: message received for publication of inter - the instance

    2014 09-10 02001000 746441090 MICHAEL 09:13:01.425: dispersants message to STANDBY for TRANSITION phase BEGIN

    2014-09-10 09:13:01.425 req ID 1.1.746441090, CTL_SWITCH opcode, phase BEGIN, 5 flags

    2014-09-10 09:13:01.425 NSV1: using RFIUPI_DB_INST_CDESC

    2014 09-10 02001000 746441090 MICHAEL 09:13:01.425: entered rfmsoexinst() for phase BEGIN

    2014-09-10 09:13:01.425 INSV: response for message with

    2014-09-10 09:13:01.425 req ID 1.1.746441090, CTL_SWITCH opcode, phase BEGIN

    2014 09-10 02001000 746441090 MICHAEL 09:13:01.425: primary instances display for transition to THE phase 2

    2014 09-10 02001000 746441090 MICHAEL 09:13:01.440: State of rfi_post_instances() for CTL_SWITCH = ORA-00000

    2014-09-10 09:13:01.440 INSV: message received for publication of inter - the instance

    2014 09-10 02001000 746441090 MICHAEL 09:13:01.440: dispersants message to STANDBY for transition to THE phase of DISMANTLING

    2014-09-10 09:13:01.440 req ID 1.1.746441090, opcode CTL_SWITCH, disassembling, 5 flags

    2014 09-10 02001000 746441090 MICHAEL 09:13:01.440: entered rfmsoexinst() for disassembling

    2014-09-10 09:13:01.440 RSM0: received the State value ask: rid = 0 x 01041001, sid = 0, phid = 1, econd = 2, sitehndl = 0 x 02001000

    2014-09-10 09:13:01.440 Log transport resources: SetState OFFLINE, DISASSEMBLY phase, external Cond SWITCH-OVER-PHYS_STBY

    2014-09-10 09:13:01.440 RSM0: received the State value ask: rid = 0 x 01011001, sid = 4, phid = 1, econd = 2, sitehndl = 0 x 02001000

    2014-09-10 09:13:01.440 of database Resource [IAM = PRIMARY]: 0 x 02001000 SetState PHYSICAL-APPLY-ON, DISASSEMBLY phase, external Cond SWITCH-OVER-PHYS_STBY, handful of Site target

    2014-09-10 09:13:01.440 RSM0: execution of SQL [ALTER DATABASE COMMIT to SWITCH STANDBY mode PHYSICS WITH the STOP of the SESSION]

    2014-09-10 09:13:06.630 SQL [ALTER DATABASE COMMETTRE at PHYSICS CROSSING SHALL WITH SESSION SHUTDOWN] executed successfully

    2014-09-10 09:13:06.630 RSM: compensation IncarnationTable internal property of the site 0 x 01010000

    2014 09-10 02001000 746441090 MICHAEL 09:13:06.630: Broker determines this restart of the instance is necessary: operation = status = ORA-16570

    2014 09-10 02001000 746441090 09:13:06.630 resources: smart (01011001) State: PHYSICAL-APPLY-ON

    2014-09-10 09:13:06.630 INSV: response for message with

    2014-09-10 09:13:06.630 req ID 1.1.746441090, CTL_SWITCH, disassembling opcode

    2014 09-10 02001000 746441090 MICHAEL 09:13:06.630: Instance 'smart' (ID 1) returned ORA-16570

    2014-09-10 09:13:06.630 02001000 746441090 for disassembling of the CTL_SWITCH operation

    2014-09-10 09:13:06.646 NSV1: using RFIUPI_DGCI_CDESC

    2014 09-10 02001000 746441090 MICHAEL 09:13:06.646: primary instances display for transition to THE phase 2

    2014-09-10 09:13:06.646 INSV: message received for publication of inter - the instance

    2014 09-10 02001000 746441090 MICHAEL 09:13:06.646: State of rfi_post_instances() for CTL_SWITCH = ORA-00000

    2014-09-10 09:13:06.646 req ID 1.1.746441090, opcode CTL_SWITCH, disassembling, 5 flags

    2014 09-10 02001000 746441090 MICHAEL 09:13:06.646: dispersants message to STANDBY for transition to THE phase of DISMANTLING

    2014 09-10 02001000 746441090 MICHAEL 09:13:06.646: entered rfmsoexinst() for disassembling

    2014-09-10 09:13:06.646 NSV1: using RFIUPI_DB_INST_CDESC

    2014-09-10 09:13:06.646 INSV: response for message with

    2014-09-10 09:13:06.646 req ID 1.1.746441090, CTL_SWITCH, disassembling opcode

    2014 09-10 02001000 746441090 MICHAEL 09:13:06.646: Instance 'smart' (ID 1) returned ORA-16570

    2014-09-10 09:13:06.646 02001000 746441090 for disassembling of the CTL_SWITCH operation

    2014-09-10 09:13:28.619 NSV1: using RFIUPI_DB_INST_CDESC

    2014-09-10 09:13:28.619 NSV1: smart_stb returned ORA-16665 Site.

    2014-09-10 09:13:43.620 NSV1: using RFIUPI_DB_INST_CDESC

    2014-09-10 09:13:43.620 NSV1: smart_stb returned ORA-16665 Site.

    2014-09-10 09:13:58.639 NSV1: using RFIUPI_DB_INST_CDESC

    2014-09-10 09:13:58.639 NSV1: smart_stb returned ORA-16665 Site.

    2014-09-10 09:14:13.657 NSV1: using RFIUPI_DB_INST_CDESC

    2014-09-10 09:14:13.657 NSV1: smart_stb returned ORA-16665 Site.

    2014-09-10 09:14:28.674 NSV1: using RFIUPI_DB_INST_CDESC

    2014-09-10 09:14:28.674 NSV1: smart_stb returned ORA-16665 Site.

    2014-09-10 09:14:43.676 NSV1: using RFIUPI_DB_INST_CDESC

    2014-09-10 09:14:43.676 NSV1: smart_stb returned ORA-16665 Site.

    2014-09-10 09:14:58.693 NSV1: using RFIUPI_DB_INST_CDESC

    2014-09-10 09:14:58.693 NSV1: smart_stb returned ORA-16665 Site.

    2014-09-10 09:15:13.695 NSV1: using RFIUPI_DB_INST_CDESC

    2014-09-10 09:15:13.695 NSV1: smart_stb returned ORA-16665 Site.

    2014-09-10 09:15:28.707 NSV1: using RFIUPI_DB_INST_CDESC

    2014-09-10 09:15:28.707 NSV1: smart_stb returned ORA-16665 Site.

    2014-09-10 09:15:43.724 NSV1: using RFIUPI_DB_INST_CDESC

    2014-09-10 09:15:43.724 NSV1: smart_stb returned ORA-16665 Site.

    2014-09-10 09:15:58.726 NSV1: using RFIUPI_DB_INST_CDESC

    2014-09-10 09:15:58.726 NSV1: smart_stb returned ORA-16665 Site.

    2014-09-10 09:16:13.727 NSV1: using RFIUPI_DB_INST_CDESC

    2014-09-10 09:16:13.727 NSV1: smart_stb returned ORA-16665 Site.

    2014 09-10 02001000 746441090 MICHAEL 09:16:28.729: database smart_stb returned ORA-16665

    2014-09-10 09:16:28.729 02001000 746441090 opcode = CTL_SWITCH, phase = DISASSEMBLY, req_id = 1.1.746441090

    2014-09-10 09:16:28.729 02001000 746441090 CTL_SWITCH operation cancelled during phase 2, error = ORA-16665

    2014 09-10 02001000 746441090 MICHAEL 09:16:28.729: ORA-16665 stateful failover operation failed

    2014-09-10 09:16:28.729 NSV1: using RFIUPI_DGCI_CDESC

    2014 09-10 02001000 746441090 MICHAEL 09:16:28.744: display primary instances for PASSAGE of phase 5

    2014-09-10 09:16:28.744 INSV: message received for publication of inter - the instance

    2014 09-10 02001000 746441090 MICHAEL 09:16:28.744: State of rfi_post_instances() for CTL_SWITCH = ORA-00000

    2014-09-10 09:16:28.744 req ID 1.1.746441090, CTL_SWITCH opcode, phase END, 5 flags

    2014 09-10 02001000 746441090 MICHAEL 09:16:28.744: passage to the aborted due to errors

    2014 09-10 02001000 746441090 named Site 09:16:28.744: smart is always primary school

    2014 09-10 02001000 746441090 error 09:16:28.744 = ORA-16665

    DRC.log Eve shows the following:

    2014-09-10 09:13:01.352 02001000 746441090 notify Oracle Clusterware base ensures target disassembly of passing data to the

    2014-09-10 09:13:01.367 ACLS: not configured CRS, config = 2

    .

    2014 09-10 02001000 746441090 MICHAEL 09:13:01.367: display of bodies sleep for transition to THE phase 1

    2014-09-10 09:13:01.367 INSV: message received for publication of inter - the instance

    2014-09-10 09:13:01.367 req ID 1.1.746441090, CTL_SWITCH opcode, phase BEGIN, 5 flags

    2014 09-10 02001000 746441090 MICHAEL 09:13:01.367: entered rfmsoexinst() for phase BEGIN

    2014-09-10 09:13:01.367 INSV: response for message with

    2014-09-10 09:13:01.367 req ID 1.1.746441090, CTL_SWITCH opcode, phase BEGIN

    2014 09-10 02001000 746441090 MICHAEL 09:13:01.367: entered rfm_release_chief_lock() for CTL_SWITCH

    2014 09-10 02001000 746441090 MICHAEL 09:13:06.571: entered rfm_get_chief_lock() for CTL_SWITCH, reason 0

    2014 09-10 02001000 746441090 MICHAEL 09:13:06.571: start execution of the task: the DIGITAL switchover

    2014 09-10 02001000 746441090 MICHAEL 09:13:06.586: display of bodies sleep for transition to THE phase 2

    2014-09-10 09:13:06.586 INSV: message received for publication of inter - the instance

    2014-09-10 09:13:06.586 req ID 1.1.746441090, opcode CTL_SWITCH, disassembling, 5 flags

    2014 09-10 02001000 746441090 MICHAEL 09:13:06.586: entered rfmsoexinst() for disassembling

    2014-09-10 09:13:06.586 RSM0: received the State value ask: rid = 0 x 02031001, sid = 0, phid = 1, econd = 2, sitehndl = 0 x 02001000

    2014-09-10 09:13:06.586 redo apply the resource: SetState OFFLINE, DISASSEMBLY phase, external Cond SWITCH-OVER-PHYS_STBY

    2014-09-10 09:13:06.586 RSM0: received the State value ask: rid = 0 x 02012001, sid = 9, phid = 1, econd = 2, sitehndl = 0 x 02001000

    2014-09-10 09:13:06.586 of database Resource [IAM = PHYSICS]: handle target SetState-READ-WRITE-XPTON Site, DISMANTLING phase, external SWITCH-OVER-PHYS_STBY, 0 x 02001000 Cond

    2014-09-10 09:13:06.586 RSM0: execution of SQL [ALTER DATABASE RECOVER MANAGED STANDBY DATABASE CANCEL]

    2014-09-10 09:13:07.602 SQL [ALTER DATABASE RECOVER MANAGED STANDBY DATABASE CANCEL] executed successfully

    2014-09-10 09:13:07.711 RSM0: execution of SQL [ALTER DATABASE RECOVER MANAGED STANDBY DATABASE through FINAL passage to THE NODELAY]

    2014-09-10 09:13:09.509 SQL [ALTER DATABASE RECOVER MANAGED STANDBY DATABASE BY LAST crossing THE NODELAY] executed successfully

    2014-09-10 09:13:09.509 RSM0: execution of SQL [ALTER DATABASE COMMIT to SWITCHING to the MAIN WAITING WITH the STOP of the SESSION]

    2014-09-10 09:13:11.345 SQL [ALTER DATABASE COMMETTRE to TRANSITION to PRIMARY WAIT WITH SESSION SHUTDOWN] executed successfully

    2014-09-10 09:13:11.345 of database Resource successful SetState

    2014-09-10 09:13:11.345 INSV: response for message with

    2014-09-10 09:13:11.345 req ID 1.1.746441090, CTL_SWITCH, disassembling opcode

    2014 09-10 02001000 746441090 MICHAEL 09:13:11.345: entered rfm_release_chief_lock() for CTL_SWITCH

    2014-09-10 09:13:28.555 drcx: found the task req_id = 1.1.746441090, PROBE, but the phase is carried out

    2014-09-10 09:13:43.555 drcx: found the task req_id = 1.1.746441090, PROBE, but the phase is carried out

    2014-09-10 09:13:58.571 drcx: found the task req_id = 1.1.746441090, PROBE, but the phase is carried out

    2014-09-10 09:14:13.590 drcx: found the task req_id = 1.1.746441090, PROBE, but the phase is carried out

    2014-09-10 09:14:28.605 drcx: found the task req_id = 1.1.746441090, PROBE, but the phase is carried out

    2014-09-10 09:14:43.606 drcx: found the task req_id = 1.1.746441090, PROBE, but the phase is carried out

    2014-09-10 09:14:58.622 drcx: found the task req_id = 1.1.746441090, PROBE, but the phase is carried out

    2014-09-10 09:15:13.625 drcx: found the task req_id = 1.1.746441090, PROBE, but the phase is carried out

    2014-09-10 09:15:28.641 drcx: found the task req_id = 1.1.746441090, PROBE, but the phase is carried out

    2014-09-10 09:15:43.646 drcx: found the task req_id = 1.1.746441090, PROBE, but the phase is carried out

    2014-09-10 09:15:58.652 drcx: found the task req_id = 1.1.746441090, PROBE, but the phase is carried out

    2014-09-10 09:16:13.653 drcx: found the task req_id = 1.1.746441090, PROBE, but the phase is carried out

    2014 09-10 02001000 746441090 MICHAEL 09:16:27.606: Data Guard Broker ending NSV0, timed out waiting for a response from the smart database

    2014 09-10 02001000 746441090 MICHAEL 09:16:27.825: smart database returned ORA-16662

    2014-09-10 09:16:27.825 02001000 746441090 opcode = CTL_SWITCH, phase = RESYNCHRONIZATION, req_id = 1.1.746441090

    2014 09-10 02001000 746441090 MICHAEL 09:16:42.840: Data Guard Broker ending NSV0, timed out waiting for a response from the smart database

    2014 09-10 02001000 746441090 MICHAEL 09:16:42.840: smart database returned ORA-16662

    2014-09-10 09:16:42.840 02001000 746441090 opcode = CTL_SWITCH, phase = RESYNCHRONIZATION, req_id = 1.1.746441090

    2014 09-10 02001000 746441090 MICHAEL 09:16:57.861: Data Guard Broker ending NSV0, timed out waiting for a response from the smart database

    2014 09-10 02001000 746441090 MICHAEL 09:16:57.861: smart database returned ORA-16662

    2014-09-10 09:16:57.861 02001000 746441090 opcode = CTL_SWITCH, phase = RESYNCHRONIZATION, req_id = 1.1.746441090

    2014-09-10 09:16:58.705 746441091 00001000 MICHAEL: entered rfm_get_chief_lock() for HEALTH_CHECK, reason 0

    2014-09-10 09:16:58.705 746441091 00001000 MICHAEL: task to free the 1.1.746441090 orphans, opcode = CTL_SWITCH.

    2014-09-10 09:16:58.705 746441091 00001000 MICHAEL: start the task execution: automated healthcheck

    2014-09-10 09:16:58.720 746441091 00001000 MICHAEL: start-up of the health check

    2014-09-10 09:16:58.720 INSV: message received for publication of inter - the instance

    2014-09-10 09:16:58.720 746441091 00001000 MICHAEL: rfi_post_instances() status = ORA-00000

    2014-09-10 09:16:58.720 req ID 1.1.746441091, HEALTH_CHECK opcode, phase BEGIN, 5 flags

    2014 09-10 00000000 746441091 MICHAEL 09:16:58.720: entered rfmhcexinst

    2014 09-10 00000000 746441091 MICHAEL 09:16:58.720: rfmhcexinst call transfer

    2014-09-10 09:16:58.720 RSM0: receipt get status request: rid = 0 x 02012001, sid = 4

    2014-09-10 09:16:58.720 RSM0: HEALTH CHECK ERROR: ORA-16816: incorrect database role

    2014-09-10 09:16:58.720 WARNING: given RCS 281474976710655 with resetlogs_id = 851952614 is less than resetlogs_change # 744657 of the incarnation.

    2014-09-10 09:16:58.736 current IncarnationTable value is:

    2014-09-10 09:16:58.736 2,744657,851952614,1, * 851351631, 1, 1, 0, #.

    2014-09-10 09:16:58.736 RSM0: HEALTH CHECK ERROR: ORA-16700: the standby database has diverged from the primary database

    2014-09-10 09:16:58.970 00000000 746441091 HEALTH_CHECK operation cancelled during phase 1, error = ORA-16810

    2014-09-10 09:16:58.970 RSM0: receipt get status request: rid = 0 x 02031001, sid = 1

    2014-09-10 09:16:58.970 00000000 746441091 MICHAEL: standby Instance completed the health check

    2014-09-10 09:16:58.970 INSV: response for message with

    2014-09-10 09:16:58.970 req ID 1.1.746441091, HEALTH_CHECK opcode, phase BEGIN

    2014-09-10 09:16:58.970 MICHAEL: HEALTH CHECK ERROR: ORA-16766: redo apply is stopped

    2014-09-10 09:16:58.970 MICHAEL: aggregation based on H/C, db 0 x 02001000 has gravity = 16501, status = 16810

    2014-09-10 09:16:58.970 00000000 746441091 HEALTH_CHECK operation cancelled during phase 1, error = ORA-16810

    2014-09-10 09:16:58.970 INSV: message received for publication of inter - the instance

    2014-09-10 09:16:58.970 req ID 1.1.746441091, HEALTH_CHECK opcode, phase BEGIN, flags 20005

    2014-09-10 09:16:58.970 MICHAEL: aggregation based on H/C, db 0 x 02001000 has gravity = 16501, status = 16810

    2014-09-10 09:16:58.970 INSV: response for message with

    2014-09-10 09:16:58.970 req ID 1.1.746441091, HEALTH_CHECK opcode, phase BEGIN

    2014 09-10 00000000 746441091 MICHAEL 09:17:02.017: entered rfm_release_chief_lock() for HEALTH_CHECK

    2014-09-10 09:17:13.724 drcx: task req_id is not found = 1.1.746441091 for PROBE.

    2014-09-10 09:17:28.730 drcx: task req_id is not found = 1.1.746441091 for PROBE.

    Primary alert.log indicates the following:

    LNS: Standby redo log file selected for thread 1 sequence 12046 for destination LOG_ARCHIVE_DEST_2

    My Nov 10 09:13:01, 2014

    ALTER DATABASE COMMIT TO SWITCH STANDBY MODE PHYSICS WITH THE STOP OF THE SESSION

    My Nov 10 09:13:01, 2014

    Thread 1 Advanced to record the sequence 12047 (switch LGWR)

    Currently Journal # 2 seq # 12047 mem # 0: X:\SMART\LOG1\SMART_21.LOG

    Currently Journal # 2 seq # 12047 mem # 1: Y:\SMART\LOG2\SMART_22.LOG

    Stop background QMNC process

    My Nov 10 09:13:01, 2014

    Arc1: Evaluating archive log 1 thread 1 sequence 12046

    CLOSING: kill the server sessions.

    Program 'SYSTEM' of active processes 15708 user ' ORACLE. EXE (W000)"

    Program 'SYSTEM' of active processes 15708 user ' ORACLE. EXE (W000)"

    Program 'SYSTEM' of active processes 13372 user ' ORACLE. EXE (W001)"

    Program 'SYSTEM' of active processes 13372 user ' ORACLE. EXE (W001)"

    Program 'SYSTEM' of active processes 15708 user ' ORACLE. EXE (W000)"

    Program 'SYSTEM' of active processes 15708 user ' ORACLE. EXE (W000)"

    Program 'SYSTEM' of active processes 13372 user ' ORACLE. EXE (W001)"

    Program 'SYSTEM' of active processes 13372 user ' ORACLE. EXE (W001)"

    Program 'SYSTEM' of active processes 15708 user ' ORACLE. EXE (W000)"

    Program 'SYSTEM' of active processes 15708 user ' ORACLE. EXE (W000)"

    Program 'SYSTEM' of active processes 13372 user ' ORACLE. EXE (W001)"

    Program 'SYSTEM' of active processes 13372 user ' ORACLE. EXE (W001)"

    Program 'SYSTEM' of active processes 15708 user ' ORACLE. EXE (W000)"

    Program 'SYSTEM' of active processes 15708 user ' ORACLE. EXE (W000)"

    Program 'SYSTEM' of active processes 13372 user ' ORACLE. EXE (W001)"

    Program 'SYSTEM' of active processes 13372 user ' ORACLE. EXE (W001)"

    Program 'SYSTEM' of active processes 15708 user ' ORACLE. EXE (W000)"

    Program 'SYSTEM' of active processes 15708 user ' ORACLE. EXE (W000)"

    Program 'SYSTEM' of active processes 13372 user ' ORACLE. EXE (W001)"

    Program 'SYSTEM' of active processes 13372 user ' ORACLE. EXE (W001)"

    Program 'SYSTEM' of active processes 15708 user ' ORACLE. EXE (W000)"

    Program 'SYSTEM' of active processes 15708 user ' ORACLE. EXE (W000)"

    Program 'SYSTEM' of active processes 13372 user ' ORACLE. EXE (W001)"

    Program 'SYSTEM' of active processes 13372 user ' ORACLE. EXE (W001)"

    CLOSED: all the closing of sessions successfully.

    krss_find_arc: selection ARC2 to receive the message as a last resort

    Waiting for all non-current archive ORLs...

    Waiting for thread 1 sequence 12046 ORL to archive...

    My Nov 10 09:13:02 2014

    Arc0: Assessment of 1 thread 1 sequence 12046 log archives

    My Nov 10 09:13:02 2014

    ARC2: Evaluating archive log 1 thread 1 sequence 12046

    Arc0: Unable to archive the thread 1 sequence 12046

    Newspapers archived by another process

    ARC2: Impossible to archive the thread 1 sequence 12046

    Newspapers archived by another process

    Involved the creation of the archivelog 'W:\SMART\ARC\SMART_12046_1_851952614.ARC '.

    Archived journal 19372 extra for each sequence 1 12046 0xab72f94c dest ID thread entry 1:

    ENT for thread 1 12046 sequence have been archived...

    All non-current ORLs have been archived.

    Waiting for all FAL entries to archive...

    All FAL entries were archived.

    Waiting for dest_id 2 can be synchronized...

    OCISessionBegin with PasswordVerifier succeeded

    Client pid [12320] annexed to the RFS pid [3648] number of the remote instance [1] to dest "smart_dg_stb."

    Physical passage target Active, synchronized sleep has been identified

    Transition to the end-of-Redo Log thread 1 sequence 12047 has been fixed

    The digital switchover: primary YVERT seen above the value 0x0.0x22345d2

    ARCH: Noswitch of archiving the thread 1, sequence 12047

    ARCH: End-of-Redo archive thread 1 sequence 12047 branch

    ARCH: Evaluating archive log 2 thread 1 sequence 12047

    ARCH: LGWR is actively archiving destination LOG_ARCHIVE_DEST_2

    ARCH: Transmitting the activation 0xab72f94c ID

    OCISessionBegin with PasswordVerifier succeeded

    Client pid [12244] annexed to the RFS pid [9972] number of the remote instance [1] to dest "smart_dg_stb."

    ARCH: Standby redo log file selected for thread 1 sequence 12047 for destination LOG_ARCHIVE_DEST_2

    Involved the creation of the archivelog 'W:\SMART\ARC\SMART_12047_1_851952614.ARC '.

    Archived journal 19373 extra for each sequence 1 12047 0xab72f94c dest ID thread entry 1:

    Archived journal 19374 extra for each sequence 1 12047 0xab72f94c dest ID thread entry 2:

    ARCH: Archiving is disabled due to the current archive log file

    Primary will check some generator of target of receiving of alls again

    Final inspection for a target standby synchronized. Verification will be made once.

    ARCH: Transmitting the activation 0xab72f94c ID

    LOG_ARCHIVE_DEST_2 is a potential target of the transition to physical standby

    Active, synchronized target has been identified

    Target has received also redo all the

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

    |          Target the waking state.

    | LOG_ARCHIVE_DEST_1: NO ACTIVE |

    | LOG_ARCHIVE_DEST_2: RECEIVED ALL DATA.

    | LOG_ARCHIVE_DEST_3: NO ACTIVE |

    | LOG_ARCHIVE_DEST_4: NO ACTIVE |

    | LOG_ARCHIVE_DEST_5: NO ACTIVE |

    | LOG_ARCHIVE_DEST_6: NO ACTIVE |

    | LOG_ARCHIVE_DEST_7: NO ACTIVE |

    | LOG_ARCHIVE_DEST_8: NO ACTIVE |

    | LOG_ARCHIVE_DEST_9: NO ACTIVE |

    | LOG_ARCHIVE_DEST_10: NO ACTIVE |

    | LOG_ARCHIVE_DEST_11: NO ACTIVE |

    | LOG_ARCHIVE_DEST_12: NO ACTIVE |

    | LOG_ARCHIVE_DEST_13: NO ACTIVE |

    | LOG_ARCHIVE_DEST_14: NO ACTIVE |

    | LOG_ARCHIVE_DEST_15: NO ACTIVE |

    | LOG_ARCHIVE_DEST_16: NO ACTIVE |

    | LOG_ARCHIVE_DEST_17: NO ACTIVE |

    | LOG_ARCHIVE_DEST_18: NO ACTIVE |

    | LOG_ARCHIVE_DEST_19: NO ACTIVE |

    | LOG_ARCHIVE_DEST_20: NO ACTIVE |

    | LOG_ARCHIVE_DEST_21: NO ACTIVE |

    | LOG_ARCHIVE_DEST_22: NO ACTIVE |

    | LOG_ARCHIVE_DEST_23: NO ACTIVE |

    | LOG_ARCHIVE_DEST_24: NO ACTIVE |

    | LOG_ARCHIVE_DEST_25: NO ACTIVE |

    | LOG_ARCHIVE_DEST_26: NO ACTIVE |

    | LOG_ARCHIVE_DEST_27: NO ACTIVE |

    | LOG_ARCHIVE_DEST_28: NO ACTIVE |

    | LOG_ARCHIVE_DEST_29: NO ACTIVE |

    | LOG_ARCHIVE_DEST_30: NO ACTIVE |

    | LOG_ARCHIVE_DEST_31: NO ACTIVE |

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

    Backup controlfile written to find the D:\ORACLE\ORA_DBA\SMART\TRACE\diag\rdbms\smart\smart\trace\smart_rsm0_12244.trc file

    Compensation pending activation ID 2876438860 (0xab72f94c)

    The primary database controlfile is created using the

    Clause 'MAXLOGFILES 255'.

    There is space for the log files waiting for redo up to 251

    Use the following SQL commands on the standby database to create

    waiting for redo logfiles that correspond to the primary database:

    ALTER DATABASE add STANDBY LOGFILE 'srl1.f' SIZE 52428800.

    ALTER DATABASE add STANDBY LOGFILE 'srl2.f' SIZE 52428800.

    ALTER DATABASE add STANDBY LOGFILE 'srl3.f' SIZE 52428800.

    ALTER DATABASE add STANDBY LOGFILE 'srl4.f' SIZE 52428800.

    ALTER DATABASE add STANDBY LOGFILE 'srl5.f' SIZE 52428800.

    ARCHIVELOG for thread 1 sequence 12047 required for recovery of the eve

    The digital switchover: converted primary Controlfile controlfile standby successfully.

    The digital switchover: Complete - closing of the database required

    Completed: ALTER DATABASE COMMIT to SWITCH STANDBY mode PHYSICS WITH the STOP of the SESSION

    My Nov 10 09:13:20 2014

    (Ospid 12320) process is suspended due to the transition to a physical relief operation.

    My Nov 10 09:16:58 2014

    (Ospid 12244) process is suspended due to the transition to a physical relief operation.

    My Nov 10 09:17:08 2014

    Process (ospid 3080) is suspended due to the transition to a physical relief operation.

    My Nov 10 09:17:09 2014

    Process (ospid 12636) is suspended due to the transition to a physical relief operation.

    My Nov 10 09:17:10 2014

    Process (ospid 5292) is suspended due to the transition to a physical relief operation.

    My Nov 10 09:17:43 2014

    RSM0, PID = 12244 process, will be killed

    My Nov 10 09:17:44 2014

    RSM0 started with pid = 27, OS id = 16280

    My Nov 10 09:20:56 2014

    minact-RCS: received the error during the scan e:12751 usn:6 useg

    minact-SNA: useg scan slip on with error e:12751

    My Oct 10 09:21:19 2014

    Process (ospid 16280) is suspended due to the transition to a physical relief operation.

    My Nov 10 09:22:04 2014

    RSM0, PID = 16280 process, will be killed

    My Nov 10 09:22:05 2014

    RSM0 started with pid = 27, OS id = 10528

    My Nov 10 09:25:39 2014

    (Ospid 10528) process is suspended due to the transition to a physical relief operation.

    My Nov 10 09:26:03 2014

    minact-RCS: received the error during the scan e:12751 usn:6 useg

    minact-SNA: useg scan slip on with error e:12751

    My Nov 10 09:26:24 2014

    RSM0, PID = 10528 process, will be killed

    My Nov 10 09:26:25 2014

    RSM0 started with pid = 27, OS id = 15752

    My Nov 10 09:29:59 2014

    Process (ospid 15752) is suspended due to the transition to a physical relief operation.

    My Nov 10 09:30:44 2014

    RSM0, PID = 15752 process, will be killed

    My Nov 10 09:30:45 2014

    RSM0 started with pid = 27, OS id = 1972

    My Nov 10 09:31:09 2014

    minact-RCS: received the error during the scan e:12751 usn:6 useg

    minact-SNA: useg scan slip on with error e:12751

    Suspend action 'Block Cleanout Optim, Undo Segment Scan' MMON 82800 seconds

    My Nov 10 09:34:19 2014

    Process (ospid, 1972) is suspended due to the transition to a physical relief operation.

    alert-journal sleep shows the following:

    My Nov 10 09:13:01, 2014

    ARC3: Evaluating archive log 5 thread 1 sequence 12046

    Involved the creation of the archivelog 'W:\SMART\ARC\SMART_12046_1_851952614.ARC '.

    Archived journal 5932 extra for each sequence 1 12046 0xab72f94c dest ID thread entry 1:

    My Nov 10 09:13:01, 2014

    Media, recovery waiting for thread 1 sequence 12047

    My Nov 10 09:13:04 2014

    Again shipping customer logged in as PUBLIC

    -User is valid

    RFS [6]: assigned to the process 3648 RFS

    RFS [6]: identified the type of database such as 'physical' standby: customer is ARCH pid 12320

    My Nov 10 09:13:06 2014

    Again shipping customer logged in as PUBLIC

    -User is valid

    RFS [7]: assigned to the process 9972 RFS

    RFS [7]: identified the type of database such as 'physical' standby: Client is in the foreground pid 12244

    RFS [7]: end-of-Redo for thread archiving 1 sequence 12047

    RFS [7]: Eve successfully opened journal 5: "Y:\SMART\LOG2\SMART_S_5.LOG."

    RFS [7]: Journal selected 5 for thread 1 sequence 12047 dbid-1425016497 branch of the 851952614

    My Nov 10 09:13:06 2014

    Arc1: Evaluating archive log 5 thread 1 sequence 12047

    Involved the creation of the archivelog 'W:\SMART\ARC\SMART_12047_1_851952614.ARC '.

    Archived journal 5933 extra for each sequence 1 12047 0xab72f94c dest ID thread entry 1:

    My Nov 10 09:13:06 2014

    ALTER DATABASE RECOVER MANAGED STANDBY DATABASE CANCEL

    MRP0: Background Media Recovery cancelled with status 16037

    Errors in the D:\ORACLE\ORA_DBA\SMART\TRACE\diag\rdbms\smart_stb\smart\trace\smart_pr00_13804.trc file:

    ORA-16037: user has requested the cancellation of the managed recovery

    Managed Standby recovery not using real time applies

    Recovery interrupted!

    Errors in the D:\ORACLE\ORA_DBA\SMART\TRACE\diag\rdbms\smart_stb\smart\trace\smart_pr00_13804.trc file:

    ORA-16037: user has requested the cancellation of the managed recovery

    My Nov 10 09:13:07 2014

    Errors in the D:\ORACLE\ORA_DBA\SMART\TRACE\diag\rdbms\smart_stb\smart\trace\smart_mrp0_11168.trc file:

    ORA-10877: error reported in parallel recovery slave

    Completed: ALTER DATABASE RECOVER MANAGED STANDBY DATABASE CANCEL

    Data not available for the digital switchover

    End-of-REDO the archived log file was not found

    Incomplete recovery SCN:0:35846057 archive SCN:0:35866066

    ALTER DATABASE RECOVER MANAGED STANDBY DATABASE THROUGH FINAL PASSAGE TO THE NODELAY

    has started the process of logmerger

    My Nov 10 09:13:07 2014

    Managed Standby recovery not using real time applies

    Parallel Media Recovery started with 8 slaves

    Media W:\SMART\ARC\SMART_12047_1_851952614.ARC recovery log

    Identified the SNA 0x0.22345d2 end-of-Redo (failover) for thread 1 sequence 12047

    Activation reset sleep ID 2876438860 (0xab72f94c)

    Met Media Recovery end Redo indicator

    Media recovery applied through change 35866066

    Attempt to limbo arscn 0:35866066 irscn 0:35866066

    Completed: ALTER DATABASE RECOVER MANAGED STANDBY database through FINAL passage to THE NODELAY

    ALTER DATABASE COMMIT TO SWITCHING TO THE MAIN WAITING WITH THE STOP OF THE SESSION

    Waiting for the transition from role maximum is 15 minutes.

    krsv_proc_kill: kill 2 process (all the RFS)

    Backup controlfile written to find the D:\ORACLE\ORA_DBA\SMART\TRACE\diag\rdbms\smart_stb\smart\trace\smart_rsm0_14652.trc file

    Passage to the after complete recovery through change 35866066

    X:\SMART\LOG1\SMART_11.LOG online journal: thread 1 Group 1 had been previously authorized

    Y:\SMART\LOG2\SMART_12.LOG online journal: thread 1 Group 1 had been previously authorized

    X:\SMART\LOG1\SMART_21.LOG online journal: thread 1 group 2 was previously disabled

    Y:\SMART\LOG2\SMART_22.LOG online journal: thread 1 group 2 was previously disabled

    X:\SMART\LOG1\SMART_31.LOG online journal: thread 1 Group 3 has been previously authorized

    Y:\SMART\LOG2\SMART_32.LOG online journal: thread 1 Group 3 has been previously authorized

    X:\SMART\LOG1\SMART_41.LOG online journal: thread 1 Group 4 has been previously authorized

    Y:\SMART\LOG2\SMART_42.LOG online journal: thread 1 Group 4 has been previously authorized

    Standby became primary YVERT: 35866064

    The digital switchover: completed - mounted as primary database

    Completed: ALTER DATABASE COMMIT to SWITCHING to the MAIN WAITING WITH the STOP of the SESSION

    My Nov 10 09:13:45 2014

    Arc0: become the "no SRL" ARCH

    My Nov 10 09:13:46 2014

    ARC3: become the "no SRL" ARCH

    My Nov 10 09:13:46 2014

    Arc1: become the "no SRL" ARCH

    My Nov 10 09:16:58 2014

    NSV0 started with pid = 26, OS id = 15900

    My Oct 10 09:21:20 2014

    MICHAEL: NSV0 network call timeout. Kill it now.

    The Setup is as follows:

    DGMGRL > see the configuration;

    Configuration - dg_smart

    Protection mode: MaxPerformance

    Databases:

    Smart - primary database

    smart_stb - physical of the standby database

    Fast-Start Failover: DISABLED

    The configuration status:

    SUCCESS

    DGMGRL > see the detailed chip database

    -Smart database

    Role: PRIMARY

    State of destination: TRANSPORT-WE

    Occurrence (s):

    Smart

    Properties:

    DGConnectIdentifier = "smart_dg_prim".

    ObserverConnectIdentifier = "

    LogXptMode = "ASYNC".

    DelayMins = '0'

    Binding = "optional."

    MaxFailure = '0'

    MaxConnections = '1'

    ReopenSecs = "300"

    NetTimeout = "30"

    RedoCompression = "DISABLE."

    LogShipping = 'ON '.

    PreferredApplyInstance = "

    ApplyInstanceTimeout = '0'

    ApplyParallel = 'AUTO '.

    StandbyFileManagement = 'AUTO '.

    ArchiveLagTarget = "300"

    LogArchiveMaxProcesses = "4"

    LogArchiveMinSucceedDest = '1'

    DbFileNameConvert = "

    LogFileNameConvert = "X:\SMART\LOG1, X:\SMART\LOG1, Y:\SMART\LOG2, Y:\SMART\LOG2.

    FastStartFailoverTarget = "

    InconsistentProperties = "(monitor).

    InconsistentLogXptProps = "(monitor).

    SendQEntries = "(monitor).

    LogXptStatus = "(monitor).

    RecvQEntries = "(monitor).

    Nom_sid = "smart."

    StaticConnectIdentifier = ' (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST=host02) (PORT = 1599)) (CONNECT_DATA = (SERVICE_NAME = smart_DGMGRL)(INSTANCE_NAME=smart) (SERVER = DEDICATED)))'

    StandbyArchiveLocation = "W:\SMART\arc\".

    AlternateLocation = "

    LogArchiveTrace = '8191'

    LogArchiveFormat = "smart_%s_%t_%r.arc".

    TopWaitEvents = "(monitor).

    State of the database:

    SUCCESS

    DGMGRL > see the detailed database smart_stb

    Database - smart_stb

    Role: STANDBY PHYSICS

    State of destination: apply

    Transport Lag: 0 seconds

    Apply the Lag: 0 seconds

    Real-time query: OFF

    Occurrence (s):

    Smart

    Properties:

    DGConnectIdentifier = "smart_dg_stb".

    ObserverConnectIdentifier = "

    LogXptMode = "ASYNC".

    DelayMins = '0'

    Binding = "optional."

    MaxFailure = '0'

    MaxConnections = '1'

    ReopenSecs = "300"

    NetTimeout = "30"

    RedoCompression = "DISABLE."

    LogShipping = 'ON '.

    PreferredApplyInstance = "

    ApplyInstanceTimeout = '0'

    ApplyParallel = 'AUTO '.

    StandbyFileManagement = 'AUTO '.

    ArchiveLagTarget = "300"

    LogArchiveMaxProcesses = "4"

    LogArchiveMinSucceedDest = '1'

    DbFileNameConvert = "

    LogFileNameConvert = "X:\SMART\LOG1, X:\SMART\LOG1, Y:\SMART\LOG2, Y:\SMART\LOG2.

    FastStartFailoverTarget = "

    InconsistentProperties = "(monitor).

    InconsistentLogXptProps = "(monitor).

    SendQEntries = "(monitor).

    LogXptStatus = "(monitor).

    RecvQEntries = "(monitor).

    Nom_sid = "smart."

    StaticConnectIdentifier = ' (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST=host01) (PORT = 1599)) (CONNECT_DATA = (SERVICE_NAME = smart_stb_DGMGRL)(INSTANCE_NAME=smart) (SERVER = DEDICATED)))'

    StandbyArchiveLocation = "W:\SMART\arc\".

    AlternateLocation = "

    LogArchiveTrace = '8191'

    LogArchiveFormat = "smart_%s_%t_%r.arc".

    TopWaitEvents = "(monitor).

    State of the database:

    SUCCESS

    tnsnames.ora:

    smart_dg_stb = (Description = (Address = (Protocol = TCP)(Host=host01) (port = 1599)) (CONNECT_DATA = (Server = Dedicated) (SID = Smart)))

    smart_dg_prim = (Description = (Address = (Protocol = TCP)(Host=host02) (port = 1599)) (CONNECT_DATA = (Server = Dedicated) (SID = Smart)))

    Primary listner.ora:

    LISTENER_REDO_SMART =

    (DESCRIPTION_LIST =

    (DESCRIPTION =

    (ADDRESS = (PROTOCOL = TCP (PORT = 1599))(HOST = host02))

    )

    )

    SID_LIST_LISTENER_REDO_SMART =

    (SID_LIST =

    (SID_DESC =

    (SID_NAME = CLRExtProc)

    (ORACLE_HOME = D:\oracle\11.2.0)

    (= Extproc PROGRAM)

    (ENVS = "EXTPROC_DLLS=ONLY:D:\oracle\11.2.0\bin\oraclr11.dll")

    )

    (SID_DESC =

    (SID_NAME = smart)

    (ORACLE_HOME = D:\oracle\11.2.0)

    )

    (SID_DESC =

    (SID_NAME = smart)

    (GLOBAL_DBNAME = smart_DGMGRL)

    (ORACLE_HOME = D:\oracle\11.2.0)

    )

    )

    Listener.ora ensures

    LISTENER_REDO_SMART =

    (DESCRIPTION_LIST =

    (DESCRIPTION =

    (ADDRESS = (PROTOCOL = TCP (PORT = 1599))(HOST = host01))

    )

    )

    SID_LIST_LISTENER_REDO_SMART =

    (SID_LIST =

    (SID_DESC =

    (SID_NAME = CLRExtProc)

    (ORACLE_HOME = D:\oracle\11.2.0)

    (= Extproc PROGRAM)

    (ENVS = "EXTPROC_DLLS=ONLY:D:\oracle\11.2.0\bin\oraclr11.dll")

    )

    (SID_DESC =

    (SID_NAME = smart)

    (ORACLE_HOME = D:\oracle\11.2.0)

    )

    (SID_DESC =

    (SID_NAME = smart)

    (GLOBAL_DBNAME = smart_stb_DGMGRL)

    (ORACLE_HOME = D:\oracle\11.2.0)

    )

    )

    LSNRCTL > status listener_redo_smart

    Connection to (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP (PORT = 1599))(HOST=host02)))

    STATUS of the LISTENER

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

    Alias LISTENER_REDO_SMART

    TNSLSNR for Windows 64-bit version: Version 11.2.0.3.0 - Production

    Start date August 30, 2014 20:46:12

    Uptime 10 days 13 h 11 min 15 sec

    Draw level off

    Security ON: OS Local Authentication

    SNMP OFF

    Listener parameter File D:\oracle\11.2.0\network\admin\listener.ora

    Listener log file D:\oracle\diag\tnslsnr\host02\listener_redo_smart\alert\log.xml

    Summary of endpoints listening...

    (DESCRIPTION = (ADDRESS = (PROTOCOL = tcp (PORT = 1599))(HOST=host02)))

    Summary of services...

    Service 'CLRExtProc' has 1 instance (s).

    Instance of 'CLRExtProc', status UNKNOWN, has 1 operation for this service...

    Service 'HA_SMART' has 1 instance (s).

    'Smart' instance, State LOAN, has 1 operation for this service...

    'Smart' service has 2 occurrences.

    'Smart' instance, status UNKNOWN, has 1 operation for this service...

    'Smart' instance, State LOAN, has 1 operation for this service...

    Service 'smart_DGB' has 1 instance (s).

    'Smart' instance, State LOAN, has 1 operation for this service...

    Service 'smart_DGMGRL' has 1 instance (s).

    'Smart' instance, status UNKNOWN, has 1 operation for this service...

    The command completed successfully

    I would be most grateful if someone would have an idea of how solve it!

    Thanks in advance and best regards...

    Solved!

    A logon trigger that makes an insert in a table for each log in the appearance of this behavior. Since dataguard brings the standby database open mode ReadOnly cannot insert the trigger and the strange behavior as described happens!

    Hope that could help someone in the future...

    Kind regards

  • Remove all listeners - or another solution to the given problem

    If the problem is the following:

    Say we have a list of items displayed in a ListView. The elements can be made up of a string describing and above all, a list of IDs.

    Then we have a group of checkboxes, each associated with a value ID. The check boxes are selected must be determined by the content of the list of the selected item in the ListView.

    For example, the elements may be individuals, and IDS can refer to his hobbies or whatever - typical example. If you have a group of predefined leisure displays that you can check if the particular person has them or not.

    Therefore, the behavior that we want to:

    (1) when the selected item in the ListView is changed, update the boxes to display the ID of this item.

    It is trivial. Simply add a listener on the selected ListView item and for each checkbox, set it to enabled if the list contains the corresponding id.

    (2) when an any of the boxes is changed by the user, update the list of IDS to the selected ListView item.

    This seems to be is not as trivial as it may seem. :)

    The first thing I tried was:

    Add a listener for invalidation fixed for each of the boxes. In Manager, a list of all ID-checked, and updated list of the current selected ListView with the latter item.

    The problem here is him when you select an item in the ListView and behavior in 1) is called, the invalidation handler is called, thus updating list of the selected ListView item again before it has had the opportunity to update all the boxes!

    Next thing I tried:

    Do not add any fixed listener for the check boxes. (Instead, in 1), remove the check boxes for any listener, to update, and then add a listener that will call the behavior in 2).

    The problem here is 'remove every listener of the boxes', given that on Observable removeListener() method takes a specific listener as a parameter - and we have no reference to that. (And the first time, we have not added even.)

    So is there a way to tell an Observable, Hey, remove all listeners you have?

    Or am I on the wrong track, and it is indeed obvious, another solution to this problem?

    I don't see the need to remove the listeners - this seems dirty and a little prone to error.

    What follows is doing what you want (I used a ChoiceBox for ease, but adapting to a list would be trivial), or if I'm missing a part of the question?

    public class TestApp extends Application
    {
        public static void main(String[] args) throws Exception
        {
            launch(args);
        }
    
        public void start(final Stage stage) throws Exception
        {
            VBox root = new VBox(10);
            root.setStyle("-fx-padding: 10");
    
            final ChoiceBox personChoiceBox = new ChoiceBox();
            personChoiceBox.getItems().addAll(
                    new Person("Zonski", Hobby.coding, Hobby.rockClimbing),
                    new Person("Tiny Dancer", Hobby.interpretiveDance),
                    new Person("Mr Everything", Hobby.values())
            );
            root.getChildren().add(personChoiceBox);
    
            final Map hobbyCheckBoxes = new HashMap();
            for (final Hobby hobby : Hobby.values())
            {
                CheckBox checkBox = new CheckBox(hobby.name());
                root.getChildren().add(checkBox);
                hobbyCheckBoxes.put(hobby, checkBox);
                checkBox.selectedProperty().addListener(new ChangeListener()
                {
                    public void changed(ObservableValue source, Boolean wasSelected, Boolean isSelected)
                    {
                        Person person = personChoiceBox.getSelectionModel().getSelectedItem();
                        if (person != null)
                        {
                            if (isSelected)
                            {
                                if (!person.getHobbies().contains(hobby))
                                {
                                    person.getHobbies().add(hobby);
                                }
                            }
                            else
                            {
                                person.getHobbies().remove(hobby);
                            }
                        }
                    }
                });
            }
    
            personChoiceBox.getSelectionModel().selectedItemProperty().addListener(new ChangeListener()
            {
                public void changed(ObservableValue source, Person oldPerson, Person newPerson)
                {
                    if (newPerson != null)
                    {
                        for (Hobby hobby : hobbyCheckBoxes.keySet())
                        {
                            hobbyCheckBoxes.get(hobby).setSelected(newPerson.getHobbies().contains(hobby));
                        }
                    }
                    else
                    {
                        for (CheckBox checkBox : hobbyCheckBoxes.values())
                        {
                            checkBox.setSelected(false);
                        }
                    }
                }
            });
    
            stage.setScene(new Scene(root, 300, 300));
            stage.show();
        }
    
        //-------------------------------------------------------------------------
    
        private enum Hobby
        {
            rockClimbing, coding, interpretiveDance
        }
    
        private class Person
        {
            private String name;
            private List hobbies;
    
            private Person(String name, Hobby... hobbies)
            {
                this.name = name;
                this.hobbies = new ArrayList(Arrays.asList(hobbies));
            }
    
            public String getName()
            {
                return name;
            }
    
            public List getHobbies()
            {
                return hobbies;
            }
    
            public String toString()
            {
                return name;
            }
        }
    }
    
  • Need help with passage of a variable in a function

    Hello. I'm working on a Flash application that needs to play videos. I have the code using netstream that works very well for a movie. The problem is I have 3 movies that I want to play and I need to find a way to replace the string variable with the information of correct path depending on what button is pressed. I think this must be a table that I coded, but it does not work. Here's the code:

    var buttonArray:Array = [chamber.btnV01, chamber.btnV02];

    var strSource:Array = ["HiFlow_Conventional_4.mp4","Tool_Less_5.mp4" "];

    trace (buttonArray)

    for (var i: int = 0; i < buttonArray.length; i ++) {}

    buttonArray, [i] .addEventListener (MouseEvent.CLICK, playClicked);

    }

    function playClicked(e:MouseEvent):void {}

    check, if the FLV has already begun

    to download. If so, resume playback, else

    load the file

    {if(!bolLoaded)}

    var clickedIndex:int = buttonArray.indexOf (event.currentTarget);

    nsStream.play ([clickedIndex] strSource);

    bolLoaded = true;

    trace (strSource)

    }

    else {}

    nsStream.resume ();

    }

    Is given just to two buttons for the tests. I get the "'1120: access of undefined property event." the straight line to the 'nsStream.play (strSource [clickedIndex])";." The variable strSource is what I'm trying to pass paths different film in, but I'm having no luck. Will put it straight up or y at - it another way to do this? Any help would be appreciated. Thank you.

    -Shawn

    use:

    var buttonArray:Array = [chamber.btnV01, chamber.btnV02];

    var strSource:Array = ["HiFlow_Conventional_4.mp4","Tool_Less_5.mp4" "];

    trace (buttonArray)

    for (var i: int = 0; i< buttonarray.length;="" i++)="">

    buttonArray, [i] .addEventListener (MouseEvent.CLICK, playClicked);

    }

    function playClicked(e:MouseEvent):void {}

    check, if the FLV has already begun

    to download. If so, resume playback, else

    load the file

    {if(!bolLoaded)}

    var clickedIndex:int = buttonArray.indexOf (e.currentTarget);

    nsStream.play ([clickedIndex] strSource);

    bolLoaded = true;

    trace (strSource)

    }

    else {}

    nsStream.resume ();

    }

  • Dynamic Calc'd member not to pick up the void Var changes - 11.1.1.3

    Hello

    We have a Dyn Calc formula member using a void var on a member. Void var update, values in the formula of Member referencing the void var don't update. We must stop and start the application so he can pick up the sub new var in the formula of Member.

    any ideas?

    Unfortunately we must live according to the definition given in the SER60 which is in the post that Tim has provided the link to but no one seems to follow the links in our days :)
    "To ensure that a new value of variable substitution is available in formulas, definitions of partition and security filters, stop and restart the application. All other uses of the substitution variables are resolved dynamically when it is used. »

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • Problem with the passage of a VO setting between functions.

    I use a VO to pass parameters between the functions of my notice to the controller and controller to the model (the code for each is given below).

    Notice to the controller seems to work, but I get an error in my controller on the statement highlighted;

    Flash error:

    TypeError: Error #1034: Type coercion failed: cannot convert 1 in BuRecord.
    controller / setBusinessUnit)
    to View / setBusinessUnit)
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    to fl.c

    View

    package {}

    SerializableAttribute public class View extends Sprite.

    public void display (model: Object, controller: Object) {}
    This.Model = model;
    This.Controller = controller;
    this.model.registerView (this);

    }

    public void setBusinessUnit(evt:Event):void {}
    buCurrentIndex = busL.selectedIndex;
    this.model.buRecord.businessUnit = this.busL.selectedItem.bu
    this.controller.setBusinessUnit (this.model.buRecord);
    }

    }

    }

    Controller of

    package {}
    Import BuRecord;

    public class Controllerl {}
    public var buRecord: BuRecord;
    public void Controller() {}
    buRecord = new BuRecord();
    }

    public void setBusinessUnit(record:BuRecord):void {}
    this.model.setBusinessUnit (record.businessUnit);         < < < < <-this is the statement of the problem.
    }

    }

    }

    Model

    package {}
    Import BuRecord;

    Model/public class extends observer {}
    public var buRecord: BuRecord;
    public void modele() {}
    buRecord = new BuRecord();
    }

    public void setBusinessUnit(record:BuRecord):Boolean {}
    This.chosen_business_unit = record.businessUnit;
    super.notifyChanges ();
    Returns true;
    }

    }

    }

    My VO

    package {}
    public class BuRecord {}
    public var businessUnit:uint = 0;
    public void BuRecord() {}
    }
    }
    }

    Model.setBusinessUnit waiting for a BuRecord, but you are sending a uint value.

    this.model.setBusinessUnit (record.businessUnit);

    should be

    this.model.setBusinessUnit (record);

  • URL popup and passage JS variables or?

    Hello...

    The following JS script opens a new window and that window is a model called "viewer.cfm". The pictures are shown in this model (viewer.cfm)... for example: HPIM0877. JPG, HPIM1009. JPG

    I need to pass variables from all the pages that have the following link (below) to "viewer.cfm".

    I have maybe 40 images to deal with, but I'm stuck on a universal #variable # to display the images and their transmission.

    I did not understand any code on the model of receiver "viewer.cfm" as I am a bit stuck.

    Thank you...

    EXAMPLE OF

    < cfoutput > < A HREF = "javascript:void (0)" "
    onclick = "Window.Open ('viewer.cfm? #HPIM0877.)" JPG # ', 'Welcome',' width = 580, height = 440, menubar = no, status = no') ">"
    course < /A > < / cfoutput >

    I have it

    Thank you for those who have given me feedback.

  • Someone put an event on my calendar and yet I have not given everything the world approval.  How did that?

    SSomeone register an event to my calendar and still I have not given permission to ANYONE.  How did that?

    Hello. What is your calendar synchronized with other calendars? Gmail or Outlook for example. Could you have accepted an event from an e-mail? These are the settings > calendar > events are in Active Apps?

  • Year given COUNTIF

    Hello

    I'm having trouble coming up with a formula that works, so I turn to the community for help. I don't know if this is my formula, or if maybe it's a data formatting issue, but I have a flight log, and I'm total, the number of flights during a given year, by air

    Here are a few screenshots:

    The formula that I tried to start trying to get just the number of flights in 2014 (only not breaking it down by air) is: = COUNTIF (YEAR (the Date), I2)

    Is i2 refers to the cell "2014".

    It only returns a value of 1, which is incorrect because it is has several entrances for 2014. When I change cell I2 to 2015 or 2016, that it translates into zeros.

    I realize that it's breaking the formula directly to from the GET go, so did not attempt the continuation of a COUNTIF formula that shrinks by aircraft type.

    What is a formula problem, or a problem of data? The dates in the column 'Date' are set to automatic, with the date formatting. What I've noticed, is that when I don't use 'YEAR' and select the column in a formula, only the data is selected. When I use the YEAR and select the column, it will highlight the entire column, including the header.

    Help!

    Hi scandy.

    In a sense, it's a matter of format. I am addressing it with an index column which will separate the year of the time.

    The formula of the index column is

    = YEAR (A2)

    This column can be hidden.

    Quinn

  • Option to remove from my computer not given

    Hello

    I use iTunes 12.4.3.1.

    When I select a song/album and then select Remove the possibility of withdrawing my Mac is not given.

    According to Apple Support pages, this option should be here: https://support.apple.com/kb/PH19506?locale=en_US

    Does anyone know how to fix this?

    Thank you!

    If you click on 'Remove', another window will appear giving you the option to keep the file or the withdrawal of your computer.  This is true on my iTunes on OS X 10.9.5 12.4.3.1 system) anyway.

    Good luck

    SRB

  • I have an e-mail returned by the demon with the reason given as "over quota" what does that mean?

    I got an e-mail that is returned by the demon with the reason given as "over quota" that mean?

    Well, most ISPS and web-based e-mail providers have rules in place: some have attachments maximum file sizes, most have maximum rates for the number of recipients/how many emails per day. I had one that had a maximum bandwidth and would not deliver an email until tomorrow if I ended this day.

    So check the terms of your email provider.

Maybe you are looking for

  • Page does not correctly in FF 18.0.1 for Mac, but it's on all

    Please visit this page. http://windhamtaxpayers.org/Windham/ On all 18.0.1 FF for Mac, the fine aligns sidebar, articles of blog style listed in the 3/4 left. But on mine, no matter what I do, the sidebar is all fuzzy! Can't do the theme files, as th

  • HP Pavilion h8 - 1117c

    I need to update my video card driver. I downloaded the latest driver, but I have no idea where it goes (as in which folder). When I connect to the display driver section and select drivers DL... it says I already have the latest version of the drive

  • My ipad charge while I went to work on the left

    I went to bed last night with my Ipad charging and awake and I forgot to turn it off and wondered off to work. Now a little worried it could explode and set fire to my house. Please tell me this wont happen! Thank you Becky

  • its dysfunction

    Dear support team, Kindly asking you to provide me with a link to the audio driver download page for the HP 2000-2d12SE model. I already installed a driver which I doubt to be inadequate to this model and the malfunctions frequently. Waiting for your

  • My CD/DVD drive is a DVD stuck in it.

    I was watching a dvd on my lap top when it froze.  I tried the 'touch pad' eject button, but it did not. Then I went into my computer and it has not yet shown that there is a disc inside.  I tried a troubleshoot an automated CD and DVD players, and s