Apps in AIX?

Hi Gurus,
Could I get some interview tips from Oracle Apps DBA in AIX?
I know EBS in Windows and Linux, What are the differences in the AIX for 11i/R12 installation, check services, check disk space, paching, cloning, copy, config.txt path, other path, net configuration, hostname and domain name configuration, etc?
Thanks and Regards,

Hi,
Could I get some interview tips from Oracle Apps DBA in AIX? I agree with the above. If you are familiar with one Unix flavor you should be able to answer the questions of Oracle Apps database on other platforms.
Thanks,
Hussein

Similar Messages

  • Use to running apps on windows - how do i do it on aix??

    hi all -
    im running into issues with running my app locally on windows. it works fine most of the time but when i run my java app with this one particular file i get errors bc it looks for a path on an AIX box.
    i want to run my app on AIX now - do i need to create the jar on windows then upload it to aix and then run it???
    im stumped now. any suggestions
    thx in advance

    It depends what you mean by "it is looking for a path". If you mean that there is a hardcoded path in your code that is specific to your AIX box, then consider setting a system property in you run command that points to the appropriate path. Added something like
    -Dmyapp.path1=/path/to/files
    then using System.getProperty ("myapp.path1") will get you the path.

  • Transfer a file from App Server to a FTP site.

    Hi, Abapers.
    I need your help. Probably, this topic has already been posted in a similar way, but we need an answer to solve our problem.
    We have to sent a PDF file from a directory of our app server (AIX) to a FTP directory... which would the FM sequence we should use to goal it?
    Best Regards.

    Hi Santiago,
    create fm to send file from APP server to FTP site.
    if you want to Post file from desktop to Appl use Transaction - CG3Y
    if you want to Post file from Appl to Desktop use Transaction - CG3Z
    copy the code below....
    *  Author: Prabhudas                            Date:  02/21/2006  *
    *  Name: Z_FTP_FILE_TO_SERVER                                          *
    *  Title: FTP File on R/3 Application Server to External Server        *
    *"*"Local Interface:
    *"  IMPORTING
    *"     REFERENCE(DEST_HOST) TYPE  C
    *"     REFERENCE(DEST_USER) TYPE  C
    *"     REFERENCE(DEST_PASSWORD) TYPE  C
    *"     REFERENCE(DEST_PATH) TYPE  C
    *"     REFERENCE(SOURCE_PATH) TYPE  C
    *"     REFERENCE(FILE) TYPE  C
    *"     REFERENCE(BINARY) TYPE  CHAR1 OPTIONAL
    *"     REFERENCE(REMOVE_FILE) TYPE  CHAR1 OPTIONAL
    *"  TABLES
    *"      FTP_SESSION STRUCTURE  ZMSG_TEXT OPTIONAL
    *"  EXCEPTIONS
    *"      CANNOT_CONNECT
    *"      SOURCE_PATH_UNKNOWN
    *"      DEST_PATH_UNKNOWN
    *"      TRANSFER_FAILED
    *"      COMMAND_FAILED
      DATA: w_password     TYPE zftppassword,
            w_length       TYPE i,
            w_key          TYPE i                  VALUE 26101957,
            w_handle       TYPE i,
            w_command(500) TYPE c.
      REFRESH ftp_session.
    * Scramble password (new Unicode-compliant routine)
      w_length = STRLEN( dest_password ).
      CALL FUNCTION 'HTTP_SCRAMBLE'
        EXPORTING
          SOURCE      = dest_password
          sourcelen   = w_length
          key         = w_key
        IMPORTING
          destination = w_password.
    * Connect to FTP destination (DEST_HOST)
      CALL FUNCTION 'FTP_CONNECT'
        EXPORTING
          user            = dest_user
          password        = w_password
          host            = dest_host
          rfc_destination = 'SAPFTPA'
        IMPORTING
          handle          = w_handle
        EXCEPTIONS
          not_connected   = 1
          OTHERS          = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
          WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4
          RAISING cannot_connect.
      ENDIF.
    * Optionally, specify binary file transfer
      IF binary = 'X'.
        w_command = 'bin'.
        CALL FUNCTION 'FTP_COMMAND'
          EXPORTING
            handle        = w_handle
            command       = w_command
          TABLES
            data          = ftp_session
          EXCEPTIONS
            command_error = 1
            tcpip_error   = 2.
        IF sy-subrc <> 0.
          CONCATENATE 'FTP command failed:' w_command
            INTO w_command SEPARATED BY space.
          MESSAGE ID 'ZW' TYPE 'E' NUMBER '042'
              WITH w_command
              RAISING command_failed.
        ENDIF.
      ENDIF.
    * Navigate to source directory
      CONCATENATE 'lcd' source_path INTO w_command SEPARATED BY space.
      CALL FUNCTION 'FTP_COMMAND'
        EXPORTING
          handle        = w_handle
          command       = w_command
        TABLES
          data          = ftp_session
        EXCEPTIONS
          command_error = 1
          tcpip_error   = 2.
      IF sy-subrc <> 0.
        CONCATENATE 'FTP command failed:' w_command
          INTO w_command SEPARATED BY space.
        MESSAGE ID 'ZW' TYPE 'E' NUMBER '042'
            WITH w_command
            RAISING source_path_unknown.
      ENDIF.
    * Navigate to destination directory
      CONCATENATE 'cd' dest_path INTO w_command SEPARATED BY space.
      CALL FUNCTION 'FTP_COMMAND'
        EXPORTING
          handle        = w_handle
          command       = w_command
        TABLES
          data          = ftp_session
        EXCEPTIONS
          command_error = 1
          tcpip_error   = 2.
      IF sy-subrc <> 0.
        CONCATENATE 'FTP command failed:' w_command
          INTO w_command SEPARATED BY space.
        MESSAGE ID 'ZW' TYPE 'E' NUMBER '042'
            WITH w_command
            RAISING dest_path_unknown.
      ENDIF.
    * Transfer file
      CONCATENATE 'put' file INTO w_command SEPARATED BY space.
      CALL FUNCTION 'FTP_COMMAND'
        EXPORTING
          handle        = w_handle
          command       = w_command
        TABLES
          data          = ftp_session
        EXCEPTIONS
          command_error = 1
          tcpip_error   = 2.
      IF sy-subrc <> 0.
        CONCATENATE 'FTP command failed:' w_command
          INTO w_command SEPARATED BY space.
        MESSAGE ID 'ZW' TYPE 'E' NUMBER '042'
            WITH w_command
            RAISING transfer_failed.
      ENDIF.
    * Disconnect from destination host
      CALL FUNCTION 'FTP_DISCONNECT'
        EXPORTING
          handle = w_handle.
    * Optionally, remove file from source directory
      IF remove_file = 'X'.
       CONCATENATE source_path '/' file INTO w_command.
      CONCATENATE 'rm' w_command INTO w_command SEPARATED BY space.
       OPEN DATASET '/dev/null' FOR OUTPUT FILTER w_command.
       CLOSE DATASET '/dev/null'.
    ENDIF.
    Regards,
    Prabhudas

  • Where can I download 12i Vision for AIX ?

    Can anyone tell me where I can download the 12i vision app for AIX?
    TIA

    You can download it from the link posted above.
    - Go to Oracle E-Delivery Site
    - Enter your information
    - Select a Product Pack: E-Business Suite
    - Platform: AIX5L Based Systems (64-bit)
    - Click on "Oracle® E-Business Suite Applications Release 12.0 Media Pack for AIX5L Based Systems"
    - Download FROM "Oracle Applications Release 12.0 Rapid Install Start Here (Part 1 of 5)" - B42431-01 TO "Oracle Applications Release 12.0 for AIX Based Systems Rapid Install APPL_TOP - Disk 2 (Part 2 of 2)" - V10206-01

  • Installing BO XI R2 on a 64 bits machine

    Post Author: bollam
    CA Forum: Deployment
    Hi all,
    I have to installed BO XI R2 on a win 2003 server with AMD Opteron processors. The OS is 64 bits. But somewhere in file called "Platforms.txt", inside the documentation of the BO XI CD, it wrote that BO technical support, does not support the BO XI installation on a 64 bits machine.
    If it is true, I want to know if, it is still true. Because time passed, and maybe now BO technical support, are now supporting the installs on 64 bits machine.
    Regards
    find here, an extract of the file I read.
    Configuration matérielle minimale requise pour BusinessObjects Enterprise XI R2===============================================================================
    P3 700 Mhz* 1Go de RAM* 5 Go d'espace disponible sur le disque dur pour BusinessObjects Enterprise et 1,5 Go d'espace supplémentaire pour les produits de pilotage des performances* CD-ROM
    Le support technique Windows est strictement limité aux jeux de composants Intel/AMD 32 bits. S'il est utilisé avec d'autres jeux de composants, le logiciel BusinessObjects Enterprise pour Windows n'est ni garanti ni pris en charge par le support technique.
    Correctifs importants de Business Objects et de MSFT----
    Business Objects prend en charge et recommande l'installation de tous les correctifs importants de MSFT pour les systèmes d'exploitation répertoriés ci-dessus.
    Serveurs d'applications pris en charge======================================    Serveur d'applications        JDK----
    IIS 5.0                      N/A        * IIS 6.0                      N/A         * OAS 10G Rel.2 (10.1.2)       1.4.2_x    &#91;*&#93; SAP WAS 6.40  SP11           1.4.2_x   &#91;*&#93; Tomcat 5.0.27                1.4.2_08+* WebLogic 8.1 SP4             1.4.2_x   &#91;*&#93; WebSphere 5.1.0.4            1.4.1_x* WebSphere 5.1.1.0            1.4.2_x* WebSphere 6.0.0.1            1.4.2_x                  Non pris en charge pour les produits de pilotage des performances.&#91;**&#93; Prise en charge des produits de pilotage des performances prévue après la sortie générale de XI R2.

    Post Author: TAZ
    CA Forum: Deployment
    From what I can tell 64bit hardware is starting to be supported in XIR1/R2
    Here is a guideline (note this is subject to change).
    Don't ask me to fill in the blanks I didn't write this statement.
    "There has been considerable confusion regarding what is and what is not supported in terms of 64-bit operating systems and 64-bit chipsets for BOE, CRS, and CVS.  The list below reflects the current definitive answer for XI R1 and XI R2.The following are the supported and not supported OS/chipset combinations for BOE, CRS and CVS w/ regard to 64-bit OS and 64-bit chipsets: Windows 32-bit on 64-bit AMD/Intel chipset:  supported for BOE, CRS, and CVSWindows 64-bit:  not supportedLinux (Red Hat and SUSE) 32-bit on 64-bit AMD/Intel chipset:  supported for BOE, CRS, and CVSLinux (Red Hat and SUSE) 64-bit:  not supportedSun SPARC 64-bit:  supported for BOE (BOE runs as a 32-bit app)IBM AIX RISC 64-bit:  supported for BOE (BOE runs as a 32-bit app)HP-UX** on PA-RISC 64-bit:  supported for BOE (BOE runs as a 32-bit app)No other chipset architectures (including Itanium) for any of the above OS are supported whether the OS is 32-bit or 64-bit. The database client drivers used by BOE, CRS, and CVS must also be 32-bit, but the database server software, OS, chipset, hardware, and little LED light that let's you know whether the server is powered on or not can be whatever the database vendor supports.**  HP-UX is only supported by BOE XI R2"
    Regards
    Tim

  • AL16UTF16 as nchar set

    I'm trying to wrap my head around multi-byte character set support and I'm having quite the time. Our production database was created before my time, so I don't have a good reason why it was created with the WE8MSWIN1252 character set, but here's our setup.
    10.2.0.2 ( upgraded from 8.1.7->9.2.0 ) EE on AIX 5.3
    character set WE8MSWIN1252
    Ncharset AL16UTF16
    I created a test table
    create table balvey.tsting (COL1 VARCHAR2(50), COL2 NVARCHAR2(50), id number, descrip varchar2(30));
    and inserted some records via different connections from a windows client. And none of them really gave me what I was expecting. I used sqldev connected to 10.2 db with AL32UTF32 character set and the following select to get the greek phi symbol 'Φ' and then copy/pasted from there into each insert statement.
    From Putty connection on win client to the server.
    insert into balvey.tsting values
    ('.', '.', 1, 'phi aix/slqplus 1252');
    insert into balvey.tsting values
    (chr(52902), chr(52902), 2, '52902 aix/sqlplus 1252');
    From sql*plus on win client.
    insert into balvey.tsting values
    ('F', 'F', 3, 'phi win/sqlplus 1252');
    insert into balvey.tsting values
    (chr(52902), chr(52902), 4, '52902 win/sqlplus 1252');
    From sqldeveloper on win client
    insert into balvey.tsting values
    ('Φ', 'Φ', 5, 'Φ win/sqldev 1252');
    insert into balvey.tsting values
    (chr(52902), chr(52902), 6, '52902 win/sqldev 1252');
    Then selecting back out of the database from each client application I didn't get the Φ from any of the records. It didn't surprise me that I didn't get it from the varchar2 column, but I thought I would have gotten it from the nvarchar2 columns, at least from the sqldev application.
    here are the results from selecting back out via each client app.
    from aix client
    system@JDEDEV> select * from balvey.tsting order by id;
    COL1                           COL2                                   ID DESCRIP
    .                              .                                       1 phi aix/slqplus
    ¦                              ¦                                       2 52902 aix/sqlplus
    F                              F                                       3 phi win/sqlplus
    ¦                              ¦                                       4 52902 win/sqlplus
    ¦                              ¦                                       5 ¦ win/sqldev
    ¦                              ¦                                       6 52902 win/sqldev
    6 rows selected.
    from sqlplus on win client
    SQL> select * from balvey.tsting order by id;
    COL1                           COL2                                   ID DESCRIP
    .                              .                                       1 phi aix/slqplus
    ¦                              ¦                                       2 52902 aix/sqlplus
    F                              F                                       3 phi win/sqlplus
    ¦                              ¦                                       4 52902 win/sqlplus
    ¦                              ¦                                       5 ¦ win/sqldev
    ¦                              ¦                                       6 52902 win/sqldev
    from sqldev on win client
    select * from balvey.tsting order by id;
    .     .     1     phi aix/slqplus
    ¦     ¦     2     52902 aix/sqlplus
    F     F     3     phi win/sqlplus
    ¦     ¦     4     52902 win/sqlplus
    ¦     ¦     5     ¦ win/sqldev
    ¦     ¦     6     52902 win/sqldev Edited by: PktAces on Jan 7, 2009 12:33 PM
    Edited by: PktAces on Jan 7, 2009 12:35 PM

    Well, I'm not running into ora- errors or using an 8i client to connect, but I think in-directly you have helped to clear up some of the confusion. That ML note points to ML #227330.1 and point #14 in that note is, "14. I'm inserting <special character> in a Nchar or Nvarchar2 col but it comes back as ? or ¿ ...". I wasn't necessarily getting the ? or ¿ but that lead me to the suggestion to add the setting to SqlDeveloper to allow the N flag in the insert statement, like so:
    insert into balvey.tsting values
    ('Φ', N'Φ', 9, 'NΦ win/sqldev');
    Which I had already tried but it didn't work until the setting change. Then when selecting back out via sqldeveloper does return the Φ from the NVARCHAR2 field. It also pointed to using sqlloader to load from a flat file due to sqlplus not being a UNICODE application.
    So while I'm still far from understanding all there is to know about character sets, I'm not quite as confused now. Thanks.

  • ORACLE APPS migration from AIX to Linux

    Dear All,
    Please help me to understand the following scenario of ORACLE APP'S migration.
    One of my client currently using Oracle APP'S ver 11.0.3 DB version 8.0.5 running on IBM AIX platform.
    Currently three customized module under operation with 50 forms and reports.
    Also some external application integrated with the current oracle financial 11.0.3.
    The client is more interested to migrate their platform to linux based server.
    They wants to move the current set up to the new version EBS along with the existing customized module. (My question is it possible to migrate the customized module to another platform. AIX to Linux)
    If so , where i can find the right document to explore more idea of this scenario of migration.
    Thanks in advance.
    Regards,
    Ram.
    Dear all,
    looking for experts help is this regard.
    Thanks.
    Ram
    Message was edited by:
    rambtn

    ram,
    I am going to do the similar upgrade with replatform at the same time. I collect the information from forum and finally get an indicator to how to do it. You need to read the "Upgrading the Oracle Applications", B19297-01
    "Installing Oracle Applications" B19296-01 and
    "Maintenance Utilities" B19300-01
    The documentation mentioned the way for upgrade an 11.0 version of EBS to latest release including some pre-upgrade tasks including the database version upgrade to work with 11i, etc.
    Hope this help.
    mcken

  • Oracle Apps 11i(11.5.10.2) migration from IBM AIX 5.3 to 6.1 (64-bit)

    Hi,
    Is there any additional steps required after migrating Oracle Apps 11i(11.5.10.2) from IBM AIX 5.3 to 6.1?
    Regards,
    Kiran

    Is there any additional steps required after migrating Oracle Apps 11i(11.5.10.2) from IBM AIX 5.3 to 6.1? Are you cloning or upgrading the OS?
    If you want to upgrade the OS, then you need to make sure you install all OS pre-req software and packages aftet the upgrade and relink executable files.
    How to relink an Applications Installation of Release 11i and Release 12 [ID 356878.1]
    Recommendations To Install Oracle Applications 11i [ID 294932.1]
    Oracle Applications Installation Update Notes, Release 11i (11.5.10.2) [ID 316806.1]
    If you want to clone, then make sure you have all OS pre-req. software and packages installed and use Rapid Clone -- Rapid Clone Documentation Resources For Release 11i and 12 [ID 799735.1]
    Thanks,
    Hussein

  • Run SGEN in linux while Importing transports from AIX app serevrs

    Hi
    We have multiple AIX and Linux app servers for SAP NW 2004s/SCM 5.0 systems. We completed SGEN in AIX app servers. We need to import more than 300 transports. Can we run SGEN on Linux app servers (we will remove LINUX app servers from SMLG to prevent user logon from LINUX app servers) while we importing transports from AIX app servers? Will it be any impact with REPOSRC/REPOLOAD or Object locking?
    Thanks
    Dilip

    Yes We do run SGEN both servers. and it takes double the time. My question is can we run SGEN on Linux while importing transports using AIX app servers. So this way we can gain sometime durinng our Mock Cutover timeline.

  • Issues after installing apps r12.1.1 on IBM AIX server 6.x

    hi ,
    I have done the single node Apps r12.1.1 installation on IBM AIX 6.x server. I am requesting someone to please help me with the following issues.
    1. The installation has happened on a single node..single dir structure /U02/….. At present, I am able to open all HTML pages, but not any form. While opening forms, its giving following error.
    FRM 92101: There was a failure in the forms server during startup. This could happen due to invalid configuration.
    Please look into the web server log files for details.
    2. At present commands and TOPs don’t work (e.g. sqlplus, or $APPL_TOP etc). How they can be setup so that the commands can be run anywhere and cd $XXX_TOP commands can be issued to move to respective TOPs.
    3. I ran the adautocfg.sh after implementation. While running, I saw that it configured the XXX_TOPs. But, unable to use them. What else is required to be run? Did I miss out on any other files?
    Thanks in advance.
    Regards,
    Vamshi

    Hi,
    1. The installation has happened on a single node..single dir structure /U02/….. At present, I am able to open all HTML pages, but not any form. While opening forms, its giving following error.
    FRM 92101: There was a failure in the forms server during startup. This could happen due to invalid configuration.
    Please look into the web server log files for details.This is a generic error, so please check the application.log file for details about the error.
    2. At present commands and TOPs don’t work (e.g. sqlplus, or $APPL_TOP etc). How they can be setup so that the commands can be run anywhere and cd $XXX_TOP commands can be issued to move to respective TOPs.You need to source the application/database env file, $APPL_TOP/APPS<CONTEXT_NAME>.env and $ORACLE_HOME/<CONTEXT_NAME>.env
    Please see "Oracle Applications Maintenance Utilities" for details -- Page 1-11/1-12
    Oracle Applications Maintenance Utilities
    http://download.oracle.com/docs/cd/B53825_03/current/acrobat/121admu.pdf
    3. I ran the adautocfg.sh after implementation. While running, I saw that it configured the XXX_TOPs. But, unable to use them. What else is required to be run? Did I miss out on any other files?You need to source the application env file again to set this custom top.
    Please see old threads which discuss the same topic.
    How to create a custom top in R12
    How to create a custom top in R12
    CUSTOM_TOP
    http://forums.oracle.com/forums/search.jspa?threadID=&q=CUSTOM_TOP&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Java.lang.UnsatisfiedLinkError: /u01/app/oracle/mw_ofrdev01/Oracle_FRHome1/oui/lib/aix/liboraInstaller.so

    we are using 64bit IBM AIX machine with 7.1 os with java 64 bit version,
    while applying a patch on oracle forms and reports 11gR2, we come across of a error that opatch will not work with 64bit java, so we found this doc 1512163.1 and followed the same,
    but now while executing the below commands,
    ./opatch -lsniventory
    and ./opatch apply, we are gettting the below error,
    java.lang.UnsatisfiedLinkError: /u01/app/oracle/mw_ofrdev01/Oracle_FRHome1/oui/lib/aix/liboraInstaller.so ( 0509-022 Cannot load module /u01/app/oracle/mw_ofrdev01/Oracle_FRHome1/oui/lib/aix/liboraInstaller.so.
    0509-026 System error: Cannot run a file that does not have a valid format.)
    at java.lang.ClassLoader.loadLibraryWithPath(ClassLoader.java:1005)
    at java.lang.System.load(System.java:485)
    at oracle.sysman.oii.oiip.osd.unix.OiipuUnixOps.loadNativeLib(OiipuUnixOps.java:402)
    at oracle.sysman.oii.oiip.osd.unix.OiipuUnixOps.<clinit>(OiipuUnixOps.java:125)
    at java.lang.J9VMInternals.initializeImpl(Native Method)
    at java.lang.J9VMInternals.initialize(J9VMInternals.java:196)
    at oracle.sysman.oii.oiip.oiipg.OiipgEnvironment.ssgetUidux(OiipgEnvironment.java:528)
    at oracle.sysman.oii.oiix.OiixEnvironmentOps.ssgetUidux(OiixEnvironmentOps.java:159)
    at oracle.opatch.OUIReplacer.isRootAccess(OUIReplacer.java:832)
    at oracle.opatch.OPatch.main(OPatch.java:518)
    Exception in thread "main" java.lang.UnsatisfiedLinkError: oraInstaller (Not found in java.library.path)
    at java.lang.ClassLoader.loadLibraryWithPath(ClassLoader.java:1005)
    at java.lang.ClassLoader.loadLibraryWithClassLoader(ClassLoader.java:969)
    at java.lang.System.loadLibrary(System.java:497)
    at oracle.sysman.oii.oiip.osd.unix.OiipuUnixOps.loadNativeLib(OiipuUnixOps.java:420)
    at oracle.sysman.oii.oiip.osd.unix.OiipuUnixOps.<clinit>(OiipuUnixOps.java:125)
    at java.lang.J9VMInternals.initializeI

    can someone give your inputs here to resolve the issue?

  • Can anybody provide AIX shell script for Oracle Apps R12 instance backup

    Hi
    Can anybody provide AIX shell script for Oracle Apps R12 instance backup? Manually, i am able to backup but i donot have shell script to schedule through crontab.
    Help me please.
    Thanks

    Rman can be used for Database, not for Application tier. Again, I assumed you are looking for a script to backup the database. For the application tier, you can simply do a filesystem backup.
    I still do not understand your concern? Is it about using crontab? If so, then check here --> man crontab <--

  • Migrate Oracle apps database from AIX to Linux

    Hello,
    We are planning to move oracle 11i apps database from AIX to Linux. If anyone done recently please share your knowledge.
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit
    PL/SQL Release 10.2.0.4.0 - Production
    CORE 10.2.0.4.0 Production
    TNS for IBM/AIX RISC System/6000: Version 10.2.0.4.0 - Productio
    NLSRTL Version 10.2.0.4.0 - Production
    Thanks
    Prince

    user12094010 wrote:
    Hello,
    We are planning to move oracle 11i apps database from AIX to Linux. If anyone done recently please share your knowledge.
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit
    PL/SQL Release 10.2.0.4.0 - Production
    CORE 10.2.0.4.0 Production
    TNS for IBM/AIX RISC System/6000: Version 10.2.0.4.0 - Productio
    NLSRTL Version 10.2.0.4.0 - Production Hi Prince,
    To move/migrate the 11i Apps Database alone means you need to follow the export/import method.
    Please refer the note: 362205.1 "10g Release 2 Export/Import Process for Oracle Applications Release 11i"
    In general steps to follow the DB migration is :
    1. create the complete export file in source database
    2.create a new DB in the target instance
    3.perform the import
    4.create the new auto-config and sync with apps tier
    -Rk

  • Attach App server to AIX

    Dear Expert,
    I am installing App server on SUSE 10 SP2 DB2 9.5 using sapinst, and have the problem when sapinst ask the profile directory. In this step, i have given the sapmnt/<SID>/profile directory which have been mounted before to SUSE server from AIX 5.3, however the system complain regarding the directory like this:
    - Can not access </sapmnt/P01/global/db6/db2cli.ini or </usr/sap/P01/SYS/global/db6/db2cli.ini>. Please mount directories from global host.
    FYI, the system that was mounted is central system running on AIX 5.3, i have chmod -R 777 to /sapmnt/P01/ and it still stuck on the same message.
    Please advise how to proceed the step.
    Thanks in advance.
    Regards,
    Rudi

    Hello Rudi,
    Please check note 1268305
    regards,
    John Feely

  • Problem installing lastest App Server on AIX

    I am installing on AIX 5.2, the maintenance level is 5.2.009, it passes all the preliminary steps including the amount of temp space, then it exits with an error that it cannot write to the /tmp/OraInstall... directory it had just created. There is plenty of space and the user i am installing as (oracle) can write to that directory.
    Any ideas?

    I am installing Oracle 10g AS 10.1.3 for AIX, should be the latest version. I haven't had a chance to select any particular type of install because the installer doesn't start up.
    The installer log entries:
    All installer requirements met.
    Checking operating system patches: IY76141:bos.mp:5.2.0.76,IY76141:bos.mp64:5.2.0.76,IY76141:bos.up:5.2.0.76 Passed
    Checking operating system packages: bos.adt.base,bos.adt.lib,bos.adt.libm,bos.perf.libperfstat,bos.perf.perfstat,bos.perf.proctools Passed
    Checking swap space: must be greater than 1536 MB. Actual 1664MB Passed
    Checking Temp space: must be greater than 1000 MB. Actual 1052 MB Passed
    $

Maybe you are looking for