Vip problem on 11gr2

Hi, have anyone seen this before?
bash-3.00# /u01/11.2.0/grid/bin/crs_stat -t
Name Type Target State Host
ora.DATA.dg ora....up.type ONLINE ONLINE prodmk1
ora....ER.lsnr ora....er.type ONLINE OFFLINE
ora....N1.lsnr ora....er.type ONLINE ONLINE prodmk1
ora.asm ora.asm.type ONLINE ONLINE prodmk1
ora.eons ora.eons.type ONLINE ONLINE prodmk1
ora.gsd ora.gsd.type ONLINE ONLINE prodmk1
ora....network ora....rk.type ONLINE ONLINE prodmk1
ora.oc4j ora.oc4j.type ONLINE ONLINE prodmk2
ora.ons ora.ons.type ONLINE ONLINE prodmk1
ora.scan1.vip ora....ip.type ONLINE ONLINE prodmk1
ora....SM1.asm application ONLINE ONLINE prodmk1
ora....06.lsnr application ONLINE OFFLINE
ora....-06.gsd application ONLINE ONLINE prodmk1
ora....-06.ons application ONLINE ONLINE prodmk1
ora....-06.vip ora....t1.type ONLINE OFFLINE
ora....SM2.asm application ONLINE ONLINE prodmk2
ora....07.lsnr application ONLINE OFFLINE
ora....-07.gsd application ONLINE ONLINE prodmk2
ora....-07.ons application ONLINE ONLINE prodmk2
ora....-07.vip ora....t1.type ONLINE OFFLINE
bash-3.00# /u01/11.2.0/grid/bin/crs_start -f ora.prodmk1.vip
Attempting to start `ora.prodmk1.vip` on member `prodmk1`
CRS-5005: IP Address: 10.112.1.100 is already in use in the network
Start of `ora.prodmk1.vip` on member `prodmk1` failed.
Attempting to stop `ora.prodmk1.vip` on member `prodmk1`
Stop of `ora.prodmk1.vip` on member `prodmk1` succeeded.
CRS-2563: Attempt to start resource 'ora.prodmk1.vip' on 'prodmk1' has failed. Will re-retry on 'prodmk2' now.
Attempting to start `ora.prodmk1.vip` on member `prodmk2`
CRS-5005: IP Address: 10.112.1.100 is already in use in the network
Start of `ora.prodmk1.vip` on member `prodmk2` failed.
Attempting to stop `ora.prodmk1.vip` on member `prodmk2`
Stop of `ora.prodmk1.vip` on member `prodmk2` succeeded.
CRS-2632: There are no more servers to try to place resource 'ora.prodmk1.vip' on that would satisfy its placement policy
CRS-0223: Resource 'ora.prodmk1.vip' has placement error.

Hi, have anyone seen this before?
bash-3.00# /u01/11.2.0/grid/bin/crs_stat -t
Name Type Target State Host
ora.DATA.dg ora....up.type ONLINE ONLINE prodmk1
ora....ER.lsnr ora....er.type ONLINE OFFLINE
ora....N1.lsnr ora....er.type ONLINE ONLINE prodmk1
ora.asm ora.asm.type ONLINE ONLINE prodmk1
ora.eons ora.eons.type ONLINE ONLINE prodmk1
ora.gsd ora.gsd.type ONLINE ONLINE prodmk1
ora....network ora....rk.type ONLINE ONLINE prodmk1
ora.oc4j ora.oc4j.type ONLINE ONLINE prodmk2
ora.ons ora.ons.type ONLINE ONLINE prodmk1
ora.scan1.vip ora....ip.type ONLINE ONLINE prodmk1
ora....SM1.asm application ONLINE ONLINE prodmk1
ora....06.lsnr application ONLINE OFFLINE
ora....-06.gsd application ONLINE ONLINE prodmk1
ora....-06.ons application ONLINE ONLINE prodmk1
ora....-06.vip ora....t1.type ONLINE OFFLINE
ora....SM2.asm application ONLINE ONLINE prodmk2
ora....07.lsnr application ONLINE OFFLINE
ora....-07.gsd application ONLINE ONLINE prodmk2
ora....-07.ons application ONLINE ONLINE prodmk2
ora....-07.vip ora....t1.type ONLINE OFFLINE
bash-3.00# /u01/11.2.0/grid/bin/crs_start -f ora.prodmk1.vip
Attempting to start `ora.prodmk1.vip` on member `prodmk1`
CRS-5005: IP Address: 10.112.1.100 is already in use in the network
Start of `ora.prodmk1.vip` on member `prodmk1` failed.
Attempting to stop `ora.prodmk1.vip` on member `prodmk1`
Stop of `ora.prodmk1.vip` on member `prodmk1` succeeded.
CRS-2563: Attempt to start resource 'ora.prodmk1.vip' on 'prodmk1' has failed. Will re-retry on 'prodmk2' now.
Attempting to start `ora.prodmk1.vip` on member `prodmk2`
CRS-5005: IP Address: 10.112.1.100 is already in use in the network
Start of `ora.prodmk1.vip` on member `prodmk2` failed.
Attempting to stop `ora.prodmk1.vip` on member `prodmk2`
Stop of `ora.prodmk1.vip` on member `prodmk2` succeeded.
CRS-2632: There are no more servers to try to place resource 'ora.prodmk1.vip' on that would satisfy its placement policy
CRS-0223: Resource 'ora.prodmk1.vip' has placement error.

