Add another listener entry

In oracle 11g, we have the database running with listener port 1521. We would like to cretae another database using the same oracle home and add the new listener entry with different port. Please advise how to add another listener entry in existing listener. thanks

CKPT wrote:
Please do not provide such stupid advice.Thinking can cause stupid, so kill the stupidity.
The number of listeners required per server is ONE! Not 2,not 100, but ONE.
Also different ports are not required. No gain is made by setting up different listeners on different ports.
The listener is a BROKER only, there is NO PERMANENT contact.oracle@ckpt-oracle:> ps -ef|grep tns
root 197 2 0 May21 ? 00:00:00 [netns]
oracle   14266     1  0 Jun16 ?        00:09:35 /oracle/app/oracle/product/10.2.0/db_1/bin/tnslsnr <listener1> -inherit
oracle   24777     1  0 Jun16 ?        00:00:09 /oracle/app/oracle/product/10.2.0/db_1/bin/tnslsnr <listener2> -inherit
oracle 40665 10111 0 03:51 pts/2 00:00:00 grep tns
oracle 46615 1 0 May21 ? 00:01:05 /oracle/app/11.2.0/grid/bin/tnslsnr LISTENER_SCAN1 -inherit
oracle@ckpt-oracle:>
Then how the two listeners are running of the same home?
They obviously can run from the same home. What they can't do is run on the same port.
OP question.
We would like to cretae another database using the same oracle home and add the new listener entry with different portTell that it is not suggestable, ok, Here question of OP is Can it be done or not?And if he had asked how to put diesel fuel in his gasoline powered auto?
Sometimes (far too often in this forum) the responsible thing to do is not to give the OP what they asked for, but to try to explain to them why they are asking for the wrong thing.

