Try to build a phsical standby db, OS level.

Hello

I intend to build a database of physical sleep.

Eve of database, I know that level of software version of database (including the patch) should be the same as from primary data, what OS, say, if

the database's primary operating system is Linux 5.6, I can build a database server 5.7-Linux survey?

Thank you you5181139

Hello

Check the following Data Guard operational preconditions.

(Edit) documentation...

The operating system running on the main sites and relief should be the same, but the version of the operating system should not be the same. In addition, the backup database can use a different directory of the primary database structure.

Conclusion, go ahead.

But, if you create a recovery site, I highly recommend you have the same configuration in every way you can.

Kind regards

Juan M

Tags: Database

Similar Questions

  • After the database connection, can I not patch phsical standby db?

    If I patch the 10.2.4.0 to 10.2.0.5 RAC db primary,
    Do I patch phsical must ensure the same version or can afford to leave it alone (yet 10.2.0.4)?

    Thank you.

    You must apply the patches for the backup site.

    Because in the case of a failover, when the day before becoming principal, you do want to find a bug fixed in the patch already applied to the damaged database.

    That is why the docs to patch this scenario still describe the steps to patch the two sites, production and standby.
    For example, Note ID 187242. "Application of Patch Sets / patches interim with physical Standby of the base in Place.

    Kind regards.

  • Try to build the application, the screw startup list is empty

    Hi all

    I am following the directions on this page:
    http://zone.NI.com/reference/en-XX/help/371361G-01/lvhowto/building_a_stand_alone_app/

    But somehow, when I get to Statup screw selection stage, the list is empty and cannot add the VI I intend to use it. Why is this happening? What step am I missing?

    Isaac,

    The first step in the help file you cite says «Open the LabVIEW project...» ».  You have your VI within a LabVIEW project?  If you want help with your Build, it would be useful to look at the project.  The best way to proceed is to implement the project (and all the screws, you wrote that belong to the project) within a Windows folder, compress the file (at one. Zip file) and fix it. Zip file.

    Bob Schor

  • PHSICAL standby db, cannot receive the archivelogs elementary school

    Hello

    Yesterday, I created a new physical standby database, based on

    http://dbatricksworld.com/steps-to-configure-Oracle-11g-Data-Guard-physical-standby-Data-Guard-part-i/

    everything seems fine.

    Today morning, found the day before the database is initially elementary, then copied manually lack archivelogs and recover the database shall catch up.

    unique name of the primary data base: orcl2

    unique name of standby db: orcl2_stby

    Looks that ensure db cannot receive the primary archivelogs,

    standby mode

    SQL > SELECT nom_dest, STATUS, DESTINATION

    2 FROM V$ ARCHIVE_DEST

    3. WHERE THE DESTINATION IS NOT NULL;

    DESTINATION STATUS NOM_DEST
    ------------------------- --------- ------------------------------
    LOG_ARCHIVE_DEST_1 BAD PARAM E:\oracle\oradata\orcl2\recovery\ORCL2\ARCHIVELOG

    LOG_ARCHIVE_DEST_2 VALID ORCL2
    STANDBY_ARCHIVE_DEST VALID USE_DB_RECOVERY_FILE_DEST

    why it displays "bad param.

    How to fix?

    Thank you

    CC:

    standby mode

    SQL > show parameter db_recovery

    VALUE OF TYPE NAME
    ------------------------------------ ----------- ------------------------------
    db_recovery_file_dest string E:\ORACLE\ORADATA\ORCL2\recovery
    whole large db_recovery_file_dest_size 150G

    Hey all,.

    the problem is resolved,

    The problem is caused by the file password. in windows server, the password file is created differently from the Linux server.

    Thank you all very much.

  • Portfolio crashes when you try to build the cover page of an image imported via Lightroom sync project.

    The title says it all.  While you can import images into a new project through Lightroom mobile sync when you try to create a cover image for the project, you can select one of the imported images, but when you try to apply the portfolio crashes.  The only way to go beyond this stage is to import them separately a jpeg.

    Another problem with imported via Lightroom photos mobile sync, it's that the display full screen obtained by double clicking on the image in the project is not centered on being right-justified display.  There seems to be no way to change this behavior.

    How to overcome those problems?

    Just tried again this morning and guess what it worked perfectly.  Only difference I can see is that Lightroom is running and who claims to be always sync when I had the problem and this morning when the problem went away Lightroom was off.  Incidentally, if you want to report bugs that you must go to the portfolio help page and ask a question.

  • Try to build a showcase on the v1 API. API does not seem to inject.

    Little help?

    init var = function() {}

    adobe.dps.store.getFolioData (callback);

    }

    var callback = {function (data)}

    Alert (JSON.stringify (Data));

    }

    Window.onadobedpscontextloaded = init;

    Does nothing. Adobe is not defined if try to call from the console.

    You must contact Support Gold support. Connect to http://digitalpublishing.acrobat.com/ and look in the Middle at the bottom of the screen for details.

    Neil

  • Try to build the form using the check boxes - need help

    I am creating features using a region on the left to contain what I want (and it is stopped), an area on the right that contains all the rest I might add, with buttons in the middle to get things back (Add/Remove). I try to use the collections and APEX_ITEM. CHECKBOX and everything just do not have luck using the check boxes at all. Can someone tell me please a tutorial or an example that works in the way to read a collection by using the checkboxes and manipulate? Normally, I uses a FRONT of Validations process to update the collection with the changes that the user has provided, then follow up with any validations, then run any what DB written/modifications/deletions in a page AFTER VALIDATION process.

    Here's what I have so far:

    Area to the left (list of items already included in the package)

    (On the process of loading Page (before header) -: P182_PKG_ID is passed as input)
    apex_collection.create_or_truncate_collection
      (p_collection_name => 'DOCWIZ_CHKLST');
    
    declare
      v_lnid      NUMBER;
      v_ordr      NUMBER;
      v_pkg       NUMBER;
      v_type      NUMBER;
      v_typenm    VARCHAR2(47);
      cursor c_prepop is
        select a.ID, a.DOC_ORDER, a.DOC_PKG_ID, a.DOC_TYPE_ID, t.DOC_TYPE_NM
          from DOC_ASSIGN a, DOC_TYPE t
         where a.DOC_TYPE_ID = t.DOC_TYPE_ID
           and a.DOC_PKG_ID = :P182_PKG_ID
         order by a.DOC_ORDER;
    begin
      OPEN c_prepop;
        LOOP
          FETCH c_prepop into v_lnid, v_ordr, v_pkg, v_type, v_typenm;
          EXIT WHEN c_prepop%NOTFOUND;
          APEX_COLLECTION.ADD_MEMBER(
              p_collection_name => 'DOCWIZ_CHKLST',
              p_c001 => 0,          --CHKBX
              p_c002 => v_lnid,     --ID
              p_c003 => v_ordr,     --DOC_ORDER
              p_c004 => v_pkg,      --DOC_PKG_ID
              p_c005 => v_type,     --DOC_TYPE_ID
              p_c006 => v_typenm    --DOC_TYPE_NM
           );
        END LOOP;
      CLOSE c_prepop;
    end;
    Report area (column 2)
    SELECT apex_item.DISPLAY_AND_SAVE(1, SEQ_ID) SEQ_ID,
        apex_item.CHECKBOX(2, c001, 'UNCHECKED') CHKBX,
        apex_item.DISPLAY_AND_SAVE(3, c002) ID,
        apex_item.TEXT(4, c003, 3, 3) DOC_ORDER,
        apex_item.DISPLAY_AND_SAVE(5, c004) DOC_PKG_ID,
        apex_item.DISPLAY_AND_SAVE(6, c005) DOC_TYPE_ID,
        apex_item.DISPLAY_AND_SAVE(7, c006) DOC_TYPE_NM
      from APEX_COLLECTIONS
     where COLLECTION_NAME = 'DOCWIZ_CHKLST'
    Area to the right (complete list of topics already in the package possibilities)

    (On the process of loading Page (before header) -: P182_PKG_ID is passed as input)
    --Prep collection
    ---------------------------------------------
    apex_collection.create_or_truncate_collection
      (p_collection_name => 'DOCWIZ_TYPLST');
    
    declare
      v_lnid      NUMBER;
      v_ordr      NUMBER;
      v_pkg       NUMBER;
      v_type      NUMBER;
      v_typenm    VARCHAR2(47);
      cursor c_prepop is
        select 0, 0, :P182_PKG_ID, t.DOC_TYPE_ID, t.DOC_TYPE_NM
          from DOC_TYPE t
         where t.DOC_TYPE_ID not in (select DOC_TYPE_ID from DOC_ASSIGN
                where DOC_PKG_ID = :P182_PKG_ID)
           and t.DOC_TYPE_ID > 0;
    begin
      OPEN c_prepop;
        LOOP
          FETCH c_prepop into v_lnid, v_ordr, v_pkg, v_type, v_typenm;
          EXIT WHEN c_prepop%NOTFOUND;
          APEX_COLLECTION.ADD_MEMBER(
              p_collection_name => 'DOCWIZ_TYPLST',
              p_c001 => 0,          --CHKBX
              p_c002 => v_lnid,     --ID
              p_c003 => v_ordr,     --DOC_ORDER
              p_c004 => v_pkg,      --DOC_PKG_ID
              p_c005 => v_type,     --DOC_TYPE_ID
              p_c006 => v_typenm    --DOC_TYPE_NM
           );
        END LOOP;
      CLOSE c_prepop;
    end;
    Report area (column 2)
    SELECT apex_item.DISPLAY_AND_SAVE(1, SEQ_ID) SEQ_ID,
        apex_item.CHECKBOX(2, c001, 'UNCHECKED') CHKBX,
        apex_item.DISPLAY_AND_SAVE(3, c002) ID,
        apex_item.TEXT(4, c003, 3, 3) DOC_ORDER,
        apex_item.DISPLAY_AND_SAVE(5, c004) DOC_PKG_ID,
        apex_item.DISPLAY_AND_SAVE(6, c005) DOC_TYPE_ID,
        apex_item.DISPLAY_AND_SAVE(7, c006) DOC_TYPE_NM
      from APEX_COLLECTIONS
     where COLLECTION_NAME = 'DOCWIZ_TYPLST';
    Process - before validation page:
     Update Collection
    ---------------------------------------------
    declare
      i pls_integer := 0;
    begin
      for c1 in (
        select seq_id from apex_collections
         where collection_name = 'DOCWIZ_CHKLST'
         order by seq_id) loop
        i := i+1;
        --CHKBX
        apex_collection.update_member_attribute (p_collection_name=> 'DOCWIZ_CHKLST',
            p_seq=> c1.seq_id,p_attr_number =>1,p_attr_value=>wwv_flow.g_f02(i));
        --DOC_ORDER
        apex_collection.update_member_attribute (p_collection_name=> 'DOCWIZ_CHKLST',
            p_seq=> c1.seq_id,p_attr_number =>3,p_attr_value=>wwv_flow.g_f04(i));
      end loop;
    end;
    If anyone has a better way of doing things, I'm ready for it. The standard tabular forms appear not to be the right thing, because there will be TWO shapes on the page, that's why I went with a collection.

    Hello

    I just have a quick look and see what you're trying to do.

    One thing, you might want to consider, is that you use to identify each item (those who become G_F01, G_F02 etc.), index numbers can be any number you like up to a maximum of 50. So, your region on the left could use numbers from 1 to 25 and those rights could use 26 to 50 - little matter if there are gaps in the numbers.

    I'm actually about to close for the day because he went from 19:00 here now, so can't not consider this news right now - but if the above does not do, just update the thread and I'll have another look tomorrow.

    Andy

  • Error when you try to build the database for the Oracle Fusion Store before D

    I have jdeveloper build JDEVADF_MAIN. BOXER_GENERIC_081002.2127.5156
    I downloaded the FOD_11.zip of http://www.oracle.com/technology/products/jdev/samples/fod/index.html
    When you run the Ant script to create the schema and user FOD, I get the following errors:
    Oracle JDeveloper 11g () (Build 5156)
    BuildFile: D:\oracle\Infrastructure\Ant\build.xml

    init:
    [javac] Compiling 1 source file for D:\oracle\Infrastructure\Ant\classes

    setProperties:

    createDatabase:

    refreshSchema:

    BUILD FAILED
    D:\oracle\Infrastructure\Ant\build.XML:52: The following error occurred during the execution of this line:
    D:\oracle\Infrastructure\DBSchema\build.XML:91: The following error occurred during the execution of this line:
    D:\oracle\Infrastructure\DBSchema\build.XML:56: The following error occurred during the execution of this line:
    D:\oracle\Infrastructure\DBSchema\build.XML:28: D:\oracle\Infrastructure\Ant\wlserver_10.3\server\lib not found.

    Total duration: 5 seconds

    Does anyone know what is the problem?
    Thanks for your help.

    I had the same problem until I changed the backslashes in style Windows in the path of the directory to UNIX style obliques, know:

    C:\Oracle\Middleware\jdeveloper

    is wrong, everything in:

    C:, Oracle, Middleware, jdeveloper

    works correctly.

    This may be stating the obvious, but it's one of the write-once-and-fail-to-run-everywhere current issues that keep away developers biting Java beginner, like me, in the back.

    :-(

  • new development of BB. Try to build an application that opens a Web page. Error on BrowserField

    Hello

    I'm new to the development of BB. I am trying to create a container application that will open a Web page that is hosted on the internet.

    Grabbing the BrowserPushDemo, here is where I am:

    /*

    * AWAPP.java

    */

    Net.rim.device.api.browser.field2 import. *;

    Net.rim.device.api.system import. *;

    Net.rim.device.api.ui import. *;

    Net.rim.device.api.ui.container import. *;

    SerializableAttribute public class AWAPP extends UiApplication

    {

    Public Shared Sub main (String [] args)

    {

    BrowserField app = new BrowserField();

    app.enterEventDispatcher ();

    }

    Public Sub BrowserField()

    {

    pushScreen (new BrowserFieldScreen());

    }

    }

    class BrowserFieldScreen extends screen

    {

    public BrowserFieldScreen()

    {

    BrowserField myBrowserField = new BrowserField();

    Add (myBrowserField);

    myBrowserField.requestContent ("http://www.google.com");

    }

    }

    I am getting an error on the "app.enterEventDispatcher ()"; on the point...

    ERROR:

    Thus you use? The code is as follows:

    import net.rim.device.api.browser.field2.BrowserField;
    import net.rim.device.api.ui.UiApplication;
    import net.rim.device.api.ui.container.MainScreen;
    
    public class AWAPP extends UiApplication {
    
        public static void main(String[] args) {
            AWAPP app = new AWAPP();
            app.enterEventDispatcher();
        }
    
        public AWAPP() {
            pushScreen(new BrowserFieldScreen());
        }
    
    }
    
    class BrowserFieldScreen extends MainScreen {
        public BrowserFieldScreen() {
            BrowserField myBrowserField = new BrowserField();
            add(myBrowserField);
            myBrowserField.requestContent("http://www.google.com");
        }
    }
    
  • Application builder appears complete but does not create executable not

    I'm working on a major project (~ 5000 screws, LV2011 SP1, Win7 32 bit) and have recently from problems with the Application Builder. This is after 3-4 years of success is based on this project...

    When I try to build my application of following higher level occurs:

    1. "build status' window opens as usual and starts the processing of my file:

    2. Subsequently, the progress bar reaches about halfway and the message becomes "Compilation."... » :

    3. then the progress bar jumps sharply at the end and the message becomes "Save...". ». In addition, the 'Done' button becomes active, as if the build is completed. The window remains like this for always. Notes on this dialog box:

    • The 'Explorer' and 'Help' buttons work normally in this State.
    • If I press the 'Done' button (or close the window with the Red 'X') then the window closes but Labview is suspended. The only way out of here is to kill the process in Task Manager.

    4. If I sail in my generation folder so I see temporary build files are still sitting here, i.e. the manufacturer failed to create my exe...

    When I turn on logging, I see that all the files seem to be treated successfully (in comparison with a previous successful build log), but the paper stops before writing the article ' [output file Version]]... ".

    Anyway - I'm trying to restore a large number of small changes to see if I can isolate that my changes of code causing the problem.

    Someone out there knows what could cause request the manufacturer to get as much as he does, thinking it's done (even if this isn't the case)?

    Thanks for all the ideas...

    Well - I finally managed to isolate the problem... Corrupted code is attached!


    The attached code is a version of a dialog box that is used in my project. The question turned out to be associated with the order by radio inside the tab control:

    • If you open the library and then try to REMOVE the two controls private library (simultaneously), then you are greeted with the accident below report. NOTE: Remove the private items one-at-a-time does not cause the accident. (weird...)
    • The same happens if you try to rename the library

    The solution:

    • The inclusion of this library in my project was originally my application build will fail every time.
    • Given that the report mentions "RadioClust.cpp", I made the amazing jump that the question has been connected with the radio control... so I just unplugged all instances of this control their typedef. That seems to have fixed!

    ASIDE: I have not checked if including this library in a different application will cause his generation to not too... Something to try out a rainy day!

  • change retrieve logical database in standby mode is suspended


    Hello

    When I try to convert my physical standby sleep by using logic

    change the database recover to STANDBYL logical expectation;

    the command just hangs

    I saw the usual shot on what is to create the dictionary again on the primary help

    execute dbms_logstdby.build;

    that I did the alter database command, but maintains still suspended on my watch

    All ideas,

    Thank you

    Jim

    Hello;

    Your alert log eve has lines like this:

    RETRIEVE LOGIC...

    If so look for the message (after that)

    From conversion of data file

    and after the errors or warnings you have.

    Best regards

    mseberg

  • Satellite A200-14F - standby and hibernation does not work

    Hello
    I bought A200-14th with Windows Vista preinstalled. When I switched to Windows XP, I discovered that the standby and hibernation works. When I try to switch to the standby screen becomes black, but power light gets not "Brown" as it should. It is blue. From time to time, HDD light flashes also.

    I tried to reinstall Windows twice, but it does not work every time. Once, I installed the drivers in some are specific as well as I did the job. But unfortunately I had to reinstall XP once more, and I do not remember that I should install the drivers.

    If you have had the similar problem please write what I have to do.

    Concerning

    Hello

    > When I switched to Windows XP, I discovered that does not work on standby and hibernation.
    After Installing Win XP, you must update the BIOS to the XP version.
    You should check the page European driver of Toshiba. There are BIOS for Win XP.

    After the BIOS update you reinstall Windows XP, the latest status update and install all Toshiba drivers and utilities.

    Welcome them

  • Server Web UI Builder error


    Hi aasensio,

    Another thing I'd like to try.  Try looggin and back in and then try the build.

    Thank you!

    KiraT

  • Build error

    When you try to build an application, I get the following error code:

    Error 15 took place at the signing of CodeSignAPI.lvlib:Get error String.vi

    Possible reasons:

    Error: The time stamp authority URL specified does not point to a valid authority timestamp server or an unknown error has occurred.

    «"" "String of full appeal:»»"»
    CodeSignAPI.lvlib:Get signature String.vi error
    CodeSignAPI.lvlibign with Certificate.vi
    AB_Application.lvclassostBuild.vi
    AB_Engine_Build.VI
    AB_Build_Invoke.VI
    AB_Build_Invoke.VI.ProxyCaller

    Any idea of what a solution may be?

    Hi Rasmus,

    Can you provide a little more information about the system you are using? Operating system and version LV project folder?

    I assume you are using LV2009, including a digital signature with your standalone application. If this is the case, please check your "Timestamp URL" in the properties of the Application--> Windows security.

  • Application builder cannot build the exe. Error 8 has occurred in AB_EXE.lvclass:Build.vi-> AB_Build.lvclass:Build_from_Wizard.vi

    I bought a new Dell laptop (Windows 10 Pro) and LV 2015 (32-bit) is installed. I copied my project files and tried to build the exe file and received the error 8. After much searching for an answer, I created a minimal test with just a single white vi project and an exe based build spec to reproduce the error with. Whenever I try to build, I get the same error 8:

    An error occurred during the generation of the application. You don't have the appropriate permissions to create the application at the specified location, or the application is in use.

    Invoke the node in AB_Engine_Build_Method_Wrapper.vi-> AB_EXE.lvclass:Build.vi-> AB_Build.lvclass:Build_from_Wizard.vi-> AB_UI_Frmwk_Build.lvclass:Build.vi-> AB_UI_FRAMEWORK.vi-> AB_Item_OnDoProperties.vi-> AB_Item_OnDoProperties.vi.ProxyCaller

    Method name: Build: Application

    Error 8 has occurred to AB_EXE.lvclass:Build.vi-> AB_Build.lvclass:Build_from_Wizard.vi

    Possible reasons:

    LabVIEW: File permission error. You do not have the correct permissions for the file.

    I can't quite imagine I could have permissions issues. I of course have full admin on the machine privileges.

    I've seen other messages (like this one) who speak to have Windows Explorer opened the path of construction when it tries to go up and get this error. I made double sure that I don't have ANY Windows Open Windows Explorer, trying to build. There was a mention in one of the positions which perhaps of LabVIEW in current directory is defined in the file generation, but I'm not quite what that means, or why that might happen when there isn't usually prevents me to build on other machines.

    I tried the procedure described in the KB, but no help.

    Interestingly, I have created a virtual machine (Win 10) for a different project and installed LV 2015 32 bits in the virtual machine, and all my applications build very well in the virtual machine. But on OS from my physical machine, I get this error 8 for all construction applications.

    I tried to fix LabVIEW, and also I tried to uninstall reinstall LabVIEW. Nor was the error to go away completely. After the repair, the project has successfully generated once. But subsequent attempts to build fail with the same error.

    See the attached test project and the build log.

    Thank you

    Nathan Scharfe

    CLD

    My best guess is that some external process is the use of the folder and do not let you write here. The most likely candidates are anti-virus software or a service of indexation of a certain type. I'm guessing that he sometimes managed everything simply because it is a race condition and in these cases, the blocking part yet or is already done.

    You could try the building to a network drive, when these forces are less likely to be able to make the lock or you could try to find a software that shows you what software has handles opened in a folder and control for an offender. I seem to remember that the Process Explorer and SIW show this, but it's far from my area of expertise.

Maybe you are looking for