How to check if R12 staged media is correct or not?

Hello
I copied the full R12 (12.0.4) media (software) on the external drive by making all the directories of resprected as follows:

startCD - Start copied disc here
oraApps - copied APPL_TOP Disk1, Disk2
Orleans - copied disc TOOLS
oraDB - copied disc RDBMS
oraAppDB - copied databases Disk9 Disk1

How can I check or ensure that installation can go smoothly with this media staging?

Concerning

arizuddin wrote:
Hello
I copied the full R12 (12.0.4) media (software) on the external drive by making all the directories of resprected as follows:

startCD - Start copied disc here
oraApps - copied APPL_TOP Disk1, Disk2
Orleans - copied disc TOOLS
oraDB - copied disc RDBMS
oraAppDB - copied databases Disk9 Disk1

How can I check or ensure that installation can go smoothly with this media staging?

Concerning

You must run the script adautostg.pl to create the scene area directory, copies only the files is not the right approach.

Page 1-13 and 1-14, set up the scenic space
http://docs.Oracle.com/CD/B40089_10/current/Acrobat/120oaig.PDF

Thank you
Hussein

Tags: Oracle Applications

Similar Questions

  • How to check the type of memory installed (ECC or not)?

    all!

    I have some servers Dell PowerEdge R420 and I want to upgrade memory, install more...

    How to check the type of memory installed (ECC or not)?

    Dmidecode output here:

    Drive.google.com/.../View

    Hello.

    Unfortunately, we are not able to open the link you have provided. You can display information about your memory on the web iDRAC under hardware and memory interface. You see the type of error correction (ECC or Non ECC) within the information memory page. You can also view the same information on OpenManage Server Administrator and even make use of the memory part number to find out more information.

  • How to check if a string exists in varray or not

    Hi all

    How to check if a string exists in varray or not.

    Version Details 
    
    
    BANNER
    ----------------------------------------------------------------
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Product
    PL/SQL Release 10.2.0.1.0 - Production
    CORE    10.2.0.1.0      Production
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    SQL> get test
      1  DECLARE
      2     TYPE dnames_var IS VARRAY(7) OF VARCHAR2(30);
      3     dept_names dnames_var := dnames_var('Shipping','Sales','Finance','Payroll');
      4  BEGIN
      5    if dept_names.exists('Shipping')
      6    then
      7       dbms_output.put_line('Exists ................');
      8    end if ;
      9  /*   DBMS_OUTPUT.PUT_LINE('dept_names has ' || dept_names.COUNT
     10                          || ' elements now');
     11     DBMS_OUTPUT.PUT_LINE('dept_names''s type can hold a maximum of '
     12                           || dept_names.LIMIT || ' elements');
     13     DBMS_OUTPUT.PUT_LINE('The maximum number you can use with '
     14         || 'dept_names.EXTEND() is ' || (dept_names.LIMIT - dept_names.COUNT));
     15  */
     16* END;
     17  
     18  /
    DECLARE
    *
    ERROR at line 1:
    ORA-06502: PL/SQL: numeric or value error: character to number conversion error
    ORA-06512: at line 5
    
    
    SQL> 
    
    Any help in this regard is appreciated ...
    Thank you
    Prakash P

    Published by: prakash on April 29, 2012 05:42

    EXISTS checks for the existence of an element, not a value. Since you're using VARRAY (btw, it is not recommended), your only choice is a loop through:

    SQL> DECLARE
      2       TYPE dnames_var IS VARRAY(7) OF VARCHAR2(30);
      3       dept_names dnames_var := dnames_var('Shipping','Sales','Finance','Payroll');
      4  BEGIN
      5      for i in 1..dept_names.count loop
      6        if dept_names(i) = 'Shipping'
      7          then
      8            dbms_output.put_line('Exists ................');
      9            exit;
     10        end if;
     11      end loop;
     12  END;
     13  /
    Exists ................
    
    PL/SQL procedure successfully completed.
    
    SQL>  
    

    If you use the nested table, you can use MEMBER, SUMBULTISET, MULTISET EXCEPT:

    SQL> DECLARE
      2       TYPE dnames_var IS TABLE OF VARCHAR2(30);
      3       dept_names dnames_var := dnames_var('Shipping','Sales','Finance','Payroll');
      4  BEGIN
      5      if 'Shipping' member of dept_names
      6      then
      7         dbms_output.put_line('Exists ................');
      8      end if ;
      9  END;
     10  /
    Exists ................
    
    PL/SQL procedure successfully completed.
    
    SQL> DECLARE
      2       TYPE dnames_var IS TABLE OF VARCHAR2(30);
      3       dept_names dnames_var := dnames_var('Shipping','Sales','Finance','Payroll');
      4  BEGIN
      5      if dnames_var('Shipping') submultiset dept_names
      6      then
      7         dbms_output.put_line('Exists ................');
      8      end if ;
      9  END;
     10  /
    Exists ................
    
    PL/SQL procedure successfully completed.
    
    SQL> DECLARE
      2       TYPE dnames_var IS TABLE OF VARCHAR2(30);
      3       dept_names dnames_var := dnames_var('Shipping','Sales','Finance','Payroll');
      4  BEGIN
      5      if dnames_var('Shipping') multiset except dept_names = dnames_var()
      6      then
      7         dbms_output.put_line('Exists ................');
      8      end if ;
      9  END;
     10  /
    Exists ................
    
    PL/SQL procedure successfully completed.
    
    SQL> 
    

    SY.

  • How to check if a numeric value is around or not?

    Hello

    A form in LiveCycle Designer ES4, how to check (at the exit of field), if a numeric value is around or not?

    Hello

    You can verify if the rawValue contains a ', 'or'. ' using indexOf

    like the following

    If (NumericField1.rawValue.toString (.indexOf(","))! = - 1 |) NumericField1.rawValue.toString (.indexOf("."))! = -1) {}

    This is not an integer

    }

    Hope this will help you

  • How to check the slider back row contains data or not

    Hi all


    How to check whether or not the cursor returned row contains data in one of its field.


    Thank you and best regards,
    Prakash P

    Use ROWCOUNT %
    Use % NOTFOUND

    example of

    DECLARE
    
       id    number;
       desc varchar2(10);
       CURSOR cursor_one IS
          SELECT
              id, desc
          FROM
              table;
    BEGIN
       OPEN cursor_one;
       LOOP
          FETCH cursor_one INTO id, desc;
          EXIT WHEN cursor_one%ROWCOUNT > 20 OR cursor_one%NOTFOUND;
       ...
       END LOOP;
       CLOSE cursor_one;
    END;
    
  • How to check a timertask calendar is still active or not?

    Hello

    I created the following code:

    class StateTracker extends TimerTask
    {
    Minu private;
            
    public StateTracker()
    {
    Timer = new Timer();
    Timer.Schedule (this, 5000, 150000); begins after 5seconds Repeat task every 150 seconds
    }

    public void run()

    ....

    }

    The code runs allright, unless, in certain circumstances, the task stopped after a few periodic race (I suspect is disconnected network). Y at - there any API I could use to check whether the calendar is still active or not.

    I would like to reschedule the timertask if the original schedule was disrupted.

    timertasks should not be used for the treatment of blocking. I would say to put the actual work load in an own thread.

    as long as the enforcement code is surrounded by exception handling, execution continues. There is no method to check if the timer is running correctly.

  • Can someone tell me please how to rotate a video Windows Media, so he will not play on the side?

    I took a video with my iphone 4S horizontally so that when it has been imported, it has been imported the same way. I have windows 7 and I've used Windows Media Center to import. How to rotate video from horizontal to vertical?

    Any help would be greatly appreciated my neck became painful! :-)
    Thank you!

    I took a video with my iphone 4S horizontally so that when it has been imported, it has been imported the same way. I have windows 7 and I've used Windows Media Center to import. How to rotate video from horizontal to vertical?

    Any help would be greatly appreciated my neck became painful! :-)
    Thank you!

    =================================
    Windows Media Player cannot rotate a video.

    Windows Live Movie Maker can turn a video clip, but you
    may need to convert the video to a compatible format like
    . WMV, before you can import it into Windows Live Movie
    Maker.

    See the following screenshot.

    Windows Live Movie Maker - rotate 90 ° right
    http://www.howtogeek.com/wp-content/uploads/2010/04/sshot710.PNG

    Also... the following article is maybe worth a visit:

    Shoot a video of 90 degrees with VLC or Windows Live Movie Maker
    http://www.howtogeek.com/HOWTO/14751/rotate-a-video-90-degrees-with-VLC-or-Windows-Live-Movie-Maker/

    After having shot the video... Save it in the WMV format.

    How to save the project in Windows Live Movie Maker to WMV Format
    http://www.YouTube.com/watch?v=ZyqZm5MBc7o

  • How to check the value of Disqualification working correctly?

    Hello

    I have problems using the processor to check the value in Disqualification. I want to check the customer name field for how many names contain 'TEST' in them. Here are the steps I follow, I hope that someone can identify where I'm wrong:

    1. Add checking the value

    2. in the ATTRIBUTES tab, add "Customer Name" as the field of Validation

    3. in the OPTIONS tab, add 'TEST' as against value to compare files, choose "is equal to", as the comparison operator, select 'Yes' to Ignore Case.

    In reviewing the data, I see many instances where TEST is in the name of customer - but the value record tells me that there is no example of this.

    Have I missed something obvious/fast?

    Thank you!

    Checking the value does not have a check Contains. Use the list check with the Contains option for this.

    You can press F1 on each processor for its help page if you are not sure about what he does.

    Mike

  • How to check the value (if it is null or not) in the application process

    Hello

    I click on a particular record to access the home page of my search after go touch, but I need to check a validation of NULL at this point, if a particular column is null, then I need to make it false.
    My column type is BLOB.

    Can someone suggest me how to find whether or NOT this column is NULL.


    Thank you
    Mahesh

    Published by: user8996062 on August 25, 2010 10:35

    Mahesh

    If you receive the null pointer exception to

    XxafpEepStageRebateHdrVOImpl vo = (XxafpEepStageRebateHdrVOImpl) am.findViewObject ("XxafpEepStageRebateHdrVO1");

    This means that you not give the good instance of vo. Do something please post your VO.xml and AM.xml files.

    Thank you
    AJ

  • How to check...  DST 2007 applies or not?

    I have Oracle 10 g R2 on HP - UX box. How about DST 2007 patch is applied or not this database?
    Thank you
    Smith

    Smith,

    Check this Doc ID: 471451.1 on metalink

    Concerning

  • How to check if the exe called by labview does not respond?

    Hi all

    Here's the situation:

    I have a main executable VI which calls on several other screws which are all in the form of exe.  Sometimes, when these other .exe are called, they open reduced as they are supposed to, but they begin the desired process because they become inadmissible.

    Basically, I wonder if there is a way to check if a window responds or not.  I'm using LabVIEW 2010 on a computer with Windows 7.  All the subVIs called by this VI have this problem but to different degrees.

    I thought that I might be able to do this through a reference application and research somehow the title of the window for "(ne répond pas) ', but I have not found a way to implement it."

    Thank you

    M

    I sometimes use a library of 3rd party called AutoIT to do things like move windows and check names, window titles.  Related download installs an ActiveX control that allows you to do.

    See here for a list of the supported control functions.  Look at the end (all functions starting with "Win").

  • How to check if the Message was open / read or not

    I always get the same result when I check if a message is read or not.

    By using this code:

                    me.getMessage();
                    if(me.getStatus()==Message.Status.TX_READ){
                        Dialog.alert("Read "+me.getStatus());
                    }else{
                        Dialog.alert("Not Read "+me.getStatus());
                    }
    

    He always says that he does not play, even if the message has been opened before.

    what I'm doing wrong here?

    Check the value of the getFlags, it's a bitpattern, not a number (like the flags of a field style)

  • How to check if something is changed on page or not

    I have an edit page where even if the user doesn't change anything and simply click on save page button gets submitted. I want to display a message to the user saying no changes to save if the user does not change anything on the page... Could you please guide me how to do this

    Use this:

    testVOImpl vo = am.findViewObject ("testVO1") (testVOImpl);
    if(vo!=null)
    {
    If (VO. IsDirty())
    {
    Go to a page of dialogue saying that page changed the changes.
    }

    }

    Thank you
    Gerard

  • How to check remotely if the process is running or not?

    Is there a way we can check if the process is running or not?

    Thank you

    Afonso

    The following WSDL allows you to check the status of remote process:

    http://servername: 8080/SOAP/services/TaskManagerQueryService? WSDL

    Steps to follow:

    1. with the help of TaskManagerQueryService , you can search your Instance of Process (with some filter settings).

    2 get the ProcessInstanceRow from the result list

    3. check the status of the process of processInstanceStatus property

    Hope that helps!

    Nith

  • How to check the HP management agent is working or not?

    Hi all

    I managed to install HP on ESXi 4.0 management agent by following the steps mentioned in http://h20000.www2.HP.com/bizsupport/techsupport/SoftwareDescription.jsp?swItem=MTX-25f06077ad5541f5a962dd2a69 & lang = to & cc = us & idx = 1 & mode = 4 & . Can you please suggest a simple method to make sure that the agent is running? as mark some system info or see the details in the user interface.

    C:\Program VMware vSphere CLI\bin & gt; vihostupdate.pl - root of the server test - username - password test-bundle FTP://testftp/pub/Depot/HP-esxi4.0uX-bundle-1.1.zip - install - bulletin bulletin1 bulletin2

    Please wait install the fix is underway...

    The update has been completed, but the system must be restarted for the changes to be effective.

    C:\Program VMware vSphere CLI\bin & gt; vihostupdate.pl - root of the server test - username - password test-bundle FTP://PDP-BLR-Suite/pub/Depot/HP-esxi4.0uX-bundle-1.1.zip -query

    -


    IDS bulletin-


    -
    Installed-.
    Summary
    .

    -


    HPQ - esxi4.0uX - bundle - 1.1 2010-01-29 T 15: 00:13 HP ESXi Bundle 1.1

    Kind regards

    Oumou khairy

    : +: EMCPA, RHCE, VCP4, VCP3.

    The easier option:

    In VC hardware status tab search HP smart Array storage. The default virtual circuit support HIS HP, need suppliers CIM HP to show this option.

    Anlother method is to stable wbemcli in a linux box, (in Ubuntu, you get using #apt - get wbemcli * installation command, or download a compilation of the sblim packa, redhat has in their CD or you can get from sourceforge.net) and try the following query.

    wbemcli ecn - nl - noverify ' [https://root:[email protected]/root/hpq[email protected]/root/hpq].

    the above query should list a bunch of classes.

Maybe you are looking for

  • Click-Mini satellite L9W - B - Linux installation issues

    Hello I try to install linux on a toshiba mini-click L9W - B. Since I was able to boot with the USB (UEFI only) I've got trouble finding drivers to be able to use the card Wifi and the keyboard Dock. Ony 8.2 debian is able to start with a touchscreen

  • Portege Z30T - A - 10 X availability in France

    Hi all, naïve question: I read brilliant reviews on model Z30t-A-10 X.However I can't seem to find anywhere in France, it's very frustratingsomeone knows who, and when it will be available and where to find today? Thank youLuke

  • linear adjustment with a graphics buffer

    I want to be able to graph data and linear adjustment data stored in the buffer of real-time graphics.  I can't understand how split the x and y tables of the output of the graphics buffer.  Any help would be appreciated.  I have attached a sample pr

  • I forgot the password of windows on my old laptop, how I overcame this problem

    I have an older laptop Acer with windows Vista, which went under XP. The PC has not been used for awhile and I'm giving away there but must take all the info from him.Unfortunately I forgot the password of windows and can not enter, how to fix this p

  • My computer asks me what language I want in there, then it say's it's a startup repair.

    My computer asks me what language I want in there, then it say's it's a startup repair. And nothing happens, it keeps the of saying I should send him the info at microsoft, but he's going through. What is the problem with my computer? Help I have a p