Listeners 11g and 10g

Hello

I have two databases 11g and 10g on a single server.
11g uses a port 1522 10 g using port 1521.

At the start of the 11 g database I get the following error:

SQL > bootable media.
ORA-00119: invalid specification for the system LOCAL_LISTENER parameter
ORA-00132: error syntax or network name not resolved "LISTENER_DB11G."

Can I copy my 10g listerner.ora enty in my listnerer.ora 11g and rename/edit the 10g to listener2.
and start then 11g receiver?

I prefer to use the two auditors.

Thank you...

user8969 wrote:
I just want that my setup to work if it's easier with a listener that's fine!
That what I have to do to get the two DB on the same listener was my question.

I received this Burleson Oracle DBA Forum:
http://dbaforums.org/Oracle/index.php?showtopic=9569

Thank you.

There is room for improvement in this other thread. Some examples of file listener.ora to a 10g R2 on Windows listener serving 10.2.0.4 11.1.0.7 database instances:

TRACE_LEVEL_LISTENER = 0
SID_LIST_LISTENER =
  (SID_LIST =
    (SID_DESC =
      (GLOBAL_DBNAME = VM)
      (ORACLE_HOME = C:\oracle\product\10.2.0)
      (SID_NAME = VM)
    )
    (SID_DESC =
      (GLOBAL_DBNAME = LT)
      (ORACLE_HOME = C:\oracle\product\10.2.0)
      (SID_NAME = LT)
    )
    (SID_DESC =
      (GLOBAL_DBNAME = LT2)
      (ORACLE_HOME = C:\oracle\product\10.2.0)
      (SID_NAME = LT2)
    )
    (SID_DESC =
      (GLOBAL_DBNAME = VM11)
      (ORACLE_HOME = C:\Oracle\Product\11.1.0)
      (SID_NAME = VM11)
    )
    (SID_DESC =
      (GLOBAL_DBNAME = VMTEST)
      (ORACLE_HOME = C:\Oracle\Product\11.1.0)
      (SID_NAME = VMTEST)
    )
  )

LISTENER =
  (DESCRIPTION_LIST =
    (DESCRIPTION =
      (ADDRESS = (PROTOCOL = TCP)(HOST = 192.185.50.51)(PORT = 1521))
    )
  )

SAVE_CONFIG_ON_STOP_LISTENER = TRUE

There are probably things to improve in the above listener.ora file, but it works. It is also possible to use a 11.1.0.7 earpiece to maintain a 10.2.0.4 database instance - the listener.ora follows the same pattern.

Charles Hooper
IT Manager/Oracle DBA
K & M-making Machine, Inc.

Tags: Database

