Oracle 11.2.0.3 from 11.1.0.7 - After DBUA

Ran DBUA against a test DB, but now unable to connect.
This is a Multi-Homed environment 11.2.0.3, 11.1.0.7, 10.2.0.2.
Current Listener/TNS is running from 11.1 $ORACLE_HOME/network/admin
How is the best way to transition to 11.2.0.3 $ORACLE_HOME....
w/o affecting existing connections?
Would this be best performed in off-peak hours?
Generally how long does it take to transition?
./lsnrctl ?

I don't want to shutdown the exisiting Listener, just want to bring up second one on a different port to verify working.
However, this might be useful when we have to shutdown existing.
At that point how do we make this the default listener for the server? (once we get all the DB's upgraded and tested)?
Do we need to modify the TNS_ADMIN variable?
Is there any file we need to modify?
I know that we will need to change the initSID.ORA, LISTENER.ORA, and TNSNAMES.ORA files, anything else?
Currently we have to start the second listener with LSNRCTL start LISTENER2.

Similar Messages

  • Error while accessing Oracle E-Business Suite 11i from Linux/firefox

    error while accessing Oracle E-Business Suite 11i from Linux/firefox
    OS: SUSE Linux Desktop 11(SLED11)
    Web browser: firefox 3.x
    Java versions:
    # rpm -qa |grep java
    java-1_6_0-sun-plugin-1.6.0.u18-0.1.1
    java-1_6_0-sun-1.6.0.u18-0.1.1
    # java -version
    java version "1.6.0_18"
    Java(TM) SE Runtime Environment (build 1.6.0_18-b07)
    Java HotSpot(TM) Server VM (build 16.0-b13, mixed mode)
    when I access the url firefox says
    "Additional plugins are required to display all the media on this page"
    then I clicked on "Install Missing Plugin" button
    then I got the following message
    No Suitable Plugins were found
    Unknown Plugin (application/x-java-applet;jpi-version=1.4.1)
    please help/suggest
    Regards

    Hi user;
    Its not certified to login EBS from linux client
    Please check:
    Linux-cleint (ebs) certification
    pluggins
    Hope it helps
    Regard
    Helios

  • Migrate Oracle EBS 12.1.3 from Microsoft Windows 2003 32-Bit to Linux

    Hi
    We are currently using Oracle EBS 12.1.3 on Microsoft Windows 2003 32-Bit. We are planning to migrate to linux. I have gone through the certification matrix and the following versions certified with Oracle EBS 12.1.3
    1. Linux x86 Oracle Linux 5
    2. Linux x86 Oracle Linux 4
    3. Linux x86 Red Hat Enterprise Linux 5
    4. Linux x86 SLES 10
    Question #
    1Q) I would like to know is there any linux freeware which is certified with Oracle EBS 12.1.3
    2Q) Also please let me know which documents I need to follow to migrate Oracle EBS 12.1.3 from Microsoft Windows to Linux

    1Q) I would like to know is there any linux freeware which is certified with Oracle EBS 12.1.3No.
    2Q) Also please let me know which documents I need to follow to migrate Oracle EBS 12.1.3 from Microsoft Windows to LinuxApplication Tier Platform Migration with Oracle E-Business Suite Release 12 [ID 438086.1]
    To migrate the database you can use export/import or transportable tablespaces -- Refer to these docs for details:
    Export/Import Process for Oracle E-Business Suite Release 12 using 10gR2 [ID 454616.1]
    Export/import process for R12 using 11gR1 or 11gR2 [ID 741818.1]
    Using Transportable Database to migrate E-Business Suite R12 Using Oracle Database 10gR2 or 11g [ID 734763.1]
    Thanks,
    Hussein

  • Oracle E-Business Suit Upgrade from R12.0.6 +10.2.0.3 to R12.1.3 +11.2.0.2

    Dear Experts,
    Let me update you that one of our client is looking to upgrade their Oracle E-Business Suit Verion from R12.0.6 to R12.1.3. and database version from 10.2.0.3 to 11.2.0.2.
    Current all the financial and SCM modules are implemented on there production instance.
    We would like to know what are the pre and post upgrade activities needs to be performed ?
    What are the list of patches which needs to performed while doing an upgade from
    R12.0.6 to R12.1.1 - R12.1.3.
    Regards
    Mohammed.

    Please advise on the below approach....
    R12.1.1 to R12.1.3 upgrade high level steps
    Install upgrade / EBS Patch
    Pre-install R12.1     
    1. Setup hardware.     
    2. Install and setup OS.     
    Install R12.1.1     
    3. Install R12.1.1 (run Rapid Wiz)     
    Post –Install R12.1.     
    4. Upgrade Opatch in 10.1. home     
    5. Upgrade /patch OAS 10.1.2.3 (inc in R12.1.1)     
    6. Redeploye forms.ear     
    Pre-install R12.1.3     
    7. Upgrade OPatch in database home     
    8. Upgrade OPatch Database in 11.1.0.7     
    9. Upgrade OPatch in 10.1.3 Home     
    10. Upgrade /Patch OAS 10.1.3.4 to .5     
    11. Upgrade Java to 1.6_0_17 or lower     
    Install R12.1.3     
    12. Apply EBS R12.1.3 maintenance pack

  • Oracle 10g - issue with "DELETE from TABLE WHERE ID in (1,2,3)" (cfqueryparam used)

    Hello, everyone.
    I am having issues with running a DELETE statement on an Oracle 10g database.
    DELETE
    FROM tableA
    WHERE ID in (1,2,3)
    If there is only one ID for the IN clause, it works.  But if more than one ID is supplied, I get an "SQL command not properly ended" error message.  Here is the query as CF:
    DELETE
    FROM TRAINING
    WHERE userID = <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#trim(form.userID)#">
         AND TRAINING_ID in <cfqueryparam value="#form.trainingIDs#" cfsqltype="CF_SQL_INTEGER" list="yes">
    Anyone work with Oracle that can help me with this?  I'm an experienced MS-SQL developer; Oracle is new to me.
    Thanks,
    ^_^

    Nevermind.. a co-worker just told me that I still have to use parenthesis around the values for the IN clause. 

  • Please help to call oracle procedure with out paramter from shell script

    Hi
    I want to call a process with out parameter from shell script. I am calling process in shell script in below way
    function Process_loads {
    ( echo 'set serveroutput on size 1000000 arraysize 1'
    echo "set pagesize 0 term on verify off feedback off echo off"
    echo "BEGIN"
    echo " dbms_output.put_line('Before Calling The package'); "
    echo " x ( '$1', '$2', '$2', '$4', '$5', '$error_code'); "
    echo " dbms_output.put_line('After Calling The package'); "
    echo "EXCEPTION "
    echo " WHEN OTHERS THEN "
    echo " dbms_output.put_line('BIN_LOAD_ERROR' || SQLERRM); "
    echo " ROLLBACK;"
    echo "END;"
    echo "/" ) | sqlplus -s $USER/$PASSWORD@$SID
    Here $error_code is out paramter. All varaibles passed in process are declared with export command.
    When executing .sh it gives below error
    "sh ERROR at line 3: ORA-06550: line 3, column 99: PLS-00363: expression '' cannot be used as an assignment target ORA-06550: line 3, column 3: PL/SQL: Statement ignored".
    Please help to get rid from this error or please suggest how to call a oracle procedure with out paramter from unix shell script.
    Thanks in advance

    You can try this:
    From sql*plus
    SQL> ed
      1  create or replace procedure my_proc(p_id in int, p_result out int)
      2  as
      3  begin
      4  select 10 * p_id
      5  into p_result
      6  from dual;
      7* end my_proc;
    SQL> /
    Procedure created.
    SQL> set serveroutput on
    SQL> declare
      2  v_r int;
      3  begin
      4  my_proc(10,v_r);
      5  dbms_output.put_line(v_r);
      6  end;
      7  /
    100
    PL/SQL procedure successfully completed.
    from bash:
    testproc.sh:
    #!/bin/bash
    (echo 'set serveroutput on';
    echo 'declare';
    echo 'v_r int;';
    echo 'begin';
    echo 'my_proc(10,v_r);';
    echo 'dbms_output.put_line(v_r);'
    echo 'end;';
    echo '/';) | sqlplus -s u1/u1
    Console:
    oracle@mob-ubuntu:~$ chmod u+x testproc.sh
    oracle@mob-ubuntu:~$ ./testproc.sh
    100
    PL/SQL procedure successfully completed.With kind regards
    Krystian Zieja

  • Fast fromula related to oracle payroll are not called from Formula result window

    Hi,
    Few of the fast fromula related to oracle payroll are not called from Formula result window , please let me know how these fast formulas are called.
    Example : PAY_GB_EDI_MOVDED6_FOOTER
    Thanks,
    Subbu.

    Hi Subbu,
    Some reports are handled by the PYUGEN engine as Magnetic reports.
    These are old fashion reports to generate Magnetic files, like BACS EDI files etc..
    select * from ff_formulas_f
    where formula_name like 'PAY_GB_EDI_MOVDED6%';
    If you see the above, there are 3 formulas defined for generating this report - Header, Body & Footer.
    All are called in a sequence by the PYUGEN process based on what you seed in pay_magnetic_blocks.
    All the logic is within these Fast formulas.
    But as they're seeded there's nothing much you can do.
    Cheers,
    Vignesh

  • Can I use Oracle Report Server to print from APEX? How?

    Hello, we have Oracle Application server, Oracle Report server and now we just installed APEX and doing a pilot project. Since we don't have BI Publisher, how can we use our Oracle Report server to print from apex report? Can it be done and if yes where can I get some detail info that I can share with our DBA?
    I have in past asked questions about the printing issues but I have been refered to http://www.oracle.com/technology/products/database/application_express/html/configure_printing.html#01 section 5 which talks about another installation.
    Thanks so very much for any info.
    -iahmadi

    You can use FOP, but the formatting of the xsl (Xml Style Sheets) takes a little work. If you have the Oracle Reports server up and access to the development product, why not go that route?
    You want the filtering and sorting and searching, yes, but then you also want to print them out.. Then you would probably be best looking at replacing the Oracle Reports setup with BI Publisher. You can convert Most your reports over to bi publisher layouts easily.. (I have heard of some reports that do require recreating in Bi Publisher from Oracle Reports..)
    Then you can have your Apex Reports and call Bi Publisher from APEX and everyone wins..
    Is your Oracle Reports stuff used by non-APEX applications, that could be modified to use Bi Publisher?
    Thank you,
    Tony Miller
    Webster, TX

  • Oracle.swd.oui directory missing from 10G agent download

    I downloaded Oracle Enterprise Manager 10g Grid Control Management Agent Release 1 (10.1.0.2) for SPARC 32 bit fle name GC10g_agent_download.cpio.gz from OTN and the agent_download/Disk1/solaris/agent/stage/Components/oracle.swd.oui directory is missing. I copied the oracle.swd.oui directory over from the Oracle Enterprise Manager 10g Grid Control Release 1 (10.1.0.2) download. After this the agent install worked just fine. Thank you for using Greg's debugging services.

    Please refer to the following documentation for details on downloadable agent. (you may need to concatenate the 2 lines below and place the url in your browser).
    http://download-west.oracle.com/docs/html/B12012_01/appC.htm#i633623

  • Error upgrading Oracle DBPersonal 11g R1 x86 from 11.1.0.6.0 to 11.1.0.7.0

    Hello,
    I had to manually upgrade the Oracle Database 11g R1 x86 from 11.1.0.6 to 11.1.0.7. For this, i did the following:
    - I went to the command promt, and started an sqlplus shell with / as sysdba
    - then i've shutted down the database, exited the sqlplus shell, stopped the dbconsole and the lsnrctl
    - afterwards, I've started again the sqlplus shell, and I've run
         - STARTUP UPGRADE
         - SPOOL patch.log
         - _@$ORACLE_HOME\RDBMS\ADMIN\catupgrd.sql_
         - SPOOL OFF
         - STARTUP
         - _@$ORACLE_HOME\RDBMS\ADMIN\utlrp.sql_
         - EXIT
         Everything went fine so far.
    - finnally, I've run the "_emca -upgrade db_" command in a command prompt.     
    This final command did not complete successfully. The final message from the log file is "Could not backup file $ORACLE_HOME\db_1\oc4j\j2ee\OC4J_DBConsole_MYCOMPUTERNAME_orcl".
    Also, I have a great feeling that the upgrade didn't work... Everything I open an sql shell, it says "Connected to Personal Oracle Database 11g Release 11.1.0.6.0" and not "11.1.0.7.0".
    Finnaly, I've tried using the Database Upgrade Assistant, but I get the following message: could not get the database server from the "Oracle Server" component. The "CEP" file %ORACLE_HOME\rdbms\admin\rdbmsup.sql does not provide the version directive.
    My questions are:
    1. How can I check if the upgrade was successful or not?
    2. If the upgrade wasn't successful, how can I make it work? Can I still upgrade it, or is it a lost cause?
    Thanks.
    PS: the machine running the database is a Windows 2003 Server Standard Edition R2 x86, with SP2 installed.

    After you shut down the database, you need to install the 11.1.0.7 software patch into your current ORACLE_HOME before upgrading the database. I do not see that in your steps you outlined above. You can download the 11.1.0.7 patch software from MOS.
    HTH
    Srini

  • Trouble using getLong to get an Oracle Number(8,2) field from ResultSet

    I am having trouble using getLong to get an Oracle Number(8,2) field from ResultSet. The error message starts with:
    java.lang.ExceptionInInitializerError: [exception was kaffe.utilNotImplemented] at oracle.jdbc.dbaccess.DBConversion.NumberBytesToLong(....
    and similar messages when I try getString, getDouble, etc. I am able to getString on the VARCHAR and DATE fields but have not been able to access the NUMBER(8,2) fields.

    java.lang.ExceptionInInitializerError: [exception was
    kaffe.utilNotImplemented] at
    oracle.jdbc.dbaccess.DBConversion.NumberBytesToLong(...
    kaffe.utilNotImplemented may be being thrown internally by your JDK.. AFAIK the Kaffe JDK is only JAVA 1.1 compatible and your driver may require JAVA 2.
    Col

  • Access Oracle 10g OLAP Analytic Worspace from BOE XI for Universes creating

    Hi skilled!
    Is there any environment to access  Oracle 10g OLAP Analytic Worspace
    from BOE XI (not from BOE XIR2) for Universes creating ?
    Thank you.

    Hello Walter,
    Thanks for the response.
    I'm using the following SAP GUI: 710 Final Release, Version 7100.2.7.1038, Build 971593, Patch-Level 7.
    Trying to install the Desktop part of the integration kit results in the follwoing message: Unable to perform Desktop installation. The installation is unable to proceed with a desktop installation because Crystal Reports 2008 was not detected. To perform a Desktop installation, it must be installed.
    Without having installed any integration kit on the client side, I can still see the data access driver for SAP Business Warehouse 3.x in the Universe Designer (when trying to define a new connection). After providing the respective parameters, however, a connection is not established successfully. When testing the connection it just tells me that the connection trial failed (SBO0001), without providing any further details.
    What do you think, is the problem? The SAP GUI? Is it at all required for my purposes (generating OLAP universes in Designer from SAP BI) to install the integration kit on the client side? As far as I have read, it is?
    Thanks, Konrad

  • Oracle is stopping 9i support from July-2008

    Hi All,
    I found somewhere that Oracle is stopping 9i support from July-2008. Currently we are running our production database with Oracle 9iR2, I am wondering that after July-2008, will Oracle metalink will help in Oracle 9i related issues if I will raise a SR , any Idea ?
    Thanks,
    Deep

    Hi All,
    I found somewhere that Oracle is stopping 9i support
    from July-2008. Currently we are running our
    production database with Oracle 9iR2, I am wondering
    that after July-2008, will Oracle metalink will help
    in Oracle 9i related issues if I will raise a SR ,
    any Idea ?You'll probably get help if the issue is known, you won't get fixes and backports, you probably won't get help on unknown issues and you won't get any more CPU updates for your production system.
    Niall Litchfield
    http://www.orawin.info/

  • How to conect to the Oracle 10 g Exp Edition from Oracle SQL Developer Tool

    Hi all,
    i have installed Oracle 10 g Exp Edition in my stand alone system(no internet connected to the system).
    I want to connect through Oracle SQL Developer tool.
    Can any one please tell me the steps involved in "how to connect to the Oracle 10 g Exp Edition from Oracle SQL Developer Tool ".
    Thanks in Advance.

    Creating a Database Connection
    http://www.oracle.com/webfolder/technetwork/tutorials/obe/db/sqldev/r30/sqldev3.0_GS/sqldev3.0_GS.htm

  • How Oracle Ultra Search is Different from Intermedia Search

    hi,
    Can any one please tell me how Oracle Ultra Search is Different from Intermedia Search .from an article i came to know that Ultra search helps you to search dataq in Multiple RDBMS ,documents,URLs etc . but i think these options are also there in Intermedia
    regds
    sangeeth

    Ultra Search is an application on top of Oracle Text (aka interMedia Text). You can find more information about it here: http://otn.oracle.com/products/ultrasearch/content.html

Maybe you are looking for

  • How to delete file from DW welcome screen

    Don't know much about CS3, but learning. Erased some files, started over again, but noticed the name of the file/site is still showing on the "welcome" screen when I open CS3. Can't find a way to delete it. Any suggestions? Thanks

  • How to stop editing in a table cell

    i m using JTextArea as renderer and editor for table cell. While editing i want to stop editing in that cell at some perticular instance. i have used stopCellEditing() function on TableCellEditor but still the Caret does not goes away and when i pres

  • Java servlets - JDBC

    hi, I have a problem... i would like to fetch some strings from the database using JDBC and create a tree structure using java servlets to be displayed on a browser using html. Currently i have tried using a hashtable as well as defaultmutabletreenod

  • 16:9 Export

    I have done some filming with a 16:9 ratio, and imported this into FCEHD as a: PAL - CCIR 601 720 x 576 Anamorphic project.. which during edit stays in the Viewer and Canvas as a 16:9 ratio. However as soon as I: File > Export > Quicktime Movie it ch

  • MS Analysis Services Universe

    I am trying to create a Universe based on MS Analysis Services, however when get to the screen where I can see all the cubes I am able to see only the Demo cubes (Food services company). I am using system administrator user and can see all the cubes