Oracle libraries in 10.2.0 and RAC 10.2.0

hi
are the libraries different between oracle 10.2.0 and RAC 10.2.0. we are upgarding to RAC and i am trying to findout if i have to recompile my c++ binaries using RAC 10.2.0

yes we have a standalone version of 10g being converted to RAC mode..
old version
Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bit Production
With the Partitioning, OLAP and Data Mining options
converted to
Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bit Production
With the Partitioning, Real Application Clusters, OLAP and Data Mining options
i understand the binaries would be different, but are the libraries different too?

Similar Messages

  • Grid And RAC in oracle 10g

    Hi Experts,
    I'm new to Grid And RAC implementation.
    Is there any good links which I can learn the basics and implementation methods of Grid.???

    Grid computing is a concept. Wikipedia has a fairly decent description at http://en.wikipedia.org/wiki/Grid_computing and there is even an infocenter on the concept at http://www.gridcomputing.com/
    Oracle leans toward the 'Utility Computing' idea in that wiki. This is especially true in the Oracle Application Server (subject for a different forum). In that mode of Grid, you add or drop out instances of programs as demanded by the load, just like you would add or drop electrical generators on the power grid.
    Taking generators off line permits maintenance, reduces wear and tear when the beasts are idle, and allows the minimum number of fully-loaded generators (and therefore minimum support personnel, support expenses) to be used as compared to lots of partially used ones - why not do that with computers as well?
    In the database world, Oracle provides RAC as a coordinated cluster of database instances. The cluster may be grown or shrunk, not without some care, in a fashion similar to the power generators.
    And just as with the electrical generators, people have to design the new instance, manage how and when it is added to or taken off the cluster, even figure out how to balance the load across the various units. Once designed, and put in place, it is relatively easy to add or remove an instance from the RAC, and (if done correctly) there is a minimum disruption to running applications.
    Be aware that the analogy is less-than-perfect.
    I recommend getting the Apress book Pro Oracle Database 10g RAC on Linux: Installation, Administration, and Performance as the basic manual for understanding and learning RAC. Read that and then use the demos and examples from Howard's site at http://www.dizwell.com and Jeff's setups at http://www.oracle.com/technology/pub/articles/tech_dba.html#linux And finally, go through the RAC material at http://www.oracle.com/technology/tech/grid/index.html

  • Load balancing in Tuxedo 9.1 and RAC

    Hello to all,
    I have some doubts on the way of balancing load in tuxedo 9.1 and RAC (Oracle 10gR2).
    Before, without RAC our configuration was the following one:
    GRP_A: service A001, service A002
    GRP_B: service B001, service B002
    Both groups were attacking the same BBDD, Now with the configuration in RAC we have the following thing:
    We have two intances RAC: ORARAC1 and ORARAC2
    TUXRACGROUPS=GRP_A1, GRP_B1; GRP_A2, GRP_B2
    The groups GRP_A1 = GRP_A2 and GRP_B1 = GRP_B2, but the groups GRP_A1 and GRP_B1 use the instance ORARAC1 and GRP_A2 and GRP_B2 use the instance ORARAC. Summarizing:
    GRP_A1: service A001, service A002 (ORARAC1)
    GRP_B1: service B001, service B002 (ORARAC1)
    GRP_A2: service A001, service A002 (ORARAC2)
    GRP_B2: service B001, service B002 (ORARAC2)
    Have formed the variable TUXRACGROUPS=GRP_A1, GRP_B1; GRP_A2, GRP_B2
    How is Tuxedo balancing the traffic?
    1) Does not balance load between RACGROUPS?
    2) Does it use RAC.. as favourite?
    3) Does the RACGROUPS balance when it's overlaeded or always?
    3) Does the same algorithm uses that LDBAL?, if this is affirmative, is it necessary to have formed in the ubb LDABL=Y?
    4) Tuxedo uses an algorithm of round-robin?
    5) others
    I have looked for information but I have not found any information that could help to understanding it.
    Thanks in advance
    P.D.: Excuse my english :(

    There is Oracle RAC routing information available at
    http://e-docs.bea.com/tuxedo/tux91/ads/adorac.htm#248431
    If you are not running in a transaction, then the TUXRACGROUPS environment
    variable will not be relevant and routing will be handled as it would be if
    this environment variable were not set.
    Assuming that GRP_A1 and GRP_A2 are the only groups that offer services A001
    and A002 and GRP_B1 and GRP_B2 are the only groups that offer services B001
    and B002, routing of service requests made within a transaction will be
    handled as follows:
    - Any call to A001 or A002 made within a transaction with an even GTRID
    counter value will be handled by GRP_A1. (The GTRID counter value is the
    last of the 3 hexadecimal numbers printed in the ULOG for messages printed
    within that transaction.)
    - Any call to A001 or A002 made within a transaction with an odd GTRID
    counter value will be handled by GRP_A2.
    - Any call to B001 or B002 made within a transaction with an even GTRID
    counter value will be handled by GRP_B1.
    -Any call to B001 or B002 made within a transaction with an odd GTRID
    counter value will be handled by GRP_B2.
    Ed
    <Briz Briz> wrote in message news:[email protected]...
    Hello to all,
    I have some doubts on the way of balancing load in tuxedo 9.1 and RAC
    (Oracle 10gR2).
    Before, without RAC our configuration was the following one:
    GRP_A: service A001, service A002
    GRP_B: service B001, service B002
    Both groups were attacking the same BBDD, Now with the configuration in
    RAC we have the following thing:
    We have two intances RAC: ORARAC1 and ORARAC2
    TUXRACGROUPS=GRP_A1, GRP_B1; GRP_A2, GRP_B2
    The groups GRP_A1 = GRP_A2 and GRP_B1 = GRP_B2, but the groups GRP_A1 and
    GRP_B1 use the instance ORARAC1 and GRP_A2 and GRP_B2 use the instance
    ORARAC. Summarizing:
    GRP_A1: service A001, service A002 (ORARAC1)
    GRP_B1: service B001, service B002 (ORARAC1)
    GRP_A2: service A001, service A002 (ORARAC2)
    GRP_B2: service B001, service B002 (ORARAC2)
    Have formed the variable TUXRACGROUPS=GRP_A1, GRP_B1; GRP_A2, GRP_B2
    How is Tuxedo balancing the traffic?
    1) Does not balance load between RACGROUPS?
    2) Does it use RAC.. as favourite?
    3) Does the RACGROUPS balance when it's overlaeded or always?
    3) Does the same algorithm uses that LDBAL?, if this is affirmative, is it
    necessary to have formed in the ubb LDABL=Y?
    4) Tuxedo uses an algorithm of round-robin?
    5) others
    I have looked for information but I have not found any information that
    could help to understanding it.
    Thanks in advance
    P.D.: Excuse my english :(

  • RAC database cannot be connected after Grid and RAC DB have been installed

    Folks,
    Hello. I am installing Oracle 11gR2 RAC using 2 VMs (main VM rac1 and slave VM rac2) with Oracle Linux 5.6
    according to the website http://appsdbaworkshop.blogspot.com/2011/10/11gr2-rac-on-linux-56-using-vmware.html
    Grid and RAC database have been installed successfully for both VMs rac1 and rac2. I am using the slave VM rac2 to test Grid and RAC database.
    I have run the commands as below:
    [ora11g@rac2 bin]$ pwd
    /u01/app/grid/bin
    [ora11g@rac2 bin]$ ./crsctl status resource
    CRS-4535: Cannot communicate with Cluster Ready Services
    CRS-4000: Command Status failed, or completed with errors.
    [ora11g@rac2 bin]$ ./srvctl config database -d racdb
    PRCD-1027 : Failed to retrieve database racdb
    PRCR-1070 : Failed to check if resource ora.racdb.db is registered
    Cannot communicate with crsd
    [ora11g@rac2 bin]$ ./sqlplus SYS/SYS
    SQL*Plus: Release 11.2.0.1.0 Production on Sat Mar 10 14:07:07 2012
    Copyright (c) 1982, 2009, Oracle. All rights reserved.
    ERROR:
    ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    Linux-x86_64 Error: 2: No such file or directory
    Process ID: 0
    Session ID: 0 Serial number: 0
    Enter user-name: SYS
    Enter password:
    ERROR:
    ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    Linux-x86_64 Error: 2: No such file or directory
    Process ID: 0
    Session ID: 0 Serial number: 0
    Enter user-name: SYSTEM
    Enter password:
    ERROR:
    ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    Linux-x86_64 Error: 2: No such file or directory
    Process ID: 0
    Session ID: 0 Serial number: 0
    SP2-0157: unable to CONNECT to ORACLE after 3 attempts, exiting SQL*Plus
    [ora11g@rac2 /]$ /u02/11g_db/ora11g/racdb/sqldeveloper/sqldeveloper.sh
    In its GUI, the inputs are below:
    Connection: C1
    Username: SYS
    PWD: SYS
    Role: SYSDBA
    Connection Type: Basic
    Hostname: rac2.localdomain
    Port: 1521
    SID: racdb2
    Test: failed. Network Adapter could not establish connection.
    Browser url: https://rac2.localdomain:1158/em
    Its output: cannot connect to the server at https://rac2.localdomain:1158/em
    As we see the outputs for commands above, Grid is running at the beginning but now is not running. SQLPLUS and SQLdeveloper cannot connect with database. Browser url cannot connect to the console https://rac2.localdomain:1158/em.
    My question is:
    Do any folks understand how to solve the above 4 problems ?
    Thanks.

    Folks,
    Hello. Thanks a lot for replying. The last 50 lines of the file "ocssd.log" is as below:
    [ora11g@rac1 cssd]$ pwd
    /u01/app/grid/log/rac1/cssd
    [ora11g@rac1 cssd]$ ls
    cssdOUT.log ocssd.log ocssd.trc
    [ora11g@rac1 cssd]$ cat ocssd.log
    2012-03-08 21:13:54.415: [    CLSF][1150617920]Destroying CLSF context
    2012-03-08 21:13:55.418: [    CLSF][1150617920]Allocated CLSF context
    2012-03-08 21:13:55.418: [   SKGFD][1150617920]Handle 0x7105660 from lib :ASM:/opt/oracle/extapi/64/asm/orcl/1/libasm.so: for disk :ORCL:ASMDISK1:
    2012-03-08 21:13:55.418: [    CLSF][1150617920]Opened hdl:0x710d800 for dev:ORCL:ASMDISK1:
    2012-03-08 21:13:55.470: [    CLSF][1150617920]Closing handle:0x710d800
    2012-03-08 21:13:55.470: [   SKGFD][1150617920]Lib :ASM:/opt/oracle/extapi/64/asm/orcl/1/libasm.so: closing handle 0x7105660 for disk :ORCL:ASMDISK1:
    2012-03-08 21:13:55.470: [    CLSF][1150617920]Destroying CLSF context
    2012-03-08 21:13:56.472: [    CSSD][1685425920]clssnmlfmtlease: uniqueness 1331259161, gipc addr nm_rac-scan#192.168.137.35#36456
    2012-03-08 21:13:56.608: [    CSSD][1685425920]clssnmvStatusBlkInit: myinfo nodename rac1, uniqueness 0
    2012-03-08 21:13:56.697: [    CSSD][1685425920]clssnmvStatusBlkInit: myinfo nodename rac1, uniqueness 0
    2012-03-08 21:13:56.754: [    CSSD][1685425920]clssnmvStatusBlkInit: myinfo nodename rac1, uniqueness 0
    2012-03-08 21:13:57.425: [    CSSD][1685425920]clssnmlgetslot:lease acquisition for node rac1/slot 1 completed in 19380 msecs
    2012-03-08 21:13:57.559: [    CSSD][1685425920]clssnmvDHBValidateNCopy: node 1, , has a disk HB, but no network HB, DHB has rcfg 226426240, wrtcnt, 89443, LATS 4294905400, lastSeqNo 89443, uniqueness 0, timestamp 1331258081/38436564
    2012-03-08 21:13:57.559: [    CSSD][1685425920]clssnmvDHBValidateNCopy: node 2, , has a disk HB, but no network HB, DHB has rcfg 226426240, wrtcnt, 80216, LATS 4294905400, lastSeqNo 80216, uniqueness 1331259094, timestamp 1331259236/4294905820
    2012-03-08 21:13:57.860: [    CSSD][1685425920]clssnmvDHBValidateNCopy: node 1, rac1, has a disk HB, but no network HB, DHB has rcfg 226426240, wrtcnt, 89444, LATS 4294905700, lastSeqNo 89444, uniqueness 0, timestamp 1331258081/38436564
    2012-03-08 21:13:57.860: [    CSSD][1685425920]clssnmvDHBValidateNCopy: node 2, rac2, has a disk HB, but no network HB, DHB has rcfg 226426240, wrtcnt, 80217, LATS 4294905700, lastSeqNo 80217, uniqueness 1331259094, timestamp 1331259237/4294906920
    2012-03-08 21:13:58.049: [    CSSD][1685425920]clssnmvDHBValidate2012-03-10 12:07:08.298: [    CSSD][471957248]clssscmain: Starting CSS daemon, version 11.2.0.1.0, in (clustered) mode with uniqueness value 1331399227
    2012-03-10 12:07:08.300: [    CSSD][471957248]clssscmain: Environment is production
    2012-03-10 12:07:08.300: [    CSSD][471957248]clssscmain: Core file size limit extended
    2012-03-10 12:07:08.518: [    CSSD][471957248]clssscGetParameterOLR: OLR fetch for parameter logsize (8) failed with rc 21
    2012-03-10 12:07:08.518: [    CSSD][471957248]clssscSetPrivEnv: IPMI device not installed on this node
    2012-03-10 12:07:08.519: [    CSSD][471957248]clssscGetParameterOLR: OLR fetch for parameter priority (15) failed with rc 21
    2012-03-10 12:07:09.675: [    CSSD][471957248]clssscExtendLimits: The current soft limit for file descriptors is 65536, hard limit is 65536
    2012-03-10 12:07:09.675: [    CSSD][471957248]clssscExtendLimits: The current soft limit for locked memory is 4294967295, hard limit is 4294967295
    2012-03-10 12:07:09.675: [    CSSD][471957248]clssscmain: Running as user ora11g
    [  clsdmt][1088276800]Listening to (ADDRESS=(PROTOCOL=ipc)(KEY=rac1DBG_CSSD))
    2012-03-10 12:07:09.821: [  clsdmt][1088276800]PID for the Process [5971], connkey 4
    2012-03-10 12:07:09.822: [    CSSD][471957248]clssscGetParameterOLR: OLR fetch for parameter auth rep (9) failed with rc 21
    2012-03-10 12:07:09.823: [    CSSD][471957248]clssscGetParameterOLR: OLR fetch for parameter diagwait (14) failed with rc 21
    2012-03-10 12:07:09.847: [    CSSD][471957248]clssscmain: initgminfo done
    2012-03-10 12:07:09.971: [    CSSD][1098766656]clssgmclientlsnr: Spawned
    2012-03-10 12:07:09.971: [    CSSD][1098766656]clssgmEvtInformation: reqtype (13) cmProc ((nil)) client ((nil))
    2012-03-10 12:07:09.971: [    CSSD][1098766656]clssgmEvtInformation: reqtype (13) req (0xadd7b20)
    2012-03-10 12:07:09.971: [    CSSD][1098766656]clssnmQueueNotification: type (13) 0xadd7b20
    2012-03-10 12:07:09.973: [    CSSD][1098766656]clssscGetParameterOLR: OLR fetch for parameter GIPC client trclvl (13) failed with rc 21
    2012-03-10 12:07:09.975: [    CSSD][1098766656]clssgmclientlsnr: listening on clsc://(ADDRESS=(PROTOCOL=ipc)(KEY=OCSSD_LL_rac1_)(GIPCID=903cec19-00000000-5971))
    2012-03-10 12:07:09.975: [    GPnP][471957248]clsgpnp_Init: [at clsgpnp0.c:404] gpnp tracelevel 3, component tracelevel 0
    2012-03-10 12:07:09.975: [    GPnP][471957248]clsgpnp_Init: [at clsgpnp0.c:534] '/u01/app/grid' in effect as GPnP home base.
    2012-03-10 12:07:10.044: [GIPCCLSA][1098766656]gipcmodClsaCompleteAccept: failed on clsaauthstart ret clsaretOSD (8), endp 0xade1aa0 [000000000000002f] { gipcEndpoint : localAddr 'clsc://(ADDRESS=(PROTOCOL=ipc)(KEY=OCSSD_LL_rac1_)(GIPCID=e1fdf67e-e0b9ca68-5971))', remoteAddr 'clsc://(ADDRESS=(PROTOCOL=ipc)(KEY=OCSSD_LL_rac1_)(GIPCID=e0b9ca68-e1fdf67e-5976))', numPend 5, numReady 0, numDone 0, numDead 0, numTransfer 0, objFlags 0x1758, pidPeer 0, flags 0x603710, usrFlags 0x14000 }
    2012-03-10 12:07:10.044: [GIPCCLSA][1098766656]gipcmodClsaCompleteAccept: slos op : mkdir
    2012-03-10 12:07:10.044: [GIPCCLSA][1098766656]gipcmodClsaCompleteAccept: slos dep : No space left on device (28)
    2012-03-10 12:07:10.044: [GIPCCLSA][1098766656]gipcmodClsaCompleteAccept: slos loc : authprep6
    2012-03-10 12:07:10.044: [GIPCCLSA][1098766656]gipcmodClsaCompleteAccept: slos info: failed to make dir /u01/app/grid/auth/css/rac1/A2370613
    2012-03-10 12:07:10.045: [GIPCXCPT][1098766656]gipcmodMuxTransferAccept: internal accept request failed endp 0xade0740 [000000000000001b] { gipcEndpoint : localAddr 'clsc://(ADDRESS=(PROTOCOL=ipc)(KEY=OCSSD_LL_rac1_)(GIPCID=903cec19-00000000-5971))', remoteAddr '', numPend 0, numReady 0, numDone 0, numDead 0, numTransfer 0, objFlags 0x0, pidPeer 0, flags 0x30613, usrFlags 0x10010 }, ret gipcretAuthFail (22)
    2012-03-10 12:07:10.045: [ GIPCMUX][1098766656]gipcmodMuxTransferAccept: EXCEPTION[ ret gipcretAuthFail (22) ] error during accept on endp 0xade0740 [000000000000001b] { gipcEndpoint : localAddr 'clsc://(ADDRESS=(PROTOCOL=ipc)(KEY=OCSSD_LL_rac1_)(GIPCID=903cec19-00000000-5971))', remoteAddr '', numPend 02012-03-10 12:21:34.610: [    CSSD][4216872704]clssscmain: Starting CSS daemon, version 11.2.0.1.0, in (clustered) mode with uniqueness value 1331400094
    2012-03-10 12:21:34.612: [    CSSD][4216872704]clssscmain: Environment is production
    2012-03-10 12:21:34.612: [    CSSD][4216872704]clssscmain: Core file size limit extended
    2012-03-10 12:21:34.675: [    CSSD][4216872704]clssscGetParameterOLR: OLR fetch for parameter logsize (8) failed with rc 21
    2012-03-10 12:21:34.675: [    CSSD][4216872704]clssscSetPrivEnv: IPMI device not installed on this node
    2012-03-10 12:21:34.676: [    CSSD][4216872704]clssscGetParameterOLR: OLR fetch for parameter priority (15) failed with rc 21
    2012-03-10 12:21:34.770: [    CSSD][4216872704]clssscExtendLimits: The current soft limit for file descriptors is 65536, hard limit is 65536
    2012-03-10 12:21:34.770: [    CSSD][4216872704]clssscExtendLimits: The current soft limit for locked memory is 4294967295, hard limit is 4294967295
    2012-03-10 12:21:34.771: [    CSSD][4216872704]clssscmain: Running as user ora11g
    [  clsdmt][1123064128]Listening to (ADDRESS=(PROTOCOL=ipc)(KEY=rac1DBG_CSSD))
    2012-03-10 12:21:37.926: [  clsdmt][1123064128]PID for the Process [6687], connkey 4
    2012-03-10 12:21:38.276: [    CSSD][4216872704]clssscGetParameterOLR: OLR fetch for parameter auth rep (9) failed with rc 21
    2012-03-10 12:21:38.276: [    CSSD][4216872704]clssscGetParameterOLR: OLR fetch for parameter diagwait (14) failed with rc 21
    2012-03-10 12:21:39.171: [    CSSD][4216872704]clssscmain: initgminfo done
    2012-03-10 12:21:42.815: [    CSSD][1144043840]clssgmclientlsnr: Spawned
    2012-03-10 12:21:42.815: [    CSSD][1144043840]clssgmEvtInformation: reqtype (13) cmProc ((nil)) client ((nil))
    2012-03-10 12:21:42.815: [    CSSD][1144043840]clssgmEvtInformation: reqtype (13) req (0x1a5a7160)
    2012-03-10 12:21:42.815: [    CSSD][1144043840]clssnmQueueNotification: type (13) 0x1a5a7160
    2012-03-10 12:21:42.822: [    CSSD][1144043840]clssscGetParameterOLR: OLR fetch for parameter GIPC client trclvl (13) failed with rc 21
    2012-03-10 12:21:42.872: [    CSSD][1144043840]clssgmclientlsnr: listening on clsc://(ADDRESS=(PROTOCOL=ipc)(KEY=OCSSD_LL_rac1_)(GIPCID=45c3536d-00000000-6687))
    2012-03-10 12:21:42.873: [    GPnP][4216872704]clsgpnp_Init: [at clsgpnp0.c:404] gpnp tracelevel 3, component tracelevel 0
    2012-03-10 12:21:42.873: [    GPnP][4216872704]clsgpnp_Init: [at clsgpnp0.c:534] '/u01/app/grid' in effect as GPnP home base.
    2012-03-10 12:21:43.190: [GIPCCLSA][1144043840]gipcmodClsaCompleteAccept: failed on clsaauthstart ret clsaretOSD (8), endp 0x1a5b10e0 [000000000000002f] { gipcEndpoint : localAddr 'clsc://(ADDRESS=(PROTOCOL=ipc)(KEY=OCSSD_LL_rac1_)(GIPCID=c53aa194-7b930898-6687))', remoteAddr 'clsc://(ADDRESS=(PROTOCOL=ipc)(KEY=OCSSD_LL_rac1_)(GIPCID=7b930898-c53aa194-5928))', numPend 5, numReady 0, numDone 0, numDead 0, numTransfer 0, objFlags 0x1728, pidPeer 0, flags 0x603710, usrFlags 0x14000 }
    2012-03-10 12:21:43.190: [GIPCCLSA][1144043840]gipcmodClsaCompleteAccept: slos op : mkdir
    2012-03-10 12:21:43.190: [GIPCCLSA][1144043840]gipcmodClsaCompleteAccept: slos dep : No space left on device (28)
    2012-03-10 12:21:43.190: [GIPCCLSA][1144043840]gipcmodClsaCompleteAccept: slos loc : authprep6
    2012-03-10 12:21:43.190: [GIPCCLSA][1144043840]gipcmodClsaCompleteAccept: slos info: failed to make dir /u01/app/grid/auth/css/rac1/A3702366
    2012-03-10 12:21:43.201: [GIPCXCPT][1144043840]gipcmodMuxTransferAccept: internal accept request failed endp 0x1a5afd80 [000000000000001b] { gipcEndpoint : localAddr 'clsc://(ADDRESS=(PROTOCOL=ipc)(KEY=OCSSD_LL_rac1_)(GIPCID=45c3536d-00000000-6687))', remoteAddr '', numPend 0, numReady 0, numDone 0, numDead 0, numTransfer 0, objFlags 0x0, pidPeer 0, flags 0x30613, usrFlags 0x10010 }, ret gipcretAuthFail (22)
    2012-03-10 12:21:43.201: [ GIPCMUX][1144043840]gipcmodMuxTransferAccept: EXCEPTION[ ret gipcretAuthFail (22) ] error during accept on endp 0x1a5afd80 [000000000000001b] { gipcEndpoint : localAddr 'clsc://(ADDRESS=(PROTOCOL=ipc)(KEY=OCSSD_LL_rac1_)(GIPCID=45c3536d-00000000-6687))', remot2012-03-11 11:17:15.417: [    CSSD][1249378048]clssscmain: Starting CSS daemon, version 11.2.0.1.0, in (clustered) mode with uniqueness value 1331479035
    2012-03-11 11:17:15.418: [    CSSD][1249378048]clssscmain: Environment is production
    2012-03-11 11:17:15.418: [    CSSD][1249378048]clssscmain: Core file size limit extended
    2012-03-11 11:17:15.797: [    CSSD][1249378048]clssscGetParameterOLR: OLR fetch for parameter logsize (8) failed with rc 21
    2012-03-11 11:17:15.797: [    CSSD][1249378048]clssscSetPrivEnv: IPMI device not installed on this node
    2012-03-11 11:17:15.798: [    CSSD][1249378048]clssscGetParameterOLR: OLR fetch for parameter priority (15) failed with rc 21
    2012-03-11 11:17:17.472: [    CSSD][1249378048]clssscExtendLimits: The current soft limit for file descriptors is 65536, hard limit is 65536
    2012-03-11 11:17:17.472: [    CSSD][1249378048]clssscExtendLimits: The current soft limit for locked memory is 4294967295, hard limit is 4294967295
    2012-03-11 11:17:17.473: [    CSSD][1249378048]clssscmain: Running as user ora11g
    [  clsdmt][1098090816]Listening to (ADDRESS=(PROTOCOL=ipc)(KEY=rac1DBG_CSSD))
    2012-03-11 11:17:17.517: [  clsdmt][1098090816]PID for the Process [5960], connkey 4
    2012-03-11 11:17:17.573: [    CSSD][1249378048]clssscGetParameterOLR: OLR fetch for parameter auth rep (9) failed with rc 21
    2012-03-11 11:17:17.574: [    CSSD][1249378048]clssscGetParameterOLR: OLR fetch for parameter diagwait (14) failed with rc 21
    2012-03-11 11:17:17.586: [    CSSD][1249378048]clssscmain: initgminfo done
    2012-03-11 11:17:17.617: [    CSSD][1141242176]clssgmclientlsnr: Spawned
    2012-03-11 11:17:17.617: [    CSSD][1141242176]clssgmEvtInformation: reqtype (13) cmProc ((nil)) client ((nil))
    2012-03-11 11:17:17.617: [    CSSD][1141242176]clssgmEvtInformation: reqtype (13) req (0x129d5160)
    2012-03-11 11:17:17.617: [    CSSD][1141242176]clssnmQueueNotification: type (13) 0x129d5160
    2012-03-11 11:17:17.619: [    CSSD][1141242176]clssscGetParameterOLR: OLR fetch for parameter GIPC client trclvl (13) failed with rc 21
    2012-03-11 11:17:17.621: [    CSSD][1141242176]clssgmclientlsnr: listening on clsc://(ADDRESS=(PROTOCOL=ipc)(KEY=OCSSD_LL_rac1_)(GIPCID=38fc0b43-00000000-5960))
    2012-03-11 11:17:17.621: [    GPnP][1249378048]clsgpnp_Init: [at clsgpnp0.c:404] gpnp tracelevel 3, component tracelevel 0
    2012-03-11 11:17:17.621: [    GPnP][1249378048]clsgpnp_Init: [at clsgpnp0.c:534] '/u01/app/grid' in effect as GPnP home base.
    2012-03-11 11:17:18.167: [GIPCCLSA][1141242176]gipcmodClsaCompleteAccept: failed on clsaauthstart ret clsaretOSD (8), endp 0x129df0e0 [000000000000002f] { gipcEndpoint : localAddr 'clsc://(ADDRESS=(PROTOCOL=ipc)(KEY=OCSSD_LL_rac1_)(GIPCID=22574215-7bcb9bab-5960))', remoteAddr 'clsc://(ADDRESS=(PROTOCOL=ipc)(KEY=OCSSD_LL_rac1_)(GIPCID=7bcb9bab-22574215-5919))', numPend 5, numReady 0, numDone 0, numDead 0, numTransfer 0, objFlags 0x171f, pidPeer 0, flags 0x603710, usrFlags 0x14000 }
    2012-03-11 11:17:18.167: [GIPCCLSA][1141242176]gipcmodClsaCompleteAccept: slos op : mkdir
    2012-03-11 11:17:18.167: [GIPCCLSA][1141242176]gipcmodClsaCompleteAccept: slos dep : No space left on device (28)
    2012-03-11 11:17:18.167: [GIPCCLSA][1141242176]gipcmodClsaCompleteAccept: slos loc : authprep6
    2012-03-11 11:17:18.167: [GIPCCLSA][1141242176]gipcmodClsaCompleteAccept: slos info: failed to make dir /u01/app/grid/auth/css/rac1/A2554722
    2012-03-11 11:17:18.168: [GIPCXCPT][1141242176]gipcmodMuxTransferAccept: internal accept request failed endp 0x129ddd80 [000000000000001b] { gipcEndpoint : localAddr 'clsc://(ADDRESS=(PROTOCOL=ipc)(KEY=OCSSD_LL_rac1_)(GIPCID=38fc0b43-00000000-5960))', remoteAddr '', numPend 0, numReady 0, numDone 0, numDead 0, numTransfer 0, objFlags 0x0, pidPeer 0, flags 0x30613, usrFlags 0x10010 }, ret gipcretAuthFail (22)
    2012-03-11 11:17:18.168: [ GIPCMUX][1141242176]gipcmodMuxTransferAccept: EXCEPTION[ ret gipcretAuthFail (22) ] error during accept on endp 0x129ddd80 [000000000000001b] { gipcEndpoint : localAddr 'clsc://(ADDRESS=(PROTOCOL=ipc)(KEY=OCSSD_LL_rac1_)(GIPCID=38fc0b43-00000000-5960))', remot2012-03-11 13:50:45.588: [    CSSD][1847344896]clssscmain: Starting CSS daemon, version 11.2.0.1.0, in (clustered) mode with uniqueness value 1331488245
    2012-03-11 13:50:45.589: [    CSSD][1847344896]clssscmain: Environment is production
    2012-03-11 13:50:45.589: [    CSSD][1847344896]clssscmain: Core file size limit extended
    2012-03-11 13:50:45.812: [    CSSD][1847344896]clssscGetParameterOLR: OLR fetch for parameter logsize (8) failed with rc 21
    2012-03-11 13:50:45.812: [    CSSD][1847344896]clssscSetPrivEnv: IPMI device not installed on this node
    2012-03-11 13:50:45.813: [    CSSD][1847344896]clssscGetParameterOLR: OLR fetch for parameter priority (15) failed with rc 21
    2012-03-11 13:50:46.364: [    CSSD][1847344896]clssscExtendLimits: The current soft limit for file descriptors is 65536, hard limit is 65536
    2012-03-11 13:50:46.364: [    CSSD][1847344896]clssscExtendLimits: The current soft limit for locked memory is 4294967295, hard limit is 4294967295
    2012-03-11 13:50:46.365: [    CSSD][1847344896]clssscmain: Running as user ora11g
    [  clsdmt][1106819392]Listening to (ADDRESS=(PROTOCOL=ipc)(KEY=rac1DBG_CSSD))
    2012-03-11 13:50:46.512: [  clsdmt][1106819392]PID for the Process [5598], connkey 4
    2012-03-11 13:50:46.518: [    CSSD][1847344896]clssscGetParameterOLR: OLR fetch for parameter auth rep (9) failed with rc 21
    2012-03-11 13:50:46.521: [    CSSD][1847344896]clssscGetParameterOLR: OLR fetch for parameter diagwait (14) failed with rc 21
    2012-03-11 13:50:46.548: [    CSSD][1847344896]clssscmain: initgminfo done
    2012-03-11 13:50:46.611: [    CSSD][1090939200]clssgmclientlsnr: Spawned
    2012-03-11 13:50:46.611: [    CSSD][1090939200]clssgmEvtInformation: reqtype (13) cmProc ((nil)) client ((nil))
    2012-03-11 13:50:46.611: [    CSSD][1090939200]clssgmEvtInformation: reqtype (13) req (0x196b6160)
    2012-03-11 13:50:46.611: [    CSSD][1090939200]clssnmQueueNotification: type (13) 0x196b6160
    2012-03-11 13:50:46.618: [    CSSD][1090939200]clssscGetParameterOLR: OLR fetch for parameter GIPC client trclvl (13) failed with rc 21
    2012-03-11 13:50:46.621: [    CSSD][1090939200]clssgmclientlsnr: listening on clsc://(ADDRESS=(PROTOCOL=ipc)(KEY=OCSSD_LL_rac1_)(GIPCID=e5a0c08e-00000000-5598))
    2012-03-11 13:50:46.621: [    GPnP][1847344896]clsgpnp_Init: [at clsgpnp0.c:404] gpnp tracelevel 3, component tracelevel 0
    2012-03-11 13:50:46.622: [    GPnP][1847344896]clsgpnp_Init: [at clsgpnp0.c:534] '/u01/app/grid' in effect as GPnP home base.
    2012-03-11 13:50:47.158: [GIPCCLSA][1090939200]gipcmodClsaCompleteAccept: failed on clsaauthstart ret clsaretOSD (8), endp 0x196c00e0 [000000000000002f] { gipcEndpoint : localAddr 'clsc://(ADDRESS=(PROTOCOL=ipc)(KEY=OCSSD_LL_rac1_)(GIPCID=629302b2-9f0ad2aa-5598))', remoteAddr 'clsc://(ADDRESS=(PROTOCOL=ipc)(KEY=OCSSD_LL_rac1_)(GIPCID=9f0ad2aa-629302b2-5616))', numPend 5, numReady 0, numDone 0, numDead 0, numTransfer 0, objFlags 0x15f0, pidPeer 0, flags 0x603710, usrFlags 0x14000 }
    2012-03-11 13:50:47.158: [GIPCCLSA][1090939200]gipcmodClsaCompleteAccept: slos op : mkdir
    2012-03-11 13:50:47.158: [GIPCCLSA][1090939200]gipcmodClsaCompleteAccept: slos dep : No space left on device (28)
    2012-03-11 13:50:47.158: [GIPCCLSA][1090939200]gipcmodClsaCompleteAccept: slos loc : authprep6
    2012-03-11 13:50:47.158: [GIPCCLSA][1090939200]gipcmodClsaCompleteAccept: slos info: failed to make dir /u01/app/grid/auth/css/rac1/A8205079
    2012-03-11 13:50:47.159: [GIPCXCPT][1090939200]gipcmodMuxTransferAccept: internal accept request failed endp 0x196bed80 [000000000000001b] { gipcEndpoint : localAddr 'clsc://(ADDRESS=(PROTOCOL=ipc)(KEY=OCSSD_LL_rac1_)(GIPCID=e5a0c08e-00000000-5598))', remoteAddr '', numPend 0, numReady 0, numDone 0, numDead 0, numTransfer 0, objFlags 0x0, pidPeer 0, flags 0x30613, usrFlags 0x10010 }, ret gipcretAuthFail (22)
    2012-03-11 13:50:47.159: [ GIPCMUX][1090939200]gipcmodMuxTransferAccept: EXCEPTION[ ret gipcretAuthFail (22) ] error during accept on endp 0x196bed80 [000000000000001b] { gipcEndpoint : localAddr 'clsc://(ADDRESS=(PROTOCOL=ipc)(KEY=OCSSD_LL_rac1_)(GIPCID=e5a0c08e-00000000-5598))', remot2012-03-11 14:15:32.370: [    CSSD][2372304640]clssscmain: Starting CSS daemon, version 11.2.0.1.0, in (clustered) mode with uniqueness value 1331489730
    2012-03-11 14:15:32.383: [    CSSD][2372304640]clssscmain: Environment is production
    2012-03-11 14:15:32.384: [    CSSD][2372304640]clssscmain: Core file size limit extended
    2012-03-11 14:15:32.933: [    CSSD][2372304640]clssscGetParameterOLR: OLR fetch for parameter logsize (8) failed with rc 21
    2012-03-11 14:15:32.933: [    CSSD][2372304640]clssscSetPrivEnv: IPMI device not installed on this node
    2012-03-11 14:15:32.935: [    CSSD][2372304640]clssscGetParameterOLR: OLR fetch for parameter priority (15) failed with rc 21
    2012-03-11 14:15:48.413: [    CSSD][2372304640]clssscExtendLimits: The current soft limit for file descriptors is 65536, hard limit is 65536
    2012-03-11 14:15:48.413: [    CSSD][2372304640]clssscExtendLimits: The current soft limit for locked memory is 4294967295, hard limit is 4294967295
    2012-03-11 14:15:48.421: [    CSSD][2372304640]clssscmain: Running as user ora11g
    [  clsdmt][1119824192]Listening to (ADDRESS=(PROTOCOL=ipc)(KEY=rac1DBG_CSSD))
    2012-03-11 14:16:21.102: [  clsdmt][1119824192]PID for the Process [7155], connkey 4
    2012-03-11 14:16:22.219: [    CSSD][2372304640]clssscGetParameterOLR: OLR fetch for parameter auth rep (9) failed with rc 21
    2012-03-11 14:16:22.221: [    CSSD][2372304640]clssscGetParameterOLR: OLR fetch for parameter diagwait (14) failed with rc 21
    2012-03-11 14:16:27.367: [    CSSD][2372304640]clssscmain: initgminfo done
    2012-03-11 14:16:43.377: [    CSSD][1140803904]clssgmclientlsnr: Spawned
    2012-03-11 14:16:43.378: [    CSSD][1140803904]clssgmEvtInformation: reqtype (13) cmProc ((nil)) client ((nil))
    2012-03-11 14:16:43.378: [    CSSD][1140803904]clssgmEvtInformation: reqtype (13) req (0x6964160)
    2012-03-11 14:16:43.378: [    CSSD][1140803904]clssnmQueueNotification: type (13) 0x6964160
    2012-03-11 14:16:43.389: [    CSSD][1140803904]clssscGetParameterOLR: OLR fetch for parameter GIPC client trclvl (13) failed with rc 21
    2012-03-11 14:16:43.554: [    CSSD][1140803904]clssgmclientlsnr: listening on clsc://(ADDRESS=(PROTOCOL=ipc)(KEY=OCSSD_LL_rac1_)(GIPCID=f8ea6223-00000000-7155))
    2012-03-11 14:16:43.555: [    GPnP][2372304640]clsgpnp_Init: [at clsgpnp0.c:404] gpnp tracelevel 3, component tracelevel 0
    2012-03-11 14:16:43.555: [    GPnP][2372304640]clsgpnp_Init: [at clsgpnp0.c:534] '/u01/app/grid' in effect as GPnP home base.
    2012-03-11 14:16:44.146: [GIPCCLSA][1140803904]gipcmodClsaCompleteAccept: failed on clsaauthstart ret clsaretOSD (8), endp 0x696e0e0 [000000000000002f] { gipcEndpoint : localAddr 'clsc://(ADDRESS=(PROTOCOL=ipc)(KEY=OCSSD_LL_rac1_)(GIPCID=0448e4a3-ad06465f-7155))', remoteAddr 'clsc://(ADDRESS=(PROTOCOL=ipc)(KEY=OCSSD_LL_rac1_)(GIPCID=ad06465f-0448e4a3-7132))', numPend 5, numReady 0, numDone 0, numDead 0, numTransfer 0, objFlags 0x1bdc, pidPeer 0, flags 0x603710, usrFlags 0x14000 }
    2012-03-11 14:16:44.147: [GIPCCLSA][1140803904]gipcmodClsaCompleteAccept: slos op : mkdir
    2012-03-11 14:16:44.147: [GIPCCLSA][1140803904]gipcmodClsaCompleteAccept: slos dep : No space left on device (28)
    2012-03-11 14:16:44.147: [GIPCCLSA][1140803904]gipcmodClsaCompleteAccept: slos loc : authprep6
    2012-03-11 14:16:44.147: [GIPCCLSA][1140803904]gipcmodClsaCompleteAccept: slos info: failed to make dir /u01/app/grid/auth/css/rac1/A8989982
    2012-03-11 14:16:44.147: [GIPCXCPT][1140803904]gipcmodMuxTransferAccept: internal accept request failed endp 0x696cd80 [000000000000001b] { gipcEndpoint : localAddr 'clsc://(ADDRESS=(PROTOCOL=ipc)(KEY=OCSSD_LL_rac1_)(GIPCID=f8ea6223-00000000-7155))', remoteAddr '', numPend 0, numReady 0, numDone 0, numDead 0, numTransfer 0, objFlags 0x0, pidPeer 0, flags 0x30613, usrFlags 0x10010 }, ret gipcretAuthFail (22)
    2012-03-11 14:16:44.147: [ GIPCMUX][1140803904]gipcmodMuxTransferAccept: EXCEPTION[ ret gipcretAuthFail (22) ] error during accept on endp 0x696cd80 [000000000000001b] { gipcEndpoint : localAddr 'clsc://(ADDRESS=(PROTOCOL=ipc)(KEY=OCSSD_LL_rac1_)(GIPCID=f8ea6223-00000000-7155))', remoteAddr[ora11g@rac1 cssd]$
    My question is:
    Could any folk find out the problem that Grid becomes not running after install RAC database ?
    Thanks.

  • 11g R2 and RAC One Node

    Hi,
    what is realy the advantage and difference between RAC and RAC One Node, since finaly we should switch to another server if a node/instance crashes.
    On IT Tips by Burleson Consulting it is said :
    What makes Oracle RAC One Node special is that it performs quick clone of the instance to a new node.
    Which for me means switch to another server on the RAC.
    Thanks for the explanations.

    - can be easily extended to multiple nodes.
    - you can use "Oracle Restart" which restarts your resources automatically
    - suppose you have several rac installation among your single databases you can manage a single node like you do with rac installations
    Edited by: Ronny Egner on Sep 28, 2009 4:29 PM

  • Where to get Oracle libraries

    I have a jar that runs in Linux32, with a JDK that includes Oracle JDK.
    I then tried it in Windows32. I don't have a Windows32 JDK, so I got error:
    java.lang.NoClassDefFoundError: oracle/javatools/util/CommandParser
    When can I get Oracle libraries that include CommandParser, and some other Oracle classes? I think If I install JDev for Windows32, it will bring the libraries. But don't know what path I should add to classpath.
    Can anyone please advise? Thanks!

    Thanks, Frank!
    You can do the same using JDeveloper: - Open project properties
    - Select Libraries node
    - press New
    - type class into Search Field>
    JDeveloper has so many useful features, so I could not observe all of them and I have missed this one. It is great that this forum is supported by highly experienced Oracle employees, who are familiar with the tools and frameworks in details. I started wathcing the forum thoroughly quite recently and I am amazed of how many useful things I have learned for a short period of time thanks to the forum.
    Thank you again.

  • Which difference parallel database and RAC database

    Hi Experts,
    I saw some document about parallel database and RAC database.
    My boss confused these two product.
    which difference between parallel database and RAC database?
    does parallel database is a "old RAC"?
    Thanks
    Jim

    RAC is the new name with many features for old depreciated Oracle Parallel Server (OPS).
    It was avialable till 8i, since 9i it is called RAC.
    Regards
    Edited by: skvaish1 on Mar 30, 2010 12:59 PM

  • Add oraForms  librairy to Oracle jdev 10.1.3.3 and build forum

    Hi,
    I have to build a forum using oracle jdev 10.1.3.3 and oracle database using soa architecture, that's why i wouldlike to add oraForms librairy to my oracle jdev, i would like lso to get some tutorials andsample in order to build my forum.
    Thanks.
    Edited by: user4585473 on 14 sept. 2008 14:14

    Hi,
    libraries can be added on the project level. Open the project properties (context menu) and choose the library node. I am afraid, but I don' think there is a tutorial that explains end-to-end what is your development assignment
    Frank

  • HP service guard and RAC or dataguard

    HP service guard must use with RAC on HP unix server?
    In dataguard how can we use the hp service guard?
    will you pls. clarify.

    HP Service guard is a clustering or High availability solution that protects you against hardware failure. Oracle Parallel server, the precursor to RAC, when implemented on HPUX platform required HP Service guard. With RAC, oracle bundles in its own clusterware and service guard is no longer a mandatory prerequisite. If Service Guard is installed oracle clusterware will delegate some of the cluster responsibilities to service guard.
    Dataguard on the other hand is a Disaster recovery solution that protects you against site disaster or whole data center outage. With that said it is not uncommon to see dataguard being setup between two servers within same datacenter to protect against hardware failure or for reporting purposes.
    How would you use dataguard with service guard? On the production site, you can use service guard for fail over the database between two nodes in case there is a hard ware failure. You can do the same for the DR site also.

  • Can RAC and RAC One Node share the same servers ?

    Does anyone know if it is possible for RAC and the new 11gR2 RAC One Node to share the same set of physical servers i.e. in effect having 2 clusters sharing the same set of servers ( though you could argue RAC One node is a different type of clustering or even that it is not real clustering at all - more instance transporting ).
    Or does standard RAC always require exlusive use of the physical servers it is using as its nodes ?
    Any thoughts appreciated
    Jim

    Jimbo wrote:
    Does anyone know if it is possible for RAC and the new 11gR2 RAC One Node to share the same set of physical servers i.e. in effect having 2 clusters sharing the same set of servers ( though you could argue RAC One node is a different type of clustering or even that it is not real clustering at all - more instance transporting ).
    Or does standard RAC always require exlusive use of the physical servers it is using as its nodes ?
    Hi Jim,
    To deploy RAC we need Oracle Grid Infrastructure for a cluster (aka Oracle Clusterware) on top.
    What determine if it's Single /RAC /RAC one Node is the Installation of Oracle Database.
    So, Oracle Clusterware support on Same Cluster ( RAC/ RAC one Node / Single).
    You will need one installation for each Feature.
    e.g on Same Cluster
    ---> Grid Infrastructure GRID_HOME=/u01/app/11.2.0/grid
    --->> RAC one Node /ORACLE_HOME = /u01/app/oracle/product/11.2.0/racone_11203
    --->> RAC /ORACLE_HOME = /u01/app/oracle/product/11.2.0/rac_11203
    --->> SINGLE /ORACLE_HOME = /u01/app/oracle/product/11.2.0/db_11203
    For me make no sense RAC ONE NODE and RAC on same cluster.
    Because RAC ONE NODE is a RAC with less feature.
    Regards,
    Levi Pereira

  • Any proprietory Oracle libraries need to build & deploy JDev's JSF app?

    Hi, I'm very new to JSF.
    I wish to use Oracle JDeveloper for RAD of java web application. I notice JSF probably is what i'm looking for, but I'm also concern about proprietory issue.
    So, my question is by using Oracle JDeveloper (a free IDE tool as what I know) to build JSF application and deploy to nonOracle J2EE app server, does it involve any proprietory Oracle libraries or jar file that we still need to in order get the JSF application we build using JDeveloper to be working?
    Please advise.
    Thank you.

    Thanks for the info.
    I'm really new to JSF so before seriously use it for development, would like to get as much advice as possible from the those familiar with it first.
    To be more specific, as long as I only have adf-faces-impl.jar & jsf-impl.jar in my web-inf\lib, that means we are not using any proprietory libraries right?
    So, if I use plain JSF or ADF Faces, will I be able to make use of the data binding to other Open Source database like MySql? If yes, does this data binding (mapping text fields to database fields) requires use of proprietory oracle libraries like bc4j? or for JSF there's alternative? cos I saw in JSF HTML got something call dataTable. RAD is one of my major concern, but I don't want to tie up using proprietory oracle libraries.
    Actually I want to use mysql as the database and JDeveloper as the IDE, but i need a RAD environment. So, currently looking into JSF.
    Thank you.

  • RAC and RAC One Node on the same server?

    Hello all,
    Anyone know if having RAC and RAC One Node on the same server is possible, supported, and recommended? Our architecture group is moving towards this configuration as a standard, and I need solid direction about feasability.
    Thanks for any help you can provide.
    Jack Silvey| CVS Caremark | Executive Advisor, IT Systems | CVS Caremark

    Yes you can have the RAC and RAC one on the same cluster. For support and recommendations raise a service request with oracle support  

  • Using Oracle Clusterware for keeping other things than RAC HA

    Hello.
    I'm wondering who else out there has used Oracle Clusterware to monitor items other than RAC.
    There are some good examples on
    http://www.oracle.com/technology/products/database/clusterware/index.html
    But I was interested in finding other examples as well.
    Thanks,
    Erik

    I am in the process of getting Clusterware to protect a single-instance (non-RAC) database... and not doing too well!
    The theory behind it looks the same as for any non-Oracle app in that it just uses scripts (in this case Perl) to do the monitoring/stopping/starting.
    My issue is once I've created the profile and registered it Clusterware just can't do a thing with it. It just errors and reports an unknown state. I have a SR on the go for it and it's been referred to the internal bods for review because everything looks right but it just doesn't work.
    Has anybody achieved this and actually got it working?

  • Resources for performance tuning and RAC needed

    Can you suggest me the best knowledge resources for performance tuning and RAC?
    Besides Oracle doc ...
    Thanks!

    Before all, I'm searching for resources on web like performance tuning from Dizwell Informatics is.
    Anyway thank you Eric for your suggestion!

  • Oracle libraries - licences

    Hi list,
    I saw that oracle has taken classes from sun and bundled them to new libraries.
    For example orasaaj.jar or orajaxr.jar.
    Why did they do this? Were changes necessary?
    What is about the licences of these and further oracle libraries like soap.jar?
    Are they free for use and distribute?
    greetings
    Florian

    Hi,
    I don't think you have anything to fear, actually. If your Oracle license gives you the right to create redistributable applications, then those applications can rely on the Oracle versions of SAAJ, JAXR and anything else in our distribution. The fact that some of the code in these libraries may be licensed by Oracle from Sun is irrelevent. You only need to refer to your Oracle license agreement to understand your rights for this code.
    Cheers,
    Bill

Maybe you are looking for

  • Two External Displays for iMac

    Is it possible to run two external displays off of an iMac? I have a small display running and just was giving an old second display so I was wondering if I could run both at the same time?

  • Block function showing differnt from QI06 to QI03 tocde

    Hi, Providing below is my requirement: I am using SAP ECC 6.0 In QI06 Tcode (QM Releases: Mass maintenance) selection screen I am providing Plant = "XXXX" and in "Change" tab under "Block" section providing value to Block Function = "Qualified" and c

  • Remote images displayed in email

    Hello! Despite the fact that I have "Display remote images in HTML messages" unchecked, about half the time Mail.app displays the image anyway. Has anyone else experienced this, and have you found a cure? I tried searching the forum, but the only hit

  • Issue using PrintDataGrid

    Hi, I am facing problem in printing the datagrid rows which are having HTML tags used to display styles like bold in the grid for some words. When displaying in the screen it looks as what i expected. When i used to print the same it doesn't rendered

  • Glitch with Lion, MAMP or user

    I've read online others are having problems with MAMP and test server pages not working correctly since starting to use Lion.  I'm still learning about PHP so I'm not sure what I'm doing wrong here. I'm using OS X Lion and just reinstalled MAMP today