Similar Messages

  • CLOB.getAsciiStream problem in 11gR2 with temp CLOB internal JVM

    Hello,
    i have a problem with using a termporary CLOB in PL/SQL that is going to be written with Java Code that runs inside Oracle Database (Internal JVM). The code works without problem in Oracle 11g R1 (11.1.0.7.0) but does not with Oracle 11g R2 (12.2.0.1.0). The example follows:
    <b>Table Description:</b>
    NAME Null? Type
    ID NOT NULL NUMBER(*,0)
    FILE_TYPE NOT NULL NUMBER(*,0)
    INSERT_DATE NOT NULL DATE
    PROCESSED NOT NULL NUMBER(*,0)
    LFIELD001 CLOB(4000)
    BFIELD001 BLOB(4000)
    FILE_NAME VARCHAR2(4000)
    <b>PL/SQL Example Run:</b>
    DECLARE
    clb CLOB;
    p_result NUMBER; p_err VARCHAR2(4000);
    t BLOB;
    BEGIN
    SELECT bfield001
    INTO t
    FROM file_data
    WHERE id = 200;
    clb := java_utils.clob_zipdecompress(t, 'BANKFILE_', p_result);
    -- Output the results
    dbms_output.put_line(SubStr('p_result = '||TO_CHAR(p_result), 1, 255));
    dbms_output.put_line(SubStr('p_err = '||p_err, 1, 255));
    dbms_output.put_line(SubStr('p_return_clob = '||SUBSTR(clb, 1,255), 1, 255));
    END;
    <b>Package example </b>
    PACKAGE JAVA_UTILS
    IS
    -- Decompress a BLOB in ZIP format to a CLOB and return it with specified contained filename
    FUNCTION clob_zipdecompress(p_blob IN BLOB, p_fname IN VARCHAR2, p_result OUT NUMBER)
    RETURN CLOB;
    END JAVA_UTILS;
    PACKAGE BODY JAVA_UTILS
    IS
    -- Decompress a BLOB in ZIP format to a CLOB and return it with specified contained filename
    FUNCTION clob_zipdecompress(p_blob IN BLOB, p_clob IN CLOB, p_fname IN VARCHAR2)
    RETURN NUMBER
    AS LANGUAGE JAVA NAME 'java_utils.Compress.ZipDecompress(oracle.sql.BLOB, oracle.sql.CLOB, java.lang.String) return int';
    FUNCTION clob_zipdecompress(p_blob IN BLOB, p_fname IN VARCHAR2, p_result OUT NUMBER)
    RETURN CLOB
    IS
    l_clob CLOB; l_result NUMBER;
    BEGIN
    IF p_blob IS NULL THEN
    RETURN NULL;
    END IF;
    DBMS_LOB.createtemporary(l_clob, TRUE);
    p_result := clob_zipdecompress(p_blob, l_clob, p_fname);
    RETURN l_clob;
    END clob_zipdecompress;
    END JAVA_UTILS;
    <b>Java Function Example simplified </b>
    package java_utils;
    import java.lang.*;
    import oracle.sql.*;
    import java.io.*;
    import java.util.zip.*;
    public class Compress
    * Decompresses the BLOB into CLOB
    * @param blob the source BLOB (compressed binary data)
    * @param clob the target CLOB (will hold plain text) it should be an empty CLOB retrieved for
    example with dbms_lob.createtemporary(l_clob,true);
    * @throws Exception mostly I/O exception if ever
    public static int ZipDecompress(BLOB blob, CLOB clob, String fname, String[] err)
    OutputStream out; ZipInputStream z; ZipEntry ze; String zeName; byte[] buffer; int cnt;
    boolean found = false;
    try {
    out = clob.setAsciiStream(0L); // Here it fails
    catch (Exception ex) { err[0] = ex.getMessage(); return -1; }
    return 0;
    The execution of the example works well in 11gR1 but in 11gR2 returns error : <b>Invalid argument(s) in call. </b>
    Any idea why this is happening?
    Any help will be appreciated.
    Dionyssis

    Hi Dionyssis:
    Replace:
    clob.setAsciiStream(0L); // Here it fails
    by:
    clob.setAsciiStream(1L);
    the CLOB Api was changed from early implementation of Oracle to the standard implementation.
    HTH, Marcelo.

  • VIP problem

    I have two windows 2003 server with windows cluster. i need to install Oracle 10g R2 RAC. When i test with CVU then it shows error on suitable set of interfaces for VIPs. Others r all ok. Could you please tell me the problem is where?
    My Host file on both node is this
    192.168.0.231 NodeA03
    192.168.0.231 NodeB03
    192.1680.234 rac1-vip
    192.1680.234 rac2-vip
    10.0.3.1 rac1-priv
    10.0.3.1 rac2-priv
    without these how can i make vip for both node?

    Hi,
    According to your question you need to see this link
    http://download.oracle.com/docs/cd/E14072_01/rac.112/e10717/votocr.htm#BABGJADH :)
    Thanking you
    BelMan

  • Connection Problem to 11GR2 DB

    Hi @all
    i've installed 11gR2 X64 on a Windows Server 2008 R2 x64.
    Now I try to connect to a Database on this Server with SQL Developer (Version 2.1.1.64.45)
    ConnectionType is easy
    I get the following error The network adapter could not establish the connection.
    I have the same type of connection for a 11.1.0.7 Database which is running on a Windows Server 2008 x64 ... no problems
    what is different for a connection to a 11gR2 DB?
    Any ideas?

    Check if your service is register in listener:
    lsnrctl status
    I've install Oracle 11gR2 on Win2008 x64 few days ago and notice that after installation services aren't visible by listener. After adding SID_LIST_LISTENER clause to listener.ora and restarting listener everything was OK.
    Check if you EM works as well... Probably you have to reconfigure it after installation, because it's corrupted.

  • Installation problem - Oracle 11gR2 Windows XP Professional SP 2

    Hello everybody!
    I have a problem at the installation moment of Oracle 11g R2 on Windows XP Professional Edition with SP 2. Please help me!
    This is my computer's hardware configuration:
    CPU Intel Pentium 4 3.00 Ghz x86
    RAM: 1 GB
    Hard disk: SATA 180 GB
    Graphic Card: PCI-Express nVidia 7300GS 256 MB
    Network connection: LAN / Internet connection: ADSL
    O.S. Windows XP Professional Edition SP 2 (and installed .Net framework 2.0)
    Antivirus: AVG 9.0 free edition
    WEB Browser: Internet Explorer / Mozilla Firefox.
    I tried to Install Oracle 11g R2 2 times, so I have formatted my computer 2 times because after the installation process, the Oracle Universal Installer don't respond.
    Every time I installed the O.S., drivers, Antivirus, .Net Framework, Ms office, everything works properly.
    I configured the network connection to use a fixed IP Address, I created the environment variables ORACLE_BASE, ORACLE_HOME, ORACLE_SID and ORACLE_UNQNAME (1st time its value was the same value of ORACLE_SID, 2nd time its value was the database global name) and then, I start the SETUP program, it run properly, but at the moment of finish the database creation this message appears: execute the commands: 1) define ORACLE_UNQNAME in database unique name 2) emctl.bat start dbconsole.
    Through SQL Plus I can connect to the database, execute queries, the listener is working, but the database console service doesn't work. If I try to start it since command prompt (emctl start dbconsole) I get a message about the specific error 2.
    What can I do??
    Thanks in advance!

    Good morning! I hope you are fine.
    I appreciate your help.
    Jean-Valentin: I opened a DOS box (logged as the Administrator User who installed Oracle), I changed the ORACLE_SID value and the result of the commands:
    set ORACLE_SID=MGN
    emctl stop dbconsole
    emctl start dbconsole
    emctl status dbconsole
    was this one:
    C:\Oracle_base\Home_ODB11gR2_Aug1st2010\BIN>emctl stop dbconsole
    OC4J Configuration issue. C:\Oracle_base\Home_ODB11gR2_Aug1st2010/oc4j/j2ee/OC4J_DBConsole_oraserver11_MGN not found.
    Definitively, change the value of ORACLE_SID is not right. Then, I changed the ORACLE_SID again to its original value and the result was:
    C:\Oracle_base\Home_ODB11gR2_Aug1st2010\BIN>emctl stop dbconsole
    Oracle Enterprise Manager 11g Database Control Release 11.2.0.1.0
    Copyright (c) 1996, 2010 Oracle Corporation.  All rights reserved.
    The OracleDBConsoleMGN service is not started.
    More help is available by typing NET HELPMSG 3521.
    C:\Oracle_base\Home_ODB11gR2_Aug1st2010\BIN>emctl start dbconsole
    Oracle Enterprise Manager 11g Database Control Release 11.2.0.1.0
    Copyright (c) 1996, 2010 Oracle Corporation.  All rights reserved.
    Starting Oracle Enterprise Manager 11g Database Control ...The OracleDBConsoleMGN service is starting...............
    The OracleDBConsoleMGN service could not be started.
    A service specific error occurred: 2.
    More help is available by typing NET HELPMSG 3547.
    Using the ORACLE_SID original name, at least the emctl shows the OracleDBConsoleMGN as not started when I try to stop.
    schavali: When I executed the Oracle Installation, the database configuration assistant showed this message:
    The Enterprise Manager configuration was success with this warning: Error at start up database control, execute the commands: and you know, here start our history.
    And the 3 steps of the database configuration assistant shows this:
    Copying database files : Success (correct mark)
    Creating and starting up database instance: Success (correct mark)
    Finishing database creation: Success (correct mark)
    I'll try to check the information of the link: http://download.oracle.com/docs/cd/B16240_01/doc/em.102/e10954/structure.htm#CACBBFGI
    and then, I write again.
    This cannot be... Oracle always works properly... is powerful... what is going on???
    Thanks guys, have a great day!

  • ACE VIP problem

    VIP from servers on port 8888 is visible with telnet and the other way around but HTTP://VIP(IP address):8888 is not working for webportal servers,

    Your server is probably sending a redirect or using hard links with its port referenced in the url.
    Fix the server.
    Gilles.

  • Strange DG4ODBC problem on 11gR2 RAC connecting to MySql

    I have a two node experimental RAC that was built using Jeffrey Hunter's "Build Your Own Oracle RAC Cluster on Oracle Enterprise Linux and iSCSI" paper. I upgraded it to 11gR2 for kicks. This is running on 64bit CentOS.
    I am trying to get the RAC to connect to a remote MySQL database. One node (RAC2) always connects, the other (RAC1) does not. I've tested the connection using dg4odbc, a database link, and sqlplus. Both nodes will connect to the mysql database via the isql client.
    Since this is an experimental setup, it is just being used by me, so it has low traffic. The requests for mysql data on both nodes are getting directed to RAC1. From the listener log file on that node:
    07-JAN-2010 08:33:59 * (CONNECT_DATA=(SID=mysql)(CID=(PROGRAM=)(HOST=rac1)(USER=
    oracle))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.168.1.20)(PORT=33196)) * establish
    * mysql * 0
    07-JAN-2010 08:34:03 * (CONNECT_DATA=(SID=mysql)(CID=(PROGRAM=)(HOST=rac2)(USER=
    oracle))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.168.1.11)(PORT=55698)) * establish
    * mysql * 0
    so the listener on RAC1 is successfully receiving requests from both nodes.
    A 'select * from "test"@mysql' on RAC2 successfully returns data. That same request from RAC1 returns the dreaded Net8 error:
    ERROR at line 1:
    ORA-28545: error diagnosed by Net8 when connecting to an agent
    Unable to retrieve text of NETWORK/NCR message 65535
    ORA-02063: preceding 2 lines from MYSQL
    I am fairly certain that in this case, the dg4odbc agent fails to launch. No dg4odbc log file appears in the /hs/log directory. In the case of the successful RAC2 request, I do get a proper log file.
    So what would cause the launching of the dg4odbc agent by the listener to fail if the request comes in from RAC1 vs RAC2?? All the config files / libraries are the same on both nodes, I've checked them a half dozen times.
    Executing 'dg4odbc' on both machines from the OS command prompt returns:
    Oracle Corporation --- THURSDAY JAN 07 2010 09:01:56.170
    Heterogeneous Agent Release 11.2.0.1.0 - 64bit Production Built with
    Oracle Database Gateway for ODBC
    So I know it isn't a library issue with DG4ODBC. It will launch on both machines.
    This one has me stumped!
    Thanks in advance....

    Hi ,
    I'm trying to configure dg4odbc on oracle RAC 11.2 with two nodes but I having the same error like you on both nodes! could you please share with me your configuration on the correct node ? particulary tnsnames.ora, listener.ora , intdg4odbc.ora.
    Thanks

  • View All VIP's Not Working in Apple Mail

    Ever since I updated to Mavericks, the view all VIP's inbox doesn't work. I thought the last update would've fixed the problem, but it hasn't. The column where all the emails are supposed to appear is completely blank (white). The only way I can see the VIP's is when I select an individual VIP, but that's not helpful when I need to see all emails from my VIP's in one inbox. This feature works perfectly on my iPhone. I have a MacBook Pro with Retina Display - 2.8 Ghz Intel Core i7 with 16GB of memory.
    Does anyone know how to fix this problem?
    Thanks

    I used this workaround and it seemed to work for fixing the VIP problem.
    After deleting and killing as suggested, the iCloud Helper restarted and the cache repopulated with fresh ones.  I then clicked on inbox and back onto VIP's and they were all there!
    https://discussions.apple.com/message/25003487#25003487
    bthomp2420
    Re: Unable to load iCloud and Internet accounts in System Preferences
    Nov 18, 2013 11:10 PM (in response to moog5)
    Try deleting the contents of ~/Library/Caches/com.apple.iCloudHelper and then kill the com.apple.iCloudHelper process in the activity monitor.

  • 11gR2 - ACMCA needs Oracle grid infrastructure to configure ASM

    Hi
    I am installing single instance oracle 11gR2 on linux redhat 5
    I have problem with 11gr2 ASMCA.
    I successfully installed 11gR2 oracle grid home.
    Than i wanted to create the ASM diskgroup using asmca
    The disks was succssefully discavered , but the creatation failed on the following error messages:
    Oracle Grid infrastructure is not configured properly
    ACMCA needs Oracle grid infrastructure to configure ASMI think it maight be related to root.sh problem.
    1. where i can find the root.sh log output ?
    2. Is it "safe" to rerun the root.sh once again ?
    3. Could you please suggest what to check ?
    Thanks

    Hi There
    You need to run root.sh script once again as root user. The script can be found immediately under the GRID home
    for eg:/opt/11.2.0/grid/root.sh
    upon running this script it will then ask u to run another script for Standalone servers
    /opt/11.2.0/grid/perl/bin/perl -I/opt/11.2.0/grid/perl/lib -I/opt/11.2.0/grid/crs/install /opt/11.2.0/grid/crs/install/roothas.pl
    You need to run this again as root user
    This will configure the GRID infrastructure for a Standalone env.
    After this you should be able to run ASMCA without any issues
    Regards
    vgt

  • VIP Mail not working

    Email messages from my tagged VIP's do not end up in the VIP folder.  They show a star next to them in my regular inbox, but my VIP folder is always empty.

    I used this workaround and it seemed to work for fixing the VIP problem.
    After deleting and killing as suggested, the iCloud Helper restarted and the cache repopulated with fresh ones.  I then clicked on inbox and back onto VIP's and they were all there!
    https://discussions.apple.com/message/25003487#25003487
    bthomp2420
    This solved my questionRe: Unable to load iCloud and Internet accounts in System Preferences 
    Nov 18, 2013 11:10 PM (in response to moog5)
    Try deleting the contents of ~/Library/Caches/com.apple.iCloudHelper and then kill the com.apple.iCloudHelper process in the activity monitor.

  • OIM 9.1.0.1 in oracle database 11g release 2

    I am installing IOM 9.1.0.1, using Oracle Database 11g release 2 but I have the following errors
    Failed to load XML. Unable to find record in UPA where USR_KEY = 1
    Failed to load XML. Unable to find record in GPA where UGP_KEY = 1
    I'm doing in Red Hat 5 x86-64

    The issue is not the WLS 10.3.2. We just had the same issue. The issue is the database 11gr2 is not supported. The highest supported DB is 11.1.0.6 (11gr1). There is a sequence number problem in 11gr2 and there is no workaround for it. So, go to 11.1.0.6 DB and the issue will be resolved. However, OIM 9.1.0.1 is not supported on WLS 10.3.2 so, install 9.1.0.1 and then install patch for 9.1.0.2 and then install a patch BP05. This will bring it to WLS 10.3.2 and OIM 9.1.0.2 BP05 and DB 11.1.0.6. These are compatible.

  • Rman clone duplicate database from active database

    Hi All,
    I read document saying that rman can duplicate database from active database (prod) to a remote server, so long as you configure listener and tnsname.
    I am working toward it.
    I met a problem, which is when i bring up auxiliary database in nomount mode, the listener service of that auxiliary database is in BLOCKED status, and throw out ora-12528 error when I rman auxiliary sys/pass@clonedb. Isn't nomount mode the mode which auxiliary db is supposed to be in?
    (ora-12528: TNS:listener: all appropriate instances are blocking new connections)
    Thanks,
    milic

    You may have run into the same problem like I did recently:
    The (UR=A) clause in tnsnames.ora is intended to work with a dynamically registered handler so the use of SERVICE_NAME versus SID is preferred.
    ORA-12528: TNS listener BLOCKED - trying to duplicate database
    Also for further problems:
    RMAN 11gR2 duplicate database ORA-17627 ORA-01017 RMAN-03009 ORA-17628

  • Duplicate database from active database in 11g?

    Does anyone know if it's possible to clone a database from stby by issuing RMAN duplicate database FROM ACTIVE DATABASE command in 11g?
    I know it's possible from primary to create stby.
    Thanks in advance

    You may have run into the same problem like I did recently:
    The (UR=A) clause in tnsnames.ora is intended to work with a dynamically registered handler so the use of SERVICE_NAME versus SID is preferred.
    ORA-12528: TNS listener BLOCKED - trying to duplicate database
    Also for further problems:
    RMAN 11gR2 duplicate database ORA-17627 ORA-01017 RMAN-03009 ORA-17628

  • Weblogic Server upgrade along with Forms & Reports

    Hi Gurus,
    I would need some help on upgrading one our Weblogic server from 10.3.2 to 10.3.6. Also, we have forms & reports ( version: 11.1.1.2 ) configured on this server and we would have to upgrade this to version: 11.1.2.1
    Can you please help me or point me to a good document to do this.
    I am a DBA and my weblogic experience is very little.
    Thanks
    Prakash
    Edited by: 1004698 on May 8, 2013 4:52 AM

    Hi Prakash,
    First, very smart decision to move to 11gR2 Forms - performance is much better in 11gR2. Customers i've worked with, are very happy with it compared to 11gR1.
    Now, if you want to upgrade from 11gR1 (11.1.1.2) to 11gR2 Forms (11.1.2.1), I would do a new install. Simply because, there is no simple/straight-forward Architecture upgrade path from 11gR1 to 11gR2 Forms. And the installation will also be a clean isntall. Don't worry about your forms/reports source code, you can just recompile no problem in 11gR2 Forms.
    If you want to do a re-install heres some things to consider:
    1.) Update and/or Install an Oracle certified JDK - you can verify the correct JDK in the certification matrix provided by oracle: http://www.oracle.com/technetwork/developer-tools/forms/oracle-forms-11gr2certmatrix-519680.xls
    2.) Verify your OS is certified with Forms 11gR2
    3.)Install WLS in a new middleware Home.
    4.) At his point, you should install the Oracle Forms 11gR2 Binaries Home in your new 10.3.6 Middleware Home.
    5.) Optional: If you want the same exact ports as 11gR1 Forms installation - you'll have to shutdown all the 11gR1 Forms/Reports processes- OPMN Processes, WLS_FORMS, WLS_REPORTS, AdminServer.
    5.) Run the Forms 11gR2 Configuration Wizard to install and configure a new Forms 11gr2 domain.
    6.) After the configuration wizard completes successfully:
    - Migrate over your formsweb.cfg/env settings
    - Migrate ORACLE_HOME customizations
    - Definitely install/configure webutil components
    - Migrate over any other additional customizations
    If you run into any weird issues, check out my companies knowledge base, its full of installation knowledge: http://pitss.com/us/knowledgebase/
    Hope this helps!
    Gavin

  • Schema qualifier ignored in 11g

    I am trying to connect to mysql database through DG4ODBC 11gR2 and have a problem.
    When I query tables in the schema other than the one specified in odbc.ini by using a
    schema qualified table name, I got table does not exist error. Seems to me DG4ODBC ignore
    the schema qualifier, just take the table name, and qualify it with the schema specified
    in odbc.ini
    For example,
    obdc.ini :
    [MYSQL]
    Driver=MySQL ODBC 5.1 Driver
    Server = localhost
    PORT = 3306
    DATABASE =db1 ###schema db1
    USER=user
    PASSWORD=pass
    select count(*) from "db2"."table2"@MYSQLERROR at line 1:
    ORA-00942: table or view does not exist
    [MySQL][ODBC 5.1 Driver][mysqld-5.0.67-community-log]Table
    'db1.table2' doesn't exist {42S02,NativeErr = 1146}
    ORA-02063: preceding 2 lines from MYSQL2
    It really should translate into 'db2.table2'. It just ignored the schema qualifier db2 here,
    and use db1 regardless.
    The mysql user can indeed select tables in db1 and db2 in mysql server or through isql of unixODBC.
    Plus, in hsodbc of oracle 10gR2, I used schema qualifier all the time and works too.
    Did anybody experience similar problem in 11gR2 too?
    Thanks,
    -Haijun

    SQL text from hgopars, id=1, len=23 ...
    00: 53454C45 4354202A 2046524F 4D206070 [SELECT * FROM `t]
    10: 61746965 6E7460 [able2`]
    Entered hgopoer at 2010/04/09-12:36:50
    hgopoer, line 233: got native error 1146 and sqlstate 42S02; message follows...
    [MySQL][ODBC 5.1 Driver][mysqld-5.0.67-community-log]Table 'db1.table2' doesn't exist {42S02,NativeErr = 1146}
    Exiting hgopoer, rc=0 at 2010/04/09-12:36:50
    hgopars, line 526: calling SQLNumResultCols got sqlstate 42S02
    Exiting hgopars, rc=942 at 2010/04/09-12:36:50
    Entered hgodtab at 2010/04/09-12:36:50
    count:1
    table: table2
    Allocate hoada[0] @ 0x1cffee00
    Free hoada[0] @ 0x1cffee00
    Entered hgopdsc at 2010/04/09-12:36:50
    Describing procedure patient
    Output hoada
    hgopdsc, line 1406: NO hoada to print
    Exiting hgopdsc, rc=942 at 2010/04/09-12:36:50
    The hoada for table patient follows...
    hgodtab, line 876: NO hoada to print
    Exiting hgodtab, rc=0 at 2010/04/09-12:36:50
    Entered hgopars, cursor id 1 at 2010/04/09-12:36:50
    type:0
    SQL text from hgopars, id=1, len=23 ...
    00: 53454C45 4354202A 2046524F 4D206070 [SELECT * FROM `t]
    10: 61746965 6E7460 [able2`]
    Entered hgopoer at 2010/04/09-12:36:50
    hgopoer, line 233: got native error 1146 and sqlstate 42S02; message follows...
    [MySQL][ODBC 5.1 Driver][mysqld-5.0.67-community-log]Table 'db1.table2' doesn't exist {42S02,NativeErr = 1146}
    Exiting hgopoer, rc=0 at 2010/04/09-12:36:50
    hgopars, line 526: calling SQLNumResultCols got sqlstate 42S02
    Exiting hgopars, rc=942 at 2010/04/09-12:36:50

Maybe you are looking for