Help Needed: How to setup external procedure in listener on 11gR2

I have successfully installed 11gR2 RAC on two nodes RHEL5.3, I noticed that the default configuration has something different from previous versions (such as 10gR2 or 11gR1):
(1) listener.ora is under $GRID_HOME/network/admin (a.k.a under Grid tree) not under $ORACLE_HOME/network/admin, and have a new file called "endpoints_listener.ora"
listener.ora under $GRID_HOME/network/admin:
LISTENER=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=IPC)(KEY=LISTENER)))) # line added by Agent
LISTENER_SCAN1=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=IPC)(KEY=LISTENER_SCAN1)))) # line added by Agent
ENABLE_GLOBAL_DYNAMIC_ENDPOINT_LISTENER_SCAN1=ON # line added by Agent
ENABLE_GLOBAL_DYNAMIC_ENDPOINT_LISTENER=ON # line added by Agent
endpoints_listener.ora under $GRID_HOME/network/admin:
LISTENER_NODE41=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=node41-vip)(PORT=1521))(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.10.41)(PORT=1521)(IP=FIRST)))) # line added by Agent
(2) If I put listener.ora under $ORACLE_HOME/network/admin like 10gR2 including EXTPROC, then restart RHEL servers, the listener.ora under $ORACLE_HOME/network/admin doesn't take effect rather the listener.ora under $GRID_HOME does; however if I run "lsnrctl stop" and "lsnrctl start" the listener.ora under $ORACLE_HOME/network/admin will take effect.
listener.ora I added later under $ORACLE_HOME/network/admin:
LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
(ADDRESS = (PROTOCOL = TCP)(HOST = node41-vip)(PORT = 1521)
(IP = FIRST))
(ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.10.41)(PORT = 1521)(IP = FIRST)
SID_LIST_LISTENER =
(SID_LIST =
(SID_DESC =
(SID_NAME = PLSExtProc)
(ORACLE_HOME = /u01/app/oracle/product/11.2.0/db_1)
(PROGRAM = extproc)
Questions:
<1> How to correctly setup extproc correctly under 11gR2?
<2> Will my way in (2) will affect the SCAN single IP access functionality? (I assume SCAN is enabled at least partially by listener.ora under $GRID_HOME such that client can use simpler connection string)
Thanks in advance.
Edited by: user5852271 on Nov 18, 2009 9:04 PM

user5852271 wrote:
I think the document you mentioned is for 11gR1 not for 11gR2. If that is the case, you could go to the 11gR2 library and check the Networking docs yourself at http://www.oracle.com/pls/db112/portal.portal_db?selected=4&frame=#network_management
>
I felt that the 11gR1 should be named 10gR3, and 11gR2 should be 11gR1 because 11gR2 introduced a lot more new features.Good one. You should join Oracle Marketing.

Similar Messages

  • How to setup external access in VM?

    We need to setup a Microsoft VM and allow external access without using my company VPN as we need to test the web services integration with other vendors. could you please help how to setup external access? Thanks

    Hi Wilson,
    As a prerequisite , that VM need to access the gateway .
    It means that you need to
    create an external virtual switch then connect that VM to external virtual switch then allocate a LAN IP for VM .
    http://technet.microsoft.com/en-us/library/jj647786.aspx
    After this you may think of this VM as a physical machine in your LAN then do what you need .
    Best Regards
    Elton Ji
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • How to compile external procedure for Linxu

    Hello to all.
    I'm not able to find how to compile external procedure on Linux.
    I have 64bit release Linux (I don't know if I need special 64bit library or not).
    I found only something like that:
    gcc -fPIC -shared -o comsh64.so comsh64.c
    Listener are correctly configured.
    Library is in Oracle bin directory.
    If I run select externproc from dual ... I don't receive any error message but program don't work.
    I think that there is some missing parameter in gcc or some small thing ?
    Thank you for possible answeer
    Filip

    Do you have someone any idea?
    Now I have 1 library, 2 functions and 1 package with 2 functions:
    int renamefile(char source, char destination)
    { int result;
    result=rename(source,destination);
    return result;
    int comexi (char *c)
    { int ret;
    ret = system(c);
    return ret;
    FUNCTION callSystemI(c in varchar2) RETURN binary_integer is
    EXTERNAL LIBRARY extern_utils
    NAME "comexi"
    LANGUAGE C
    PARAMETERS (c string);
    function renamefile (src IN varchar2, dst IN varchar2) return binary_integer
    AS EXTERNAL
    NAME "renamefile"
    LIBRARY extern_utils
    LANGUAGE C
    PARAMETERS (src string, dst string);
    The first function still don't works, second function works.
    Why?

  • Help needed: can not setup personal email account

    I just got a new BB8900 without a data plan.  I tried to setup my gmail account througn setup wizard-> email setup, but in this window,I only see the option of " i want to usa a work email with blackberry Enterprise server", but I don't see" I want to create or add an email address".
    I am not sure whether I did somthing wrong when I first turn on the phone, but now I don't know how to setup a personal account. 

    Hi and Welcome to the Forums!
    To be able to use integrated emails, internet, and other things, you need The Blackberry Data Plan...even a generic data plan does not give you everything. Without any data plan, well...
    If you want services, you should contact your carrier to enable the services that you desire.
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Help needed  in writing a Query/Procedure

    Hello All,
    Need all ur help in writing a query or procedure
    Lets say the Table name is DEMO
    There i have one column like num it has values
    1
    2
    3
    4
    5
    8
    9
    10
    my query output should be
    1-5
    8-10
    i,e .. if the diff between two rows is greater than 1 then it result should be in a separate group
    I need a query/Procedure for this. Kindly help
    Regards,
    Chandra

    Tried obtaining the output using SQL and the result is as follows:
    SQL> WITH T AS
      2  (
      3  SELECT 1 COL1 FROM DUAL
      4  UNION
      5  SELECT 2 COL1 FROM DUAL
      6  UNION
      7  SELECT 3 COL1 FROM DUAL
      8  UNION
      9  SELECT 4 COL1 FROM DUAL
    10  UNION
    11  SELECT 5 COL1 FROM DUAL
    12  UNION
    13  SELECT 8 COL1 FROM DUAL
    14  UNION
    15  SELECT 9 COL1 FROM DUAL
    16  UNION
    17  SELECT 10 COL1 FROM DUAL
    18  UNION
    19  SELECT 13 COL1 FROM DUAL
    20  UNION
    21  SELECT 14 COL1 FROM DUAL
    22  UNION
    23  SELECT 15 COL1 FROM DUAL
    24  UNION
    25  SELECT 16 COL1 FROM DUAL
    26  UNION
    27  SELECT 23 COL1 FROM DUAL
    28  UNION
    29  SELECT 24 COL1 FROM DUAL
    30  )
    31  SELECT OUTPUT FROM
    32  (
    33  SELECT DECODE(COL3,NULL,COL1, COL2)  || '-' || LEAD(DECODE(COL3,NULL,COL3, COL1)) OVER (ORDER BY DECODE(COL3,NULL,COL1, COL2)) OUTPUT  FROM
    34  (
    35  SELECT COL1, LEAD(COL1) OVER (ORDER BY COL1) COL2, LAG(COL1) OVER (ORDER BY COL1) COL3 FROM T
    36  )
    37  WHERE
    38  (COL2 - COL1 > 1 OR COL2 IS NULL OR COL3 IS NULL)
    39  )
    40  WHERE OUTPUT != '-';
    OUTPUT                                                                         
    1-5                                                                            
    8-10                                                                           
    13-16                                                                          
    23-24

  • Help needed with fax setup

    Help!!  My home phone service is provided by Verizon and I have a wireless router..no phone cord.
    All my other services are through a centuryLink DSL router..connected with phone line but does NOT provide MY phone sevices.  How do I hook up my 8600 to fax?  to which router and how? Nothing seems to work.

    Hello geoqueen, and welcome to the HP Forums, I hope you enjoy your experience!
    I see you are looking into how to setup your fax.  I would like to help.
    I would recommend following this document on HP Fax Configuration Instructions.
    I would also suggest utilizing this document on Faxing with VoIP Services.
    Good luck and please let me know the results of your troubleshooting steps. Thank you for posting on the HP Forums!
    Please click “Accept as Solution " if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks" for helping!
    Jamieson
    I work on behalf of HP
    "Remember, I'm pulling for you, we're all in this together!" - Red Green.

  • Urgent help need:How inventory system and fulfillment system work

    Hi Every one ,
    I have an requirement to work on inventory and fulfillment system,below are my questions,
    1)I have stock level quantity for an sku is 2 ,if one user done with his order with quantity of 2 then how we can show quantity to the second customer (if stock not available we gone loss the business )
    how we can handle this ?
    2)There are few orders are completed(if some are orders are having quantity available in stock some or backorders)
    here how the fulfillment system understand those orders and how it will update the inventory.
    Could you please any one help me how to work on above requirements or else give me some other solutions to full fill above .
    Regards,
    Jyothi Chidurala
    Edited by: Jyothi.mj on May 22, 2013 5:08 AM
    Edited by: Jyothi.mj on May 23, 2013 4:28 AM

    >
    1)I have stock level quantity for an sku is 2 ,if one user done with his order with quantity of 2 then how we can show quantity to the second customer (if stock not available we gone loss the business )
    how we can handle this ?
    you can always call InventoryManager.AVAILABILITY_STATUS_IN_STOCK to check whether the item is available in inventory , It is the business call if item not available how they want to handle this .
    hope this helps

  • How to use external procedures in OWB Mapping

    Hi,
    Does anyone have an exmple of using external procdures in Mapping.
    Thanks
    mandi

    Hi Mandi,
    you can use Public and self created external Procedures/Functions in a Mapping.
    You can integrate them in Expressions, e.g.
    or use them as Post or Premapping in a Mapping.
    It´s simple, just play a bit :-)
    Only on a few Things you´ve to watch:
    Every external Objects you want to use in a Mapping must be known in the Metadatas.
    If you create a Mapping under the User scott,(e.g.), and you want to use
    an external Procedures/Functions from the User Tiger,(e.g.), you must make sure
    that theres a connection between these two Schematas.
    For such things you can create a Connector in the Control Center.
    Regards
    Lone

  • Need help on how to install external web cam on a macbook?????

    Hi , does anyone have any idea if you can install and use an external webcam and how to install it on a macbook 13.3 in, black, 10.4.11 with intel processor. I have tried like months and months to connect my logitech web cam with no success what so ever. I been racking my brains trying to figure it out. I even called tech support by phone and they weren't really any help. They just said it can be done. I tried downloading the drivers that came in a cd with the logitech and nothing. Every time I try and use my external logitech on a site the built in one on the macbook comes on instead. There has to be a way to bypass the built on one. I know there has to be people out there using external webcams on macbooks. Any help would be appreciated.

    Centaur3 wrote:
    Hi , does anyone have any idea if you can install and use an external webcam and how to install it on a macbook 13.3 in, black, 10.4.11 with intel processor. I have tried like months and months to connect my logitech web cam with no success what so ever. I been racking my brains trying to figure it out. I even called tech support by phone and they weren't really any help. They just said it can be done. I tried downloading the drivers that came in a cd with the logitech and nothing. Every time I try and use my external logitech on a site the built in one on the macbook comes on instead. There has to be a way to bypass the built on one. I know there has to be people out there using external webcams on macbooks. Any help would be appreciated.
    I can't advise on your Logitech webcam, but I am using [this webcam|http://www.bestbuy.com/site/Dynex%26%23174%3B-+1.3MPWebcam/8703094.p?id=1199495403693&skuId=8703094]. First used on a iMac G5, OSX 10.4, then later moved to a Mac Mini OSX 10.5 (and now OSX 10.6.2 on the Mini.) I got it not because it's the best webcam, but because it was one of the few that said it worked with OSX 10.4. (Other webcams I had needed 10.5.) I have tested it on my Macbook Pro (OSX 10.5 and upgraded to 10.6) and it works, but I don't normally use it there.

  • I need help on how to setup hardware raid for ASM.

    In the « Recommendations for Storage Preparation” section in the following documentation: http://download.oracle.com/docs/cd/B28359_01/server.111/b31107/asmprepare.htm
    It mentions:
    --Use the storage array hardware RAID 1 mirroring protection when possible to reduce the mirroring overhead on the server.
    Which is a good raid 1 configuration considering my machine setup?
    “I put my Machine info below.”
    Should I go for something like:
    5 * raid 1 of 2 disks in each raid: disk group DATA
    5 * raid 1 of 2 disks in each raid: disk group FRA
    Then ASM will take care of all the striping between the 5 raids inside a disk group right?
    OR, I go for:
    1 * raid 1 of 10 disks: disk group DATA
    1 * raid 1 of 10 disks: disk group FRA
    In the second configuration, does ASM recognize that there are 10 disks in my raid configuration and stripes on those disks? Or to use ASM striping, I need to have lots of raid in a disks group?
    Here is my Machine Characteristics:
    O/s is Oracle Enterprise Linux 4.5 64 bit
    Single instance on Enterprise Edition 10g r2
    200 GIG database size.
    High "oltp" environment.
    Estimated growth of 60 to 80GIG per year
    50-70GIG archivelogs generation per Day
    Flashback time is 24 hours: 120GIG of flashback space in avg
    I keep a Local backup. Then push to another disk storage, then on tape.
    General Hardware Info:
    Dell PowerEdge 2950
    16 GIG RAM
    2 * 64 bit dual core CPU's
    6 * local 300G/15rpm disks
    Additional Storage:
    Dell PowerVault MD1000
    15 * 300G/15rpm Disks
    So I have 21 Disks in total.

    I would personally prefer the first configuration and let ASM stripe the disks. Generally speaking, many RAID controllers will stripe then mirror (0+1) when you tell it to build a striped and mirrored RAID set on 10 disks. Some will mirror then stripe (1+0) which is what most people prefer. That's because when a 1+0 configuration has a disk failure, only a single RAID 1 set needs to be resync'd. The other members of the stripe won't have to be resynchronized.
    So, I'd prefer to have ASM manage 5 luns and let ASM stripe across those 5 luns in each disk group. It also increases your ability to reorganize your storage if you need 20% more info in DATA and can afford 20% less in FRA, you can move one of your RAID 1 luns from FRA to DATA easily.
    That's my 0.02.

  • URGENT HELP: Need to reformat an external hard drive for Mac/Win!

    We got a Desk Hammer external hard drive and my hubby chose to format it as Mac Only when it first initialized. We needed it to be formatted for Mac/Win usage. Now we cannot figure otu how to reinitialize and reformat it. It's been years since I messed with his Mac. Help--right now we just have a big old doorstop instead of a hard drive! BTW Desk Hammer is no help with support (I guess that's why they were on sale); their website isn't even complete!

    Use the Disk Utility application found in /Applications/Utilities to format the Drive as MS-DOS File System. This will be readable by both Mac and Windows platforms.
    Hope this helps! bill
    1 GHz Powerbook G4   Mac OS X (10.4.8)  

  • HELP Need wre54g V3 setup wizard!

    Hey guys, PLEASE help me out as NO ONE at linksys has been able to; I lost the setup cd and can't configure my range ext to match my router. I called cust support and tried Everything! connecting the ethernet cables using the WRE's ip address, etc and could not get anything to work! when I used the CD it worked the first try, and there is no setup download for the v3 on this website (i tried v2 and 1 setup wizards and they did not work) please help me out, I've been on the phone and messing with this for hours on end for several days and can't take it anymore! Thanks so much to anyone who can help.
    (Mod Note: Email address removed.)
    Message Edited by giantherockstar on 06-25-2008 11:19 AM

    You do not need the CD to configure the RE. Try to follow these steps:
    http://forums.linksys.com/linksys/board/message?board.id=Range_Expanders&thread.id=692
    If you don't understand how to do something, post back.
    Message Edited by Luckydog on 06-25-2008 12:58 PM

  • Help needed in page setup and print dialouge

    Hi
    how can i display page setup diaog box and print dialog box in java to print my document.
    Thanking you in advance

    if you can tell the full procedure how can i setup the page and print my file it will be very kind of you.

  • How to setup external 500GB Hard disk drive in enclosure

    How easy is it too setup an external 500GB Hard disk drive (HDD) in enclosure? HDD is a brand new Western Digital 500GB HDD in an enclosure which has FireWire ports. The drive is not formatted.

    Plug it in and use the Disk Utility in the /Applications/Utilities/ folder to format it as a Mac OS Extended (Journaled) disk.
    (46625)

  • Help on how to setup a WRT320N as an access

    I need help to setup a WRT320N as an Accesspoint. I also have a WAG320N as mt main connection to the internet. It settings are 192.168.1.1. It is also set for 50 users with a starting ip of 192.168.1.100
    The setting I am trying to use for the WRT320N are as follows.
    Internet ip 192.168.1.140
    Subnet 255.255.255.0
    DHCP is set to off.
    The router ip I want to set is 192.168.1.2 but it will no allow this. Is there a work around.
    Thank you in advance.
    Regards
    Solved!
    Go to Solution.

    1. Don't set an internet IP address. Leave it on Automatic/DHCP.
    2. Set the LAN IP address to 192.168.1.2.
    3. Disable the DHCP Server.
    4. Connect one of the LAN Ports to a LAN port of the WAG320N.