Similar Questions

  • Doesn't have JHeadstart capable of converting Forms 10g times 11g and 10g ADF Faces?

    We would like to buy for JDeveloper 10.1.3.3 JHeadstart generator g 10 forms to ADF Faces. This version of JHeadstart capable of converting forms 10g 10 g ADF Faces. But I want a universal JHeadstart generator ADF Faces, who will be able to convert forms 10g times 11g and 10g ADF Faces. Please help me by your valuable suggestion/advice.

    Try asking on the JHeadstart forum:
    JHeadstart

    As far as I KNOW, JHeadstart 11 g is still not released.

  • DBA_OBJECTS. OBJECT_TYPE on 11g and 10g, 9I

    Hello gurus.

    I'm looking for a master list of all the possible types of objects that are supported in EE Oracle 11 g, 10g and 9i RDBMS.

    I know that I can always question to the rest of the way. But it is not accurate, because he told me only if and only if there are objects created by a user db or owner of the object. Considering that, I'm looking for all the possible object types that are supported by over versions of Oracle RDBMS.
    select distinct objecT_types from dba_objects order by 1 
    Where can I find this info?

    Thanks for reading this post.

    R

    For example in 10G this datadictionary opinion described below and you will see object_type >

    CREATE OR REPLACE VIEW dba_objects (
       owner,
       object_name,
       subobject_name,
       object_id,
       data_object_id,
       object_type,
       created,
       last_ddl_time,
       timestamp,
       status,
       temporary,
       generated,
       secondary )
    AS
    select u.name, o.name, o.subname, o.obj#, o.dataobj#,
           decode(o.type#, 0, 'NEXT OBJECT', 1, 'INDEX', 2, 'TABLE', 3, 'CLUSTER',
                          4, 'VIEW', 5, 'SYNONYM', 6, 'SEQUENCE',
                          7, 'PROCEDURE', 8, 'FUNCTION', 9, 'PACKAGE',
                          11, 'PACKAGE BODY', 12, 'TRIGGER',
                          13, 'TYPE', 14, 'TYPE BODY',
                          19, 'TABLE PARTITION', 20, 'INDEX PARTITION', 21, 'LOB',
                          22, 'LIBRARY', 23, 'DIRECTORY', 24, 'QUEUE',
                          28, 'JAVA SOURCE', 29, 'JAVA CLASS', 30, 'JAVA RESOURCE',
                          32, 'INDEXTYPE', 33, 'OPERATOR',
                          34, 'TABLE SUBPARTITION', 35, 'INDEX SUBPARTITION',
                          40, 'LOB PARTITION', 41, 'LOB SUBPARTITION',
                          42, NVL((SELECT distinct 'REWRITE EQUIVALENCE'
                                   FROM sum$ s
                                   WHERE s.obj#=o.obj#
                                         and bitand(s.xpflags, 8388608) = 8388608),
                                  'MATERIALIZED VIEW'),
                          43, 'DIMENSION',
                          44, 'CONTEXT', 46, 'RULE SET', 47, 'RESOURCE PLAN',
                          48, 'CONSUMER GROUP',
                          51, 'SUBSCRIPTION', 52, 'LOCATION',
                          55, 'XML SCHEMA', 56, 'JAVA DATA',
                          57, 'SECURITY PROFILE', 59, 'RULE',
                          60, 'CAPTURE', 61, 'APPLY',
                          62, 'EVALUATION CONTEXT',
                          66, 'JOB', 67, 'PROGRAM', 68, 'JOB CLASS', 69, 'WINDOW',
                          72, 'WINDOW GROUP', 74, 'SCHEDULE', 79, 'CHAIN',
                          81, 'FILE GROUP',
                         'UNDEFINED'),
           o.ctime, o.mtime,
           to_char(o.stime, 'YYYY-MM-DD:HH24:MI:SS'),
           decode(o.status, 0, 'N/A', 1, 'VALID', 'INVALID'),
           decode(bitand(o.flags, 2), 0, 'N', 2, 'Y', 'N'),
           decode(bitand(o.flags, 4), 0, 'N', 4, 'Y', 'N'),
           decode(bitand(o.flags, 16), 0, 'N', 16, 'Y', 'N')
    from sys.obj$ o, sys.user$ u
    where o.owner# = u.user#
      and o.linkname is null
      and (o.type# not in (1  /* INDEX - handled below */,
                          10 /* NON-EXISTENT */)
           or
           (o.type# = 1 and 1 = (select 1
                                  from sys.ind$ i
                                 where i.obj# = o.obj#
                                   and i.type# in (1, 2, 3, 4, 6, 7, 9))))
      and o.name != '_NEXT_OBJECT'
      and o.name != '_default_auditing_options_'
      and bitand(o.flags, 128) = 0
    union all
    select u.name, l.name, NULL, to_number(null), to_number(null),
           'DATABASE LINK',
           l.ctime, to_date(null), NULL, 'VALID','N','N', 'N'
    from sys.link$ l, sys.user$ u
    where l.owner# = u.user#
    /
    
  • Upgrade the database to 8i and 9i and 10g and 11g

    Nice day

    Hi all

    Please can someone help me to get a good document for the upgrade of the database to upgrade the database to 8i and 9i and 10g and 11g include prerequisites and upgrade processes and after upgrading the process waiting for your response because it required required

    http://download.Oracle.com/docs/CD/B19306_01/server.102/b14238/TOC.htm

    Concerning
    Asif Kabir

  • IMP from 11g to 10g db

    Hi all

    I am importing an expdat.dmp which is a power of 11g lower of 10g db.

    If I use a client 11g for import to 10g. But I do not understand why some tables got imported while others were not :(

    The error said that the table already exists, while in fact it is not yet here.

    You encounter this kind of problem?

    Or how to import a dump of 11g to 10g?


    Thank you very much

    Yxz

    Published by: yxes2013 on 17.2.2013 20:02

    yxes2013 wrote:
    Google has said that I must start sqlplus as administrator. How can I run in command line as an administrator? Thank you

    Well, the solution could be as simple as that. Instead of left-clicking the executable command prompt or shortcut, hold SHIFT key and right click. This gives you the "Run as Administrator" option.

    -Justin

  • 11g to 10g database import

    Hello
    our database is 10g. I got the 11g database dump file. So I installed client 11g on my windows xp machine then I open cmd and navigate to the location of bin 11g and run the imp

    IMP userid=system/moimanager1@njmtest file = pros.dmp = me log .log fromuser = me touser = intmoi2 grants = y

    Import: Free 11.2.0.1.0 - Production on Thu Sep 15 13:43:29 2011

    Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.


    IMP-00058: ORACLE error 12154
    ORA-12154: TNS: could not resolve the connect identifier specified
    IMP-00000: Import terminated unsuccessfully

    my xp machine, I am able to connect to this database through Toad. Please help, I am new on this

    Entry njmtest are present in your tnsnames.ora file present in $ORACLE_HOME/network/admin

    And refer to this link

    http://ORA-12154.ora-code.com/

    Published by: Sunny kichloo 15 Sep 2011 03:59

  • RMAN backup from 11g to 10g

    Hi all,

    I have a catalog DB 11 g and 10 g database. If I can take backup of catalog of 11g database 10g.

    When I try to connect to the rman, I get the error below.

    RMAN catalog=rman/rman@catalogdb target=sys@db10g_58

    Catalog DB is in 11g
    TargetDB in 10g

    OS: Windows 2003 Server on the servers.

    Please post suggestions.


    RMAN-00554: initialization of the package manager internal collection failed
    RMAN-06429: TARGET database is not compatible with this version of RMAN

    Kind regards
    Delphine K

    Go to this link

    http://download.Oracle.com/docs/CD/B19306_01/backup.102/b14194/compat002.htm

    Concerning
    Asif Kabir

  • difference between oracle 9i and 10g

    I want to know what is the main difference between oracle 9i and 10g?

    Salvation;

    Please see:
    http://SS64.com/ora/syntax-versions.html

    Respect of
    HELIOS

  • Downgrade from 11g to 10g

    Hi all

    I have 2 questions

    (1) is it possible to downgrade a 11.2.0.1 DB 10.2.0.1.If Yes please describe by wise step with the syntax.

    (2) now, I dump the export of 11 g. How could I continue to a downgrade.
    OR

    I have 11g installed on the PC where I can get the export again. Is it mandatory to install 10g on the same machine for import to downgrade. or that the export may work with another machine?

    Your valuable ideas are warmly welcome...

    Thanks in advance

    Hello

    See the TechNote MOS:

    (1) is it possible to downgrade a 11.2.0.1 DB 10.2.0.1.If Yes please describe by wise step with the syntax.

    * How Downgrade from 11.2 to previous version database (including 11.2.0.3 - 11.2.0.1) [883335.1 ID] *.

    (2) now, I dump the export of 11 g. How could I continue to a downgrade.

    See the thread:
    Import of the 11g in 10g windows dump

    Thank you
    A H E E R X

  • Upgrade ERP database 11g and ATG7 with SSO integration

    Please let us know how to perform upgrade BY Database 11g and ATG7 with SSO decline.

    Kind regards.

    Is there any space stage, do we do if we have implemented SSO after upgrade DB 11 g and 7 ATG?

    You can follow the same approach to upgrade the database and apply the fixes 7 ORS ATG group level.

    Please make sure that you apply the patches in (known issues on top of 11i. ATG_PF. H.Delta.7 (RUP7) - 6241631 [858801.1 ID]). In addition, make a full backup before you start this on your instance of production and if possible get an instance cloned with SSO enabled and test all patches on an identical instance.

    Thank you
    Hussein

  • Oracle 11g and the APEX version

    Hello

    My understanding is that APEX 4.0 comes by default with Oracle 11 g. recently, we have the oracle 10 g updated to 11g and our admin has mentioned that APEX verision shows APEX 3.2.1...

    Please advice...

    Thank you

    No, you'll need to download and install 4.0.2 assuming you want the most recent apex.

  • Oracle 9i and 10g on the same machine?

    Hello!

    I tried to install oracle 9i (* 9.2.0.1 *) and 10g (* 10.2.0.4 *) on the same server (windows 2008 sp2). First, I installed 9i and 10g (two editions of the company). then I tried to create a Database 9i with database configuration assistant. After you configure the database settings and began creating, the installer crashed (JRE. EXE, module symcjit.dll failure).

    someone has an idea of what the problem might be or a tutorial how to install 9i and 10g on the same server? Thanks in advance!

    Best regards
    Christian

    The problem is that 9.2.0.1 is not yet certified for Windows 2008 and was backed off long ago.
    This means regarding this version, you are on your own.
    Oracle 10.2.0.4 also is no longer in first aid, then Oracle will not address all the new problems.
    You can switch to 11 GR 2 or to demote the server to Windows XP. Windows XP is however out of support too.

    -----------
    Sybrand Bakker
    Senior Oracle DBA

  • 9i and 10g on the same machine

    I want to have Oracle 9i and 10g on the same machine. I have already installed 9i. Oracle 9i home is (/ opt/oracle/920)
    I'll put oracle new home for 10g (/ opt/oracle/10). that works perfectly. and what changes I will make to the PATH variable so that I can use both versions.

    or will I do a new oracle 2 user and perform the installation of 10g with it.


    Thank you

    Khurana

    I say you're wasting your time as such a script already exist and is called "oraenv.

    Just
    export ORACLE_SID =...
    Export ORAENV_ASK = NO
    . oraenv
    Export ORAENV_ASK =

    and you're done.
    Working for more than 10 years!

    If I could study how much time is wasted by people invent their own hacks, simply because they refuse to read the documentation, I would start tomorrow student!

    ---------
    Sybrand Bakker
    Senior Oracle DBA

  • Oracle 9i and 10G Client

    Hi guys,.

    I've got Oracle 9i Client running that is used by an application to connect to the database. The application has been improved and the recommendation is that 10g Client needs to be installed, but it works with 9i Client as well. I want to have the 9i and 10g running. But now, how can I find out which version of client it connects with if I have two of them running.

    Thank you.

    If you want to make sure that the connection through customer oracle application
    Set the variable pah

    Come in
    C: > path

    Bin Oracle directories will be displayed as well as other variables.see what version of oracle comes first.

    If it is 10g, and then use the Oracle client 10g to make the connection, but if the installation of 9i is first displayed then it will use client 9i

    To change the 10 GB as default client
    You can assign 2-way

    Right click on my computer > properties? advance tab - click environment variables

    Select the PATh variable...

    OR

    launch the installer of Oralce universl
    Click on install products
    Click the Environment tab

    Select the 10 g home and click on the arrow pointing UPWARDS to the right to make Oracle 10 g as default client
    You can consult the oracle bin directories. Simply cut the installation of Oracle 10 g with bin and paste in front of all the variable to the value of path

  • Question about the installation of 11g R2 and 10g R2

    Hi, my system is Windows 7, 32-bit with Service Pack 1.

    Can I install Oracle 10 g R2? Or Oracle 11g R2?

    Could someone send me the download links?

    Thank you very much.

    Happy Thanksgiving!

    Salvation;

    Several user forum already answered your question,

    Can I install Oracle 10 g R2? Or Oracle 11g R2?

    Both version can be installed on win 7. 10g to 10.2.0.5 version. For this version and also 10.2.0.1 reference, you must connect metalink and must raise SR or contact the local oracle office. Because as mentioned here only 11.2 download available

    If your Windows 7 is version home you can create vmmachine on your win7 OS that download oracle linux(OEL 5.x) of delivery site that install this on your vmmachine and can use it for your db instalation problem

    Could someone send me the download links?

    As mention before only 11g download available on OTN:
    http://www.Oracle.com/technetwork/database/Enterprise-Edition/downloads/index.html

    PS: Please don't forget to change the status thread answer whether it is possible when believe you your thread replied, he pretend to wasting time in other forums users while they are looking outstanding which is not answered, thank you for understanding

    Respect of
    HELIOS

Maybe you are looking for