Similar Messages

  • Add another listener to database

    Hi expert
    I have EBS v 11.5.10.2 with Database 9.2.0.6 and on this database I have one listener and all employees connect throw this listener with 1521 port , I am thinking to add another listener with 1531 port in database .
    How can the application see the both listener in the same time.
    Regards
    Mohammed

    Mohammed,
    If you are asking about load balancing, the following documents should be helpful.
    Note: 217368.1 - Advanced Configurations and Topologies for Enterprise Deployments of E-Business Suite 11i
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=217368.1
    Note: 306653.1 - Installing and Configuring Web Cache 10.1.2 and Oracle E-Business Suite 11i
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=306653.1
    For PCP, refer to:
    Note: 388495.1 - How to Set Up Parallel Concurrent Processing (PCP) in Apps 11i?
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=388495.1
    Regards,
    Hussein

  • Trying to add another DB under SCAN via DBCA "Default listener LISTENER is not Configured in the grid infrastructure home"

    Trying to install another DB under RAC using SCAN listener on a new port.  DBCA gives error "Default listener LISTENER is not Configured in the grid infrasturcture home".
    Have tried srvctl config listener, srvctl start listener to start the listener.  Still not able to get past the DBCA error.  What am I missing?  Do not want to start LISTENER on port 1521 as SCAN is running on 1521.

    No your Database config does use hostname/ip + port or a tns-entry pointing to the local_listener. Neither method does care for the home the listener is running from.
    You will however have to take care of the entries in the clusterware, as the listener is a controlled resource. If you manually relocate it, then it will only work until next restart of crs stack.
    The simplest way to switch the home is by running first netca from database home and delete the listener and then switch to grid home run netca again and create the listener.
    netca will take care of registering it with crs with the correct environment settings. You will have a short period where your rac won't have a listener and therefore won't accept new connections until the new listener is up and running.
    Relocating the current listener requires to modify several parameters via crsctl in the cluster registry, but allows doing this node by node without complete outage.
    If you want to go that way, then create another listener from grid home and compare the settings of current listener and of the new listener. You will need to update several parameter before you can relocate it.
    Run this command to show the current settings and compare it to the listener from grid home:
    crsctl stat res ora.LISTENER.lsnr -p
    You will need to modify serveral parameters, ACTION_SCRIPT,AGENT_FILENAME,ALIAS_NAME,ORACLE_HOME and the ACL
    Modify works like this, for ACL you must use the encasing single apostrophe ' and run it as root:
    crsctl modify res ora.LISTENER.lsnr -attr "ACL='owner:oracle:rwx,pgrp:oinstall:rwx,other::r--'"
    I would recommend Version 1 if short outage is acceptable. For both variants verify that you can resolve all tnsnames entries in both homes.
    Regards
    Thomas

  • Stuck in the listener entry step in DUPLICATE OF RAC databases

    I am trying to duplicate with RMAN a new RAC db from production RAC db.
    I am done with the following steps:
    1). backup prod database with rman
    2). copy init file over and modity entries not to reflect rac paramters...
    3). create a password file for new db
    now I got stuck on step 4) Create a static listener entry for your new database and reload the listener as appropriate.
    This step is necessary, because an RMAN duplicate uses an auxiliary database that is in no mount and therefore will not automatically register itself with the listener(s) as specified by local_listener, remote_listener and or the default, 1521.
    For example:
    (SID_DESC =
    (GLOBAL_DBNAME = rman.colestock.test)
    (ORACLE_HOME = /u03/app/oracle/product/db/10.2)
    (SID_NAME = rman2)
    The above is instruciton I got.
    However I got very confused here:
    First, on the RAC server, I added sid entry at the bottom of listener.ora. and the tnsnames entry looks like this:
    abc =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = xxxxxx76)(PORT = 1528))
    (ADDRESS = (PROTOCOL = TCP)(HOST =xxxxxx 77)(PORT = 1528))
    (CONNECT_DATA =
    (SERVICE_NAME = abc_service)
    How do I add a sid entry in the tnsnames.ora file? Since I supposed to create a single db first, not rac, do I have to put service_name or sid name there?
    ANother confusion is how to reload the listener? Since this is a RAC server, two nodes has two listenrs: abc_listener1, abc_listener2. Do I have to stop and start listner by svrctl stop the dynamic listener?
    Please if you can, provide detailed steps here how to create static listener in tnsnames entry and listener entry on a RAC environment and then reload the listener.
    I have to finish up the duplication this weekend. So any help will be greatly appreciated.
    Thank you in advance.

    user569151 wrote:
    I am trying to duplicate with RMAN a new RAC db from production RAC db.
    I am done with the following steps:
    1). backup prod database with rman
    2). copy init file over and modity entries not to reflect rac paramters...
    3). create a password file for new db
    now I got stuck on step 4) Create a static listener entry for your new database and reload the listener as appropriate.
    This step is necessary, because an RMAN duplicate uses an auxiliary database that is in no mount and therefore will not automatically register itself with the listener(s) as specified by local_listener, remote_listener and or the default, 1521.
    For example:
    (SID_DESC =
    (GLOBAL_DBNAME = rman.colestock.test)
    (ORACLE_HOME = /u03/app/oracle/product/db/10.2)
    (SID_NAME = rman2)
    The above is instruciton I got.
    However I got very confused here:
    First, on the RAC server, I added sid entry at the bottom of listener.ora. and the tnsnames entry looks like this:
    abc =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = xxxxxx76)(PORT = 1528))
    (ADDRESS = (PROTOCOL = TCP)(HOST =xxxxxx 77)(PORT = 1528))
    (CONNECT_DATA =
    (SERVICE_NAME = abc_service)
    How do I add a sid entry in the tnsnames.ora file? Since I supposed to create a single db first, not rac, do I have to put service_name or sid name there?
    ANother confusion is how to reload the listener? Since this is a RAC server, two nodes has two listenrs: abc_listener1, abc_listener2. Do I have to stop and start listner by svrctl stop the dynamic listener?
    Please if you can, provide detailed steps here how to create static listener in tnsnames entry and tnsnames.ora does not contain any information about listener.
    listener entry on a RAC environment and then reload the listener.http://www.lmgtfy.com/?q=oracle+local_listener

  • Create row as next row on click of add another row button not on top of it

    My af:table is based on a transientVO (all the attributes are transient)
    This is just for data entry and not for data retrieval
    So i have placed add another row button on my af:table
    After i enter data in the first row and click add another row button the data is being moved to second row and the new row is created on top of that
    I want the row to be created as next row . not on top of my existing row
    How can we do this

    would this help you:
    http://lucbors.blogspot.com/2010/12/adf-11g-how-to-control-where-new-row-is.html

  • Add another Node EBS 11i

    Hi all,
    this thread is in continuation with thread. Re: EBS upgrade path
    Applicaiotn=11.5.10.2
    DB=10.2.0.5.0
    OS= OEL 4.8
    Nodes configuration is 1+1+1
    i.e.
    Node Name
    erpapps (Admin+Web+Form+Concurrent)
    erpdb db tier
    erpdrdb standby database
    <b>want to add another node
    erpapps1 with (Admin+Web+Form+Concurrent)</b>
    I followed following steps:
    <b>1- prepare to source system, executed</b>
    perl adpreclone.pl dbTier // although it has nothing to do with this activity
    perl adpreclone.pl appsTier // on erpapps node
    <b>2- Copy the appsTier from erpapps to erpapps1 </b>
    <b>3- executed perl adcfgclone.pl appsTier </b>
    adcfgclone completed successfully.
    parameters entered for adcfgclone.pl are as
    PROMPT :
    Do you want to use a virtual hostname for the target node (y/n) [n] ?
    ANSWER :
    n
    PROMPT :
    Target system database SID [PROD]
    ANSWER :
    PROD
    Default value found for s_contextname : PROD_erpapps1
    PROMPT :
    Target system database server node [erpdb]
    ANSWER :
    erpdb
    PROMPT :
    Target system database domain name [abc.def.com]
    ANSWER :
    abc.def.com
    PROMPT :
    Does the target system have more than one application tier server node (y/n) [y] ?
    ANSWER :
    y
    PROMPT :
    Does the target system application tier utilize multiple domain names (y/n) [n] ?
    ANSWER :
    n
    PROMPT :
    Target system concurrent processing node [erpapps]
    ANSWER :
    erpapps1
    PROMPT :
    Target system administration node [erpapps]
    ANSWER :
    erpapps1
    PROMPT :
    Target system forms server node [erpapps]
    ANSWER :
    erpapps1
    PROMPT :
    Target system web server node [erpapps]
    ANSWER :
    erpapps1
    PROMPT :
    Is the target system APPL_TOP divided into multiple mount points (y/n) [n] ?
    ANSWER :
    n
    PROMPT :
    Target system APPL_TOP mount point [/oracle/oraapps/prodappl]
    ANSWER :
    /oracle/oraapps/prodappl
    PROMPT :
    Target system COMMON_TOP directory [/oracle/oraapps/prodcomn]
    ANSWER :
    /oracle/oraapps/prodcomn
    PROMPT :
    Target system 8.0.6 ORACLE_HOME directory [/oracle/oraapps/prodora/8.0.6]
    ANSWER :
    /oracle/oraapps/prodora/8.0.6
    PROMPT :
    Target system iAS ORACLE_HOME directory [/oracle/oraapps/prodora/iAS]
    ANSWER :
    /oracle/oraapps/prodora/iAS
    PROMPT :
    Do you want to preserve the Display set to :0.0 (y/n) [y] ?
    ANSWER :
    y
    at the end
    The new context file has been created at:
            /oracle/oraapps/prodappl/admin/PROD_erpapps1.xml
    then autconfig completed successfully and services started with one exception while starting services
    Checking for FNDFS executable.
    Starting listener process APPS_PROD.
    adalnctl.sh: exiting with status 127<b>4- executed perl adaddnode.pl </b>
    [oraapps@erpapps1 ~]$ more set_apps_env.sh
    . /oracle/oraapps/prodappl/APPSPROD_erpapps1.env
    [oraapps@erpapps1 ~]$ . set_apps_env.sh
    [oraapps@erpapps1 ~]$ cd $COMMON_TOP/clone/bin
    [oraapps@erpapps1 bin]$ ls
    adaddnode.pl  adcfgclone.pl  adchkutl.sh  adclonectx.pl  adclone.pl
    [oraapps@erpapps1 bin]$ perl adaddnode.pl
    Enter the APPS username: APPS
    Enter the APPS user password:
            Using CONTEXT_FILE : /oracle/oraapps/prodappl/admin/PROD_erpapps1.xml
            Using      CTXORIG : /oracle/oraapps/prodcomn/clone/bin/../context/apps/CTXORIG.xml
    APPL_TOP name of the source system (old APPL_TOP name) : erpapps
    APPL_TOP name of the target system (new APPL_TOP name) : erpapps1
    Configuring snapshot information for the original (clone source) node...
    Executing command:
    sqlplus /nolog @/oracle/oraapps/prodappl/ad/11.5.0/patch/115/sql/adadmrat.sql APPS pals15 PROD PROD erpapps1 erpapps /oracle/oraapps/prodcomn/temp/adadmat_sql.spool
    SQL*Plus: Release 8.0.6.0.0 - Production on Wed Sep 28 21:52:17 2011
    (c) Copyright 1999 Oracle Corporation.  All rights reserved.
    Connected.
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    Current data
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    APPL_TOP Names in AD_APPL_TOPS:
    *PRESEEDED*
    GLOBAL
    erpapps
    erpapps1
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    Updating tables...
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    declare
    *<b>
    ERROR at line 1:
    ORA-00001: unique constraint (APPLSYS.AD_APPL_TOPS_U2) violated
    ORA-06512: at line 16
    </b>
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    Error configuring snapshot information for the source node...cannot proceed with adding the node.[oraapps@erpapps1 bin]$
    [oraapps@erpapps1 bin]$ sqlplus apps
    SQL*Plus: Release 8.0.6.0.0 - Production on Wed Sep 28 21:52:29 2011
    (c) Copyright 1999 Oracle Corporation.  All rights reserved.
    Enter password:
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    <b>followed thread  Error:ORA-00001: unique constraint (APPLSYS.AD_APPL_TOPS_U2) violated </b>
    SQL> create table ad_timestamps_bak as select * from ad_timestamps;
    Table created.
    SQL> create table ad_appl_tops_bak as select * from ad_appl_tops;
    Table created.
    SQL> delete ad_appl_tops where name='erpapps1';
    1 row deleted.
    SQL> delete from ad_timestamps where attribute like '%erpapps1';
    2 rows deleted.
    SQL> commit;
    SQL> exit<b>rerun perl adaddnode.pl</b>
    Enter the APPS username: APPS
    Enter the APPS user password:
            Using CONTEXT_FILE : /oracle/oraapps/prodappl/admin/PROD_erpapps1.xml
            Using      CTXORIG : /oracle/oraapps/prodcomn/clone/bin/../context/apps/CTXORIG.xml
    APPL_TOP name of the source system (old APPL_TOP name) : erpapps
    APPL_TOP name of the target system (new APPL_TOP name) : erpapps1
    Configuring snapshot information for the original (clone source) node...
    Executing command:
    sqlplus /nolog @/oracle/oraapps/prodappl/ad/11.5.0/patch/115/sql/adadmrat.sql APPS pals15 PROD PROD erpapps1 erpapps /oracle/oraapps/prodcomn/temp/adadmat_sql.spool
    SQL*Plus: Release 8.0.6.0.0 - Production on Wed Sep 28 22:25:33 2011
    (c) Copyright 1999 Oracle Corporation.  All rights reserved.
    Connected.
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    Current data
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    APPL_TOP Names in AD_APPL_TOPS:
    *PRESEEDED*
    GLOBAL
    erpapps
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    Updating tables...
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    PL/SQL procedure successfully completed.
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    Updated data
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    APPL_TOP Names in AD_APPL_TOPS:
    *PRESEEDED*
    GLOBAL
    erpapps
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    Done
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    Commit complete.
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    Completed snapshot configuration on source node.
    Configuring snapshot information for the new (clone target) node...
    Executing command:
    sqlplus /nolog @/oracle/oraapps/prodappl/ad/11.5.0/patch/115/sql/adadmdat.sql APPS pals15 PROD PROD erpapps erpapps1 /oracle/oraapps/prodcomn/temp/adadmdat_sql.spool
    SQL*Plus: Release 8.0.6.0.0 - Production on Wed Sep 28 22:25:33 2011
    (c) Copyright 1999 Oracle Corporation.  All rights reserved.
    Connected.
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    Checking configuration...
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    PL/SQL procedure successfully completed.
    PL/SQL procedure successfully completed.
    AOL Schema Name         : APPLSYS
    Applications System Name: PROD
    Source APPLTOP Name     : erpapps
    Target APPLTOP Name     : erpapps1
    ACTIVE_FLAG present?    : TRUE
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    Current data
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    APPL_TOP Names in AD_APPL_TOPS:
    *PRESEEDED*
    GLOBAL
    erpapps
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    Updating tables...
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    PL/SQL procedure successfully completed.
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    Updated data
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    APPL_TOP Names in AD_APPL_TOPS:
    *PRESEEDED*
    GLOBAL
    erpapps
    erpapps1
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    Done
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    Commit complete.Following are the observations:
    - concurrent is not starting on both nodes
    - if access application through url http://erpapps.abc.def.com:8010/--- then till login page url remains for same host, but after successfull login url redirects to http://erpapps1.abc.def.com:8010/.
    <b>
    we want this setup
    erpapps (Admin+Web+Form+Concurrent)
    erpapps1 (Admin+Web+Form+Concurrent)
    erpdb db tier
    erpdrdb standby database
    What I missed in the configuration?
    </b>
    Regards,
    Asim

    cocurrent error at node ERPAPPS1
    Could not contact Service Manager FNDSM_ERPAPPS_PROD. The TNS alias could not be located, the listener process on ERPAPPS could not be contacted, or the listener failed to spawn the Service Manager process.
    Could not contact Service Manager FNDSM_ERPAPPS1_PROD. The TNS alias could not be located, the listener process on ERPAPPS1 could not be contacted, or the listener failed to spawn the Service Manager process.concurrent error for node ERPAPPS, eralier it was working fine
    Routine &ROUTINE has attempted to start the internal concurrent manager.  The ICM is already running.  Contact you system administrator for further assistance.afpdlrq received an unsuccessful result from PL/SQL procedure or function FND_DCP.Request_Session_Lock.
    Routine FND_DCP.REQUEST_SESSION_LOCK received a result code of 1 from the call to DBMS_LOCK.Request.
    Possible DBMS_LOCK.Request resultCall to establish_icm failed
    The Internal Concurrent Manager has encountered an error.
    Review concurrent manager log file for more detailed information. : 28-SEP-2011 23:07:59 -
    Shutting down Internal Concurrent Manager : 28-SEP-2011 23:07:59
    List of errors encountered:
    _ 1 _
    Routine AFPCSQ encountered an ORACLE error. .
    Review your error messages for the cause of the error. (=<POINTER>)
    List of errors encountered:
    _ 1 _
    Routine AFPCAL received failure code while parsing or running your
    concurrent program CPMGR
    Review your concurrent request log file for more detailed information.
    Make sure you are passing arguments in the correct format.
    The PROD_0928@PROD internal concurrent manager has terminated with status 1 - giving up.<b>Do you have PCP implemented?</b>
    No, till now we haven't done that.

  • How to add another Segment field in OBC4

    Dear Experts,
    OBC4 -> select Comp. Code -> field Status Group -> select Field St. Grp -> Duuble click on Field St. Grp
    I have a requirement to make Business Place/secn field Mandatory where ever it is used in transaction F-43 , F-02 , F-48 .
    So for this am going through OBC4 . But there (Under Field status Grp.) am not getting any field named as Business Place . There exists a field Business Area . But Business Area and Business Place both are different .
    So Is it possible to add another segments named as Business Place/secn  there with 3 options Supress , Req. Entry , Opt. Entry . So that i can change it to Mandatory .
    Thanks in Advance
    Jack

    Hi,
    Check this sample process
    To get custom fields on IDOC you need to add custom segment on IDOC and for that you have to create a extension IDOC with reference to Basic IDOC.
    You can do that as explain below.
    Here for example you have basic idoc ORDERS05 and you want to add additional segments at header level - ZE1EDK01 and line item level ZE1EDP01
    1. TCode - WE31 : Create custom segments ZE1EDK01 and ZE1EDP01 with the fields you want and release these segments.
    2. TCode - WE30 : Create extension IDOC
    In WE20 enter extension IDOC name - ZORDERS05, select "Extension" option and hit "create" button. When it gives pop-up, select "create new" and enterd linked basis type as "ORDERS05". Enter proper description and save.
    3. On the next screen of WE30, select the segment under which you want to add your additional segment. Save everything.
    4. TCode - WE82. Here you link extension idoc to basic idoc and message type.
    Go into change mode. Hit "New entries button" Enter Message type = "ORDERS", basic type = "ORDERS05" and extension type = "ZORDERS05".
    Regards,
    Satish

  • How to know which leaf node i click and how to add a listener to each node?

    hi! hello to all members, i have a problem i know how to create a listener, but i dont know how to add a listener to each leaf node. here is the scenario i want to do, i have a JTree where theres a topic that you can select on each leaf node, so when the user click the specific topic it will open another JFrame,which i dont know how to do it also, that its! the next problem will be how do i know which leaf node i select, so that i can open a right topic before the JFrame will open?please, i am very need this to solve quickly as possible. thanks again to all members.

    What you have to do is to add a mouse listener on your JTree. Try something like this:
    tree.addMouseListener(new java.awt.event.MouseAdapter() {
             public void mouseReleased(MouseEvent e) {
                tree_mouseReleased(e);
    private void tree_mouseReleased(MouseEvent e) {
          TreePath selPath = tree.getSelectionPath();
          // Check If the click is the Right Click
          if (e.isPopupTrigger() == true) {
          // This is your right Click
           else {
                     // This is your Left Click
    }Your other problem: Set the userObject on nodes and on left click compare it with your object, if it matches, display the appropriate file. Alternatively, if your nodes are unique, you can match the names to open the file.
    Hope this Helps
    Regard
    Raheel

  • How to Add another path to UTL_FILE_DIR in 9i

    Hi,
    How can we add another path to an existing UTL_FILE_DIR value in Oracle 9i?
    Can we do this Dynamically so that it doesn't require a DB bounce
    Thanks in Adv
    Srikanth Tirandas

    Hi 397779
    you can repeat that parameter in the parameter file several times.
    UTL_FILE_DIR
    Parameter type
    String
    Syntax
    UTL_FILE_DIR = pathname
    Default value
    There is no default value.
    Parameter class
    Static
    Range of values
    Any valid directory path
    UTL_FILE_DIR lets you specify one or more directories that Oracle should use for PL/SQL file I/O. If you are specifying multiple directories, you must repeat the UTL_FILE_DIR parameter for each directory on separate lines of the initialization parameter file.
    All users can read or write to all files specified by this parameter. Therefore all PL/SQL users must be trusted with the information in the directories specified by this parameter.
    Note:
    If you list multiple values, all entries of this parameter must be on contiguous lines of the parameter file. If you separate them with other parameters, Oracle will read only the last (contiguous) lines
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96536/ch1221.htm#REFRN10230
    Joel Pèrez
    http//otn.oracle.com/experts

  • Add another instance to RAC database...

    Dear all,
    If u want to add another instance to database... using dbca ... database should be shutdown or running....?
    Please help.
    Regards,
    Imran

    Perhaps asking the question in the RAC forum might be more useful.
    http://forums.oracle.com/forums/category.jspa?categoryID=140
    But - if you think about it ... the idea of RAC is to maintain ultra high availability. It would sort of defeat the purpose to shut down all RAC nodes to add or remove one node from the database.
    (In other words the other nodes can, and probably be should be, up.)
    The proper steps to add a node, in general, are
    - Install and configure OS and hardware for new node.
    - Add Oracle Clusterware to the new node.
    - Configure ONS for the new node.
    - Add ASM home to the new node.
    - Add RAC home to the new node.
    - Add a listener to the new node.
    - Add a database instance to the new node.
    The details are in the Oracle® Database Oracle Clusterware and Oracle Real Application Clusters Administration and Deployment Guide
    The real kicker is that the clusterware is installed correctly and it recognizes the other nodes. Also means that the shared store is properly configured, and that is a step people often mess up.
    Message was edited by:
    Hans Forbrich

  • Syncing problems - itunes podcasts cloud clutter: whenever I sync iphone and mac after updating mac, mac adds already listened to podcasts to iphone. This never happened before iOS update with iphone 4S

    This was an iOS update that came around iphone 4S that overwrites the phone with what has been updated on the mac. The mac doesn't seem to know I've already listened to something on the phone. It redownloads the podcast to the mac, marking it as unplayed. Then, when I sync the iphone with mac (after updating mac), the mac adds already listened to podcasts to iphone marked as upplayed. The way it used to work was that the itunes on your mac (or PC) acted as a master content controller to whatever was on any of your devices. Ever since the cloud was added, the mac seems to have lost this ability to be a master content controller. Now the cloud clutters up itunes.
    Another problem that the cloud, itunes and podcasts is that any deleted from the mac will show up again, with links to the cloud downloaded again. This really clutters things up. It seems like the cloud has become the master controller, even though I don't use it.
    Any idea how to solve these problems? Any idea which can be used as a master content controller?

    Yes, I don't disagree with the first part. However, I could sync my iphone (to itunes 9.2.1) when I had 4.1 installed from another computer).
    I think that I am limited to an old os (10.4.11) on my mac as it is old (pre-intel) and therefore I can't update my OS. If this isn't the case, then an update to my OS could solve the problem. I'll check the requirements of the newer OS now.

  • I have an ipod touch already linked to computer, i want to add another using same email details. i have set up new ipod and it has excatly same  music etc as 1st ipod how can i use 1 account but 2 differnt ipods? many thanks.

    i   have an ipod touch linked to laptop, i now want to add another ipod touch how do i do it using same email etc, but dont want the same apps etc as the first ipod. as it is now i have exactly the same stuff on both ipods. please help.

    It's a snap.  Each device has its own name.  If iTunes does not assign unique names for the two iPods, change one of the names yourself.  You can see both my iPad and my iPod simultaneously on my iTunes because I sync wirelessly. 
    Simply configure the sync characteristics for each device separately.  The iTunes software will know the one with which it's communicating.

  • Is there a way to automatically add another of the same page while a form is being filled?

    Is there a way to automatically add another of the same page while a form is being filled?
    I have a two-page form of which the second page is essentially a spreadsheet analog.  Often, there is need for for more lines than are available on the page.  Is there a way in which to add another or even multiple copies of the second page? 
    Thanks ahead...
    TG

    You can do that with a dynamic XFA form created in LiveCycle Designer, which comes with Acrobat Pro for Windows. For more information, you can ask over at the LiveCycle Designer forum.

  • When I want to add an album onto my iphone using itunes, I am successful in  putting one album on my phone but when I want to add another album it deletes the first album I put on my phone. How can I add more albums without some albums disappearing?

    I am having a problem with importing cds onto my iPhone. I have successfully added a playlist or album to my phone but when I want to add another album/artist, the first album that was on there has all of a sudden disappeared. Its like I can only have one album on my phone. This is my first time dealing with anything Apple because I have been using android phones. Any help would be appreciated as I don't fully understand iTunes.

    You can delete photos from individual albums but not from the camera roll.  If you try to delete a photo from camera roll it will be deleted from all other albums ("locations") that contain the photo.  This is because the actual photo is in the camera roll (the albums only contain links to the photo in camera roll, not the actual photo).

  • My ipads and iphone are listed and included in my 5 devices in iTunes.  But it should only be computers (my desktop and laptop).  If I deauthorize them, so that I can add another laptop, how to I keep the music/purchases from itunes on them?

    I would like to add another laptop to my authorized devices in iTunes store.  But it says I have 5 devices already.  4 of these devices are actually iphones, ipads or itouch.  I am afraid to deauthorize them so I can add a laptop.  It will take the music/apps away, won't it?  How do you include an itouch/ipad/iphone in your iTunes account without listing it as an authorized device?  And where is the '10 devices' coming from?  vs. 5?  Very confused
    We need to use the following devices with the same iTunes id:
    2 laptops (soon to be three)
    1 desktop
    2 ipads
    2 iphones
    2 itouches
    Is this possible?
    To make things more complicated, a few of these devices will also use a DIFFERENT apple id for the cloud/mobile me.
    But we all use the same iTUNES id for apps/ music in the family.
    Thanks so much for your help!

    There is no list of authorized computers.  Where do you see a list?
    You must be talking about something other than authorization.  Please clarify.
    iTunes Store: About authorization and deauthorization

Maybe you are looking for

  • Oracle BI Interactive Dashboards not working even OC4J is running

    Hi, Just now I have installed OBI EE in my machine ( Standalone system). I have started the oc4j and it says "Initialized", when I try to open the Link for "Oracle BI Interactive Dashboards", its not opening. Regards, Ashoka BL

  • 431 4.3.1 STOREDRV mailbox disk is full

    I discovered that messages were stuck in the queues and clients were storming with complaints, checking further I discovered the error.. 431 4.3.1 STOREDRV; mailbox disk is full. Then checking on the exchange console, mailbox04 database, copy status

  • Can we download output of alv tree ?

    hi all,    i have a requirement to download the output of alv tree when it is collapsed (detailed). Can we download that ? i am using cl_gui_alv_tree class.     plz let me know asap. regards raghav

  • Service document in document flow of inbound delivery

    I need to delete an inbound delivery but system is not allowing me to do so .When I checked the document flow of inbound delivery,I found a service document is there, but I am not able to display teh service document,It says it does not exist,I even

  • Re-establishing Netscape Preferences/Problems

    Hello, Recently, I upgraded from 10.1.5 to 10.4. All was fine with my Netscape mail prefences, etc. I then found a copy of my old User folder in "Users" but it's not part of any "Account". Upgrading to 10.4 gave me a new Account User folder with a "1