Maybe you are looking for

  • Display pdf only in browser window

    Does anyone have custom code or javascript that will force a pdf to open in a user's browser window rather than follow their browser setting? I don't want the user to have the option of downloading the pdf and launching Reader. Thanks.

  • Problem in concurrent update in ADF BC (compare to oracle forms)

    Hi, I am using JDeveloper 10.1.3.3. I created a simple form on EMP table using JSF/ADF BC template and then I browsed the EMP form with 2 separate browsers. Both browser were on the same record (for example SMITH record). I changed the value of salar

  • Credit for fraudulent calls

    How do I request credit for fraudulent phone calls from my account?  My account was locked, so Skype figured out my account was hacked, but how do I contest the calls and charges?  After this event, there is no way in hell I am keeping more then a fe

  • Notification successful but email not sent untill PM shuts down

    Hello, I was trying to email from a BPEL process and edited the ns_emails.xml file; corrected the SMTP host and port. The BPEL processes (with the email notification) succeed but the emails are not delivered until the BPEL PM shuts down. My network a

  • X58 PRO won't boot (memory or video card issue???)

    Hi all, this is my first message here. I have recently bought a X58 PRO motherboard to which I have connected the following devices: one HD, one DVD, the CPU (i7 950), one Video Card (GeForce 6600 pci-express) and three DDR3 modules from Corsair (nam