Oracle SID Problem

I have installed Oracle 10g on windows 2003 with sid ora10. I had to uninstall it and then reinstall it. When i choose the same sid it told me that already exists. Any feedback how this resolved. I have to have this sid due to application issues.

Hi,
You have to delete the Windows Service with oradim :
oradim -DELETE -SID Claim (where claim is the SID)
Delete oracle service in regedit. Then recreate it.
You can also view Doc ID 688544.994 on Oracle Metalink.
I think same applies in Oracle 10g.
Adith

Similar Messages

  • Oracle SID Problems with numbers

    Hi everybody,
    I created a new database (ORACLE 10g) with the SID name IC71 and the same global database name. After finishing the configuration and starting the database everything worked fine.
    Now I installed the Oracle Client on another server machine. I made an entry in the tnsnames.ora with the Servicename IC71 and it worked. The problem now is, that I have to give the SID instead of the Servicename for installing some software. With the SID IC71 it does not work, after I changed the SID to IC it works.
    Can someone explain me this strange settings? Has Oracle problems with numbers in the SID name?

    Has Oracle problems with numbers in the SID name?Not at all. I often use numbers in SIDs, and I've never had problems with that. Your problem has to be elsewhere.
    With the SID IC71 it does not workWhich error do you get ?

  • Oracle insert problem(records not in the order they are inserted)

    hi, all:
    I tried to insert a word list into a oracle table, everything is fine except that the words are not in the order they are inserted. For example, the words are inserted in the following sequence:
    accreted     
    accreting     
    accretion     
    accretionary     
    accretive     
    bladebone
    bladed     
    bladeless
    bladelike
    When I retrived the resultset from the table and iterate through each of the record, the words are not in the order inserted, i.e., it may look like this,
    accreted     
    accreting     
    bladebone
    bladed     
    accretion     
    accretionary     
    accretive     
    bladeless
    bladelike
    This strange phenomenon won't happen when the word list is small, like 500 words or so, but when the number of words reaches around 10,000, it takes place. My coworker also experienced this problem when trying to insert large volume of data into oracle table.
    The code I used to insert into the DB table:
    BufferedReader reader=new BufferedReader(new FileReader("C:\\Dictionary.txt"));
    while( (line=reader.readLine())!=null )
         sql="INSERT INTO DICT " +
         "VALUES ('" + line +"')";                         
         statement.executeUpdate(sql);
    Any advice will be highly appreciated,
    thanks

    Well, the best thing to do is follows scsi-boy's advice and add the additional column and either put a sequence number in it from the Java side as you insert, or use an Oracle sequence object to put a sequence number in it from the Oracle side (which is sort of like an auto-generated value, but different).
    Note that an Oracle sequence generates numbers in sequence, but possibly with gaps (usually if the database is rebooted), unless you do some things that slow sequences down substantially. Sequences can also be something of a bottleneck on RAC clusters. See:
    http://www.dizwell.com/oracle/articles/autonumbering.html
    However, if your coworker is commiting after each and every insert (which is bad form and slows the database down, -10 points), and if your coworker is also never ever ever updating the columns after they've been inserted, and if your coworker is using Oracle 10g and not some older version such as 9i, then your coworker could use the ORA_ROWSCN pseudo-column to order by. Those are very very severe constraints and you shouldn't begin to consider doing it that way without a very good reason, and right now you and your coworker wouldn't know a good reason if it snuck up and bit you on the butt, you've got a lot of learning the basics first.

  • Oracle sid 102isql service not working

    Hi,
    oracle<sid>102isql is not in start status, when i try to start it i got below message.
    the above service could not start local services and error:1067 the process terminated unexpectedly.
    iam not able to connect the SAP for this reason.Please advice.
    Regards,
    Asif

    Hi,
    Check the DB and Listener is UP or not.. If it OK and still you are facing database connection problem then check the TNS entry in tnsnames.ora file is correcty given or not. The host, port and SID of TNS entry should match with Listener Host, Port and SID.
    Check the Listener status using the command
    lsnrctl status
    Check the TNSping using Command
    tnsping <DB TNS entry name>
    Then check SAP is able to connect the DB using command
    R3trans -d
    if it give the return code 0, then SAP will be able to connect DB.
    Thanks
    Manoj

  • /oracle/ SID Directory is full

    Hi, All
    We are using ECC6 on HPUnix with Oracle. in our quality server /oracle/<sid> directory is full. Any one can explain what are the files i have to delete or i have to increase the volume.
    Please suggest
    Thanks & Regard
    Venkat

    Hi
    Please also check the size of the /oracle/SID/saptrace directory, you can use du:
    orasid> du -k /oracle/SID/saptrace
    The saptrace directory holds the alert log, user and background traces of the database. Sometimes core files are placed there as well. All those files can be deleted (please do not remove the background and usertrace directories), but if you encounter a lot of traces or cores, you should investigate further and try to fix the problems.
    Best regards
    Michael

  • 11G Oracle Install problems

    Ok, not sure what is going...
    I installed Oracle 11g on Linux. Everything was working, I could access the database via Enterprise Manager, then I re-boot and EM no longer works, I figured this has something to do with some script to make it auto start at boot, so I searched the internet and found a script and made sure that it matched my paths and version numbers.
    as a oracle user when I type
    oracle@dragonfly:~$ echo $ORACLE_HOME
    /u01/app/oracle/product/11.1.0/db_1
    but
    oracle@dragonfly:~$ echo $ORACLE_SID
    I get a blank, would like to learn where to do the setting for oracle SID, is it in /etc/profile ? my SID is orcl
    in /etc/oratab I put a Y for this db instance.
    Anyways, when I try to manually start EM, I get these problems:
    root@dragonfly:/u01/app/oracle/product/11.1.0/db_1/bin# ./emctl status dbconsole
    Environment variable ORACLE_SID not defined. Please define it.
    ok, let me define it:
    root@dragonfly:/u01/app/oracle/product/11.1.0/db_1/bin# export ORACLE_SID=orcl
    root@dragonfly:/u01/app/oracle/product/11.1.0/db_1/bin# ./emctl status dbconsole
    Oracle Enterprise Manager 11g Database Control Release 11.1.0.6.0
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    https://dragonfly.kodiaktechnical.net:1158/em/console/aboutApplication
    Oracle Enterprise Manager 11g is not running.
    Logs are generated in directory /u01/app/oracle/product/11.1.0/db_1/dragonfly.kodiaktechnical.net_orcl/sysman/log
    then I type it again:
    ./emctl start dbconsole
    and I see this...
    root@dragonfly:/u01/app/oracle/product/11.1.0/db_1/bin# ./emctl start dbconsoleOracle Enterprise Manager 11g Database Control Release 11.1.0.6.0
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    https://dragonfly.kodiaktechnical.net:1158/em/console/aboutApplication
    Starting Oracle Enterprise Manager 11g Database Control ............................................................................................. failed.
    Logs are generated in directory /u01/app/oracle/product/11.1.0/db_1/dragonfly.kodiaktechnical.net_orcl/sysman/log
    there is a dot . . . . added every few seconds, but eventually it errors out
    I am on Linux dragonfly 2.6.28-14-server

    when I do:
    netstat -lt | grep 1158
    nothing comes back...
    from log:
         at oracle.sysman.emdrep.notification.NotificationMgr.run(NotificationMgr.java:1715)
    2009-08-17 21:50:48,024 [NotificationMgrThread] WARN jdbc.ConnectionCache _getConnection.353 - Got a fatal exeption when getting a connection; Error code = 17002; Cleaning up cache and retrying
    2009-08-17 21:50:48,152 [PAFAQDaemon] WARN jdbc.ConnectionCache _getConnection.352 - Io exception: The Network Adapter could not establish the connection
    java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:146)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:255)
         at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:390)
         at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:519)
         at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:167)
         at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:35)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:816)
         at oracle.jdbc.pool.OracleDataSource.getPhysicalConnection(OracleDataSource.java:325)
         at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:235)
         at oracle.jdbc.pool.OracleConnectionPoolDataSource.getPhysicalConnection(OracleConnectionPoolDataSource.java:157)
         at oracle.jdbc.pool.OracleConnectionPoolDataSource.getPooledConnection(OracleConnectionPoolDataSource.java:94)
         at oracle.jdbc.pool.OracleImplicitConnectionCache.makeCacheConnection(OracleImplicitConnectionCache.java:1702)
         at oracle.jdbc.pool.OracleImplicitConnectionCache.getCacheConnection(OracleImplicitConnectionCache.java:575)
         at oracle.jdbc.pool.OracleImplicitConnectionCache.getConnection(OracleImplicitConnectionCache.java:435)
         at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:432)
         at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:397)
         at oracle.sysman.util.jdbc.ConnectionCache._getConnection(ConnectionCache.java:336)
         at oracle.sysman.util.jdbc.ConnectionCache._getConnection(ConnectionCache.java:322)
         at oracle.sysman.util.jdbc.ConnectionCache.getUnwrappedConnection(ConnectionCache.java:575)
         at oracle.sysman.emSDK.svc.conn.FGAConnectionCache.getFGAConnection(FGAConnectionCache.java:207)
         at oracle.sysman.emSDK.svc.conn.ConnectionService.getSystemConnection(ConnectionService.java:1304)
         at oracle.sysman.pp.paf.impl.PAFDepot.createRepositoryConnectionImpl(PAFDepot.java:377)
         at oracle.sysman.pp.paf.impl.PAFDepot.createRepoConnection(PAFDepot.java:349)
         at oracle.sysman.pp.paf.impl.PAFDepot$AutoPAFContext.getRepositoryConnection(PAFDepot.java:898)
         at oracle.sysman.pp.paf.impl.PAFDepot.getRepoConnection(PAFDepot.java:596)
         at oracle.sysman.pp.paf.dal.PAFDataSource.getConnection(PAFDataSource.java:344)
         at oracle.sysman.pp.paf.dal.PAFDataSource.dequeueRequest(PAFDataSource.java:1105)
         at oracle.sysman.pp.paf.impl.PAFDepot$AQThread.run(PAFDepot.java:796)
    2009-08-17 21:50:48,153 [PAFAQDaemon] WARN jdbc.ConnectionCache _getConnection.353 - Got a fatal exeption when getting a connection; Error code = 17002; Cleaning up cache and retrying                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • BKI0062E: The input file /oracle/SID/sapbackup/.file.lst is not valid.

    Hi all,
       It has the following platform: SAP ECC6 in AIX 6.1 with Oracle Database
    My question is: When I run a online backup from DB13 with util_file I have this error message :
    BKI0062E: The input file /oracle/SID/sapbackup/.file.lst is not valid.
    Knowing when I launch from the standard profile on Disk initSID.sap it works without problem
    When we test manually with oraSID it works but by SIDadm its not work
    Then you can mention or in configuration files BACKINT both users oraSID & SIDadm have rights to use
    Many Thanks
    AT

    > # ls -l /sapmnt/X21/exe/br*
    > -rwxrwxr-x    1 oraX21   dba         5002624 Feb 06 2008  /sapmnt/X21/exe/brarchive
    > -rwsrwxr-x    1 oraX21   dba         5129705 Feb 06 2008  /sapmnt/X21/exe/brbackup
    > -rwsrwxr-x    1 oraX21   dba         6659409 Feb 06 2008  /sapmnt/X21/exe/brconnect
    > -rwxrwxr-x    1 oraX21   dba         5594679 Feb 06 2008  /sapmnt/X21/exe/brrecover
    > -rwxrwxr-x    1 oraX21   dba         2100833 Feb 06 2008  /sapmnt/X21/exe/brrestore
    > -rwxrwxr-x    1 oraX21   dba         6882272 Feb 06 2008  /sapmnt/X21/exe/brspace
    > -rwsrwxr-x    1 oraX21   dba         2729734 Feb 06 2008  /sapmnt/X21/exe/brtools
    As you see - your br*tools are more than two years old, many many errors have been fixed since. I would install the latest tools and try if the error is still there. You can even do that when the system is running.
    Markus

  • Oracle SID 102TNSListener stops frequently

    Hi All,
    Recently we installed Oracle 10.2.0.2.0.
    Now we observe that Oracle<SID>102TNSListener service is stopping frequently.
    We read below application error in event log:
    Faulting application TNSLSNR.EXE, version 0.0.0.0, faulting module oranl10.dll, version 10.2.0.1, fault address 0x000232ba.
    Can anyone tell us how we can resolve this problem.
    Thank you.
    Prashanth.R.G.

    If you have Metalink support read article "TNS LISTENER (10GR2 WIN32) CRASHES DUE TO MEMORY FAULT IN MODULE ORANL10.DLL" document number 5214373 and see if that applies.
    I would suggest upgrading to 10.2.0.3 or higher as the fix is listed in 11.1 and the bug reports lists only one customer as hitting the bug but the report is from Jan. 2007.
    Restarting the listener seems to be the suggested action.
    HTH -- Mark D Powell --

  • Trace file of directory /ORACLE/ SID /SAPTRACE/USERTRACE increase ceaseless

    Dear all,
    Now I face a problem that the Trace file of directory /ORACLE/<SID>/SAPTRACE/USERTRACE increase ceaseless and very quickly, the trace files size was increased to 8G only two days,  so the directory always is full due to this.
    So anybody could tell me this is why  ? and what method could help to decrease the trace log to produce ?
    Thanks & Regards,
    Michael

    >
    mho wrote:
    > There could be various issues causing this. I recommend having a look at [1505012 - Unrequired Oracle trace data in R3trans and tp|https://service.sap.com/sap/support/notes/1505012], for an bug in R3trans and tp.
    >
    > If this does not match, then please tell us what's inside the files.
    >
    > Cheers Michael
    Thanks for your reply, I saw the notes and use Transaction SM50 to check the trace level, the level is default ,
    this system is our solution manager, although the directory is full but the system still could be connected.
    The trace files contents as below:
    u201C*** 2011-04-25 12:22:41.995
    ksedmp: internal or fatal error
    ORA-00600: internal error code, arguments: [qertbFetchByRowID], [], [], [], [], [], [], []
    Current SQL statement for this session:
    SELECT * FROM "TBTCO" WHERE "JOBNAME" = :A0 AND "JOBCOUNT" = :A1
    Call Stack Trace -
    calling              call     entry                argument values in hex     
    location             type     point                (? means dubious value)    
    _ksedst38           CALLrel  _ksedst10           0 1
    _ksedmp898          CALLrel  _ksedst0            0
    _ksfdmp14           CALLrel  _ksedmp0            3
    _kgerinv+140         CALLreg  00000000             32560400 3
    _kgeasnmierr19      CALLrel  _kgerinv0           32560400 9548210 38FFDE0 0
                                                       ECDD670
    __VInfreq__qertbFet  CALLrel  _kgeasnmierr+0       32560400 9548210 38FFDE0 0
    chByRowID+2583                                    
    _opifch2+3115        CALL???  00000000             2AFAEC3C 1E9B2F4 ECDD9D8 2
    _opiefn0348         CALLrel  _opifch20           89 4 ECDDB7C
    _opiefn21           CALLrel  _opiefn00           4E 4 ECDF698 0 0 0 0 0 0 0
    _opiodr+1099         CALLreg  00000000             4E 4 ECDF698
    _ttcpip+1273         CALLreg  00000000             4E 4 ECDF698 C
    _opitsk+1017         CALL???  00000000            
    _opiino1087         CALLrel  _opitsk0            0 0
    _opiodr+1099         CALLreg  00000000             3C 4 ECDFC30
    _opidrv819          CALLrel  _opiodr0            3C 4 ECDFC30 0
    _sou2o45            CALLrel  _opidrv0            3C 4 ECDFC30
    opimaireal112     CALLrel  _sou2o0             ECDFC24 3C 4 ECDFC30
    _opimai92           CALLrel  opimaireal0       2 ECDFC5C
    _OracleThreadStart@  CALLrel  _opimai+0           
    4+708                                             
    77E66060             CALLreg  00000000            
    Binary Stack Dump -
    ========== FRAME [1] (_ksedst38 -> _ksedst10) ==========
    Dump of memory from 0x0ECDD544 to 0x0ECDD554
    ECDD540          0ECDD554 0040467B 00000000      [T...{F@.....]
    ECDD550 00000001                             [....]           
    ========== FRAME [2] (_ksedmp898 -> _ksedst0) ==========
    Dump of memory from 0x0ECDD554 to 0x0ECDD614
    Could you help to check this issue ?
    Thanks

  • Installatiion error message :Oracle SID already exists. Specify another SID

    Hi all,
    I had Oracle 9idatabase installed on my system.I had to reinstall the Windows 2000 operating system on my computer. I used the Oracle 9i cd to deinstall evrything ,but when i try reinstalling it, i specify 'Oracle 9i' as SID and i get the message 'Oracle SID already exists. Specify another SID'.
    What do i do? Can anyone guide me?
    Thanks in advance,

    Yes, probably You're trying to reinstall the same database / sample database.
    This should be the message that You receive when Oradim utility try to create a NEW sid as a service.
    To remove the old one, look at the services list. You should find a service called OracleService<NAME>. The <NAME> part of the service is Your SID.
    Then, from command prompt, positioned in $ORACLE_HOME/bin directory, if not in the path, issue the follwing command:
    oradim - DELETE -SID <NAME>
    This should remove the service. If I'm right, in some versions of W2K server, I've found that it was impossible to recreate the SID with the same name without a reboot of the server.
    May be this is Your problem
    Hope this helps
    Max

  • After brrestore: Couldn't open verify PSE file /oracle/ sid /LASVerify.pse

    After a brrestore on same server and <SID> each time that we run cleanup logs from DB13  we see:
    BR0801I BRCONNECT 7.00 (32)
    BR1301W Error message from likeywlib: likey_init: Couldn't open verify PSE file ("/oracle/<sid>/LASVerify.pse") for writing, errno = 13 (Permission denied).
    BR1302W Initialization of license key library likeywlib failed, return code 1
    BR1304W Checking SAP license failed at location BrLicCheck-104
    BR0602W No valid SAP license found - please contact SAP
    BR0805I Start of BRCONNECT processing: cdzkodpr.cln 2008-12-06 22.46.27
    BR0484I BRCONNECT log file: /oracle/<sid>/sapcheck/cdzkodpr.cln
    It is on a Linux SuSE X64 - Oracle 10.2.0.4 box
    Regards.
    Ganimede Dignan.

    > After a brrestore on same server and <SID> each time that we run cleanup logs from DB13  we see:
    >
    > BR0801I BRCONNECT 7.00 (32)
    > BR1301W Error message from likeywlib: likey_init: Couldn't open verify PSE file ("/oracle/<sid>/LASVerify.pse") for writing, errno = 13 (Permission denied).
    you <SID>adm user has no permissions to write this file.
    Markus

  • 3 Instnaces with same Oracle SID, How I do?

    Plase look and your concern about follow scenario:
    Server A is production, oracle sid = uno
    Server B will be a stand by database from Server A, oracle sid = ??? "uno"
    Server B will be QA database from Server A, oracle sid = ?? (uno)
    - Product 8.1.7 on unix backup box
    - I want to have one standby database with one unix user ora8i1 and sid="db1".
    - I want to have a QA instance in same box with other unix user ora8i2 and sid="db2".
    - Can I have it these?
    - What about the listener, Do I need configurate it manually?
    My Idea is:
    1. Produccion rdbms sid='db1'
    2. Backup server with stand by database sid=???
    3. To have a QA instance from db1 on the backup server where the analyst can test their programs, before Produccion, sid=????.
    4. Point 2 and 3 with Ora8i 8.1.7.1 on same unix hp box.
    In the other words, I want to have on same hp unix box two instances from main production instance 'db1'. One instance have a stand by database and other instance have a QA test database, both instances have a dentical copy from 'db1' inicially.
    What you suggest me?
    Thanks

    Plase look and your concern about follow scenario:
    Server A is production, oracle sid = uno
    Server B will be a stand by database from Server A, oracle sid = ??? "uno"
    Server B will be QA database from Server A, oracle sid = ?? (uno)
    - Product 8.1.7 on unix backup box
    - I want to have one standby database with one unix user ora8i1 and sid="db1".
    - I want to have a QA instance in same box with other unix user ora8i2 and sid="db2".
    - Can I have it these?
    - What about the listener, Do I need configurate it manually?
    My Idea is:
    1. Produccion rdbms sid='db1'
    2. Backup server with stand by database sid=???
    3. To have a QA instance from db1 on the backup server where the analyst can test their programs, before Produccion, sid=????.
    4. Point 2 and 3 with Ora8i 8.1.7.1 on same unix hp box.
    In the other words, I want to have on same hp unix box two instances from main production instance 'db1'. One instance have a stand by database and other instance have a QA test database, both instances have a dentical copy from 'db1' inicially.
    What you suggest me?
    Thanks

  • Oracle reports problem in distribution with xml file

    Hi ,
    I am having problem while I am trying to distribute the file with specifing the destination details in the xml. If I am giving the destination details in url then it is working.
    Ex.
    This is Working
    http://bryxh91:8889/reports/rwservlet?report=devlopersuit/reports/test.jsp&userid=anju/[email protected]&desformat=pdf&destype=file&desname=devlopersuit/reports/output_file.pdf
    Not working :
    http://bryxh91:8889/reports/rwservlet?report=devlopersuit/reports/test.jsp&userid=anju/[email protected]&DISTRIBUTE=YES&destination=devlopersuit/reports/dis_test.xml
    xml file
    <destinations>
    <file id="test" name="output_file.pdf" format="pdf">
    <include scr="mainSection"/>
    </file>
    </destinations>
    Error : REP-34304: Distribution failed to complete; review the distribution lists
    Its been week I tried many things , but not working.
    Right now I am trying to distribute to single file but my goal is to burst and distribute on basis of account number.
    This is the first stage of the project.
    Thanks a lot for the help
    Anju

    Hello
    see answer in Oracle reports problem in distribution with xml file
    Regards

  • Get Oracle SID in PL/SQL with out a query

    Hi,
    Is there any way where I can get ORACLE SID value in the PL/SQL layer with out actually querying v$database tables.
    I am looking for key word in PL/SQL which stores currect SID name, just like how keyword 'user' stores the current user who has logged in.
    Thanks
    Sree

    Hi,
    Is there any way where I can get ORACLE SID valuein
    the PL/SQL layer with out actually querying
    v$database tables.
    I am looking for key word in PL/SQL which stores
    currect SID name, just like how keyword 'user'stores
    the current user who has logged in.Subtle correction ...
    [url=http://download-east.oracle.com/docs/cd/B19306_01
    /appdev.102/b14261/subprograms.htm#sthref1776]'user'
    is a built-in function provided by Oracle. Why don't you create your own function to perform the
    Select?
    I know I can create a function but, I dont want to read the table everytime it is called. Knowing that Database sid is going to be constant for next couple of years.
    The procedure in which I am going to use database sid is called for almost every transaction in the database. I am trying to avoid IO operation for a constant value. I cant declare a global constant as it is going to be different for each environment Dev, QA, Production etc..and we are looking to deploy same code for all the environments. We are anticipating to have multiple databases for production too.

  • DRDA is installed just on the Oracle side?

    After reading this I still dont get it...
    http://download-east.oracle.com/docs/cd/B19306_01/gateways.102/b16217/intro.htm#i3621
    This documentation does not get to the point at all. It is not written at a level for people who have never installed a Transparent Gateway...
    So, If I install the DRDA type Transparent Gateway I'm hoping I only have to put software on the Oracle side - my side? Not the DB2 side? I saw via someone else's post where during DRDA setup a package is created on DB2 side by issuing commands on the Oracle side?
    If this is true, which I hope it is, why and what benefit is obtained by installing the other type of gateway Transparent Gateway for DB2 (TD4DB2) which requires installation of software on both sides - I think?
    I would like to only have to install software on the Oracle side since the DB2 machine is not owned by us and all we will have is a user account on the DB2 side.
    Give me few quick pointers please.. Thanks...

    The DRDA Gateway software is only installed on the the Oracle server machine (or a 3rd machine).
    There are several notes on Metalink "How to setup TG4DRDA" which explain in detail WHAT steps are required to configure the gateway.
    Regarding the Bind package: at the Db2 database the 2PC table must be created and then use SQL*Plus to bind a package at the Db2 side.
    This is mandatory for the DRDA gateway, but I want to make it clear again: NO software is installed on the DB2 machine.
    So the difference between the TG4DB2/400 and TG4DRDA is the location of the software.
    TG4DRDA is installed on Unix or Windows platforms, commonly in the Oracle database home whereas TG4DB2/400 is installed on the AS400 machine.

Maybe you are looking for

  • How Do I Repeat A Formula Over and Over?

    New to Numbers. Have a document with 90 rows. I have had to enter in the same formula over and over on every other row, except that I have to change the row #. i.e. The formula I use is: =SUM(C2:H2). Then the next line is: =SUM(C4:H4) I am up to row

  • Macbook pro charger wont work AT ALL!

    Words cannot even explain how furious I am. My 9 month old MacBook Pro charger does not work, all of a sudden! There is no damage to the charger at all and my laptop is in great condition. I need a solution and fast because this laptop has my whole l

  • How to display complete menu tree for a particular SAP user in UI5

    Hi Experts, I am trying to display menu tree for a particular SAP user on click of button placed in shell content. I am referring this link Displaying the Complete Menu Tree - User Interface Add-On for SAP NetWeaver - SAP Library But I am not getting

  • Delete zombi BI Master system

    Hi, Has anybody an idea on how to delete a zombi BI Master system? Appearantly there is still a reference to this zombi system in our portal and we are getting errors when starting the Web BEx Analyzer. Kind Regards, Johnny

  • Logon failed. Unable To Export Report.

    Hi, I am running visual studio 2010 ultimate edition with crystal reports for visual studio v 13.0.1. I get the following exception when trying to export to PDF where my report has a sub report. Logon failed. Failed to export the report. Error in Fil