Oracle 11g  Quartz Scheduler 1.8.5 running under JBOSS 5.1

Basically I'm getting this error when running Quartz configured for the jobStore
org.quartz.jobStore.class = org.quartz.impl.jdbcjobstore.JobStoreCMT
I've got two data sources setup.
One data source is setup to be looked up via JNDI (presumably for the one that may participate in distributed JTA XA transactions) and one that
supposedly is not to participate in JTA transactions in which quartz can call commit/rollback on it's own.
The problem I'm seeing with the interaction of the two is the following exception:
05:21:27,292 ERROR [TxPolicy] javax.ejb.EJBTransactionRolledbackException: SqlMapClient operation; uncategorized SQLException for SQL []; SQL state [9
9999]; error code [29875];
--- The error occurred in XXXXX_COORDINATE_SqlMap.xml.
--- The error occurred while applying a parameter map.
--- Check the XXXX_COORDINATE.insert-InlineParameterMap.
--- Check the statement (update failed).
--- Cause: java.sql.SQLException: ORA-29875: failed in the execution of the ODCIINDEXINSERT routine
ORA-29400: data cartridge error
ORA-14450: attempt to access a transactional temp table already in use
ORA-06512: at "MDSYS.SDO_INDEX_METHOD_10I", line 720
ORA-06512: at "MDSYS.SDO_INDEX_METHOD_10I", line 225
; nested exception is com.XXXXXibatis.common.jdbc.exception.NestedSQLException:
--- The error occurred in XXXXX_COORDINATE_SqlMap.xml.
--- The error occurred while applying a parameter map.
--- Check the XXXXX_COORDINATE.insert-InlineParameterMap.
--- Check the statement (update failed).
--- Cause: java.sql.SQLException: ORA-29875: failed in the execution of the ODCIINDEXINSERT routine
ORA-29400: data cartridge error
ORA-14450: attempt to access a transactional temp table already in use
ORA-06512: at "MDSYS.SDO_INDEX_METHOD_10I", line 720
ORA-06512: at "MDSYS.SDO_INDEX_METHOD_10I", line 225
Has anyone seen this error before with the following configuration of Quartz 1.8.5, Oracle 11g, Oracle Spatial?
I've googled and seen reference to Oracle spatial using temp tables and not compatible with transactions... but not sure
exactly how to solve this problem.
Thanks in advacce.

Hi;
Can any one advise me where and how can I download proper RPM packages and how do I resolve swap space requirement failure as mentioned above. Please let me know if further information required.You can find all related rpm from your DVD. For rpm please see below thread:
RPM confirmation
Re: Package install for oracle11gr2
For swap:
swap size increase-linux
How to increase swap size?
Regard
Helios

Similar Messages

  • Queries running under JBoss Not Working

    I'm using Kodo 2.3.2 running under JBoss.
    It seems like if I attempt to run the same JDOQL query within a single
    transaction under JBoss the second time I run the query I see that Kodo
    appears to be querying the entire extent of my class instead of performing
    my JDOQL query.
    For example,
    I have a simple JDOQL function like:
    runQuery()
    Extent e = aPM.getExtent (Persname.class, true);
    String aFilter, anOID;
    aFilter = "pers.objid == aObjId";
    // Create a new query for the specified class and filter
    Query query = aPM.newQuery (e, aFilter);
    query.declareParameters("double aObjId");
    // execute the query
    Collection aColl = (Collection) query.execute (aPersOID);
    if ( aColl == null )
    this.setResults("ERROR: NULL collection returned from query");
    return false;
    } // end if
    // iterate the results and close the query
    If I call this method twice in my session bean I see this the first time
    (which is correct SQL):
    SELECT t0.ObjId, t0.PersObjId, t0.StpDate, t0.StrDate, t0.TypeCd FROM Pers
    t1, PersName t0 WHERE (t1.ObjId = '44946832753163' AND t0.PersObjId =
    t1.ObjId)
    Then on the second call to the method I see this:
    SELECT t0.ObjId, t0.PersObjId, t0.StpDate, t0.StrDate, t0.TypeCd FROM
    PersName t0
    connect:
    jdbc:microsoft:sqlserver://ML1JXT0C:1339;DatabaseName=SMSTHtndIT6DJDO;Select
    Method=cursor (sa): 1
    then Kodo seems to iterate the entire table using all the primary keys.
    Has anyone seen anything like this?
    Also, when I run more than one query, the second query performs
    significantly slower (5 - 6 seconds).

    Fred,
    That was the problem, once I configured IgnoreCache=true I didn't see that
    behavior anymore. Thanks..
    "Fred Lucas" <[email protected]> wrote in message
    news:[email protected]...
    What is the javax.jdo.option.IgnoreCache property set to? If this is
    set to 'false' and you run a query after modifying an object in the
    transaction, then we perform the entire query in-memory, for transactional
    consistency reasons.
    -Fred
    In article <[email protected]>, TJanusz wrote:
    I'm using Kodo 2.3.2 running under JBoss.
    It seems like if I attempt to run the same JDOQL query within a single
    transaction under JBoss the second time I run the query I see that Kodo
    appears to be querying the entire extent of my class instead of
    performing
    my JDOQL query.
    For example,
    I have a simple JDOQL function like:
    runQuery()
    Extent e = aPM.getExtent (Persname.class, true);
    String aFilter, anOID;
    aFilter = "pers.objid == aObjId";
    // Create a new query for the specified class and filter
    Query query = aPM.newQuery (e, aFilter);
    query.declareParameters("double aObjId");
    // execute the query
    Collection aColl = (Collection) query.execute (aPersOID);
    if ( aColl == null )
    this.setResults("ERROR: NULL collection returned from query");
    return false;
    } // end if
    // iterate the results and close the query
    If I call this method twice in my session bean I see this the first time
    (which is correct SQL):
    SELECT t0.ObjId, t0.PersObjId, t0.StpDate, t0.StrDate, t0.TypeCd FROMPers
    t1, PersName t0 WHERE (t1.ObjId = '44946832753163' AND t0.PersObjId =
    t1.ObjId)
    Then on the second call to the method I see this:
    SELECT t0.ObjId, t0.PersObjId, t0.StpDate, t0.StrDate, t0.TypeCd FROM
    PersName t0
    connect:
    jdbc:microsoft:sqlserver://ML1JXT0C:1339;DatabaseName=SMSTHtndIT6DJDO;Select
    Method=cursor (sa): 1
    then Kodo seems to iterate the entire table using all the primary keys.
    Has anyone seen anything like this?
    Also, when I run more than one query, the second query performs
    significantly slower (5 - 6 seconds).
    Fred Lucas
    SolarMetric Inc.
    202-595-2064 x1122
    http://www.solarmetric.com

  • Installation of Oracle 11g Release 2 on Windows Server 2008 R2

    Hi:
    When I tried to install 64-bit Oracle 11g Release 2 on a system running 64-bit Windows Server 2008 R2.
    One of the system pre-requisites failed with the following error message:
    Checking operating system requirements ...
    Expected result: One of 5.0,5.1,5.2,6.0
    Actual Result: 6.1
    Check complete. The overall result of this check is: Failed <<<<
    Problem: Oracle Database 11g is not certified on the current operating system.
    Recommendation: Make sure you are installing the software on the correct platform.
    I presume 6.0 is Windows 2008 Server and 6.1 should be Release 2.
    Does this mean that this version is not compatible with Server 2008 Release 2?
    venki
    Edited by: thevenkat on Jan 20, 2010 9:37 PM

    Hans Forbrich wrote:
    [email protected] wrote:
    Does anyone know when we can expect 11g R2 for Windows?No one outside of Oracle officially knows (and they are under NDA)
    No one inside Oracle is permitted to say, or pre-announce release dates for legal reasons.
    Which is why I gave you the link - so you could monitor for yourself.OK, thanks...
    I was just hoping there was an official release date and I just couldn't find it.
    Is there any information about features in 11gR2 for Windows available yet?
    Or can you maybe tell me if it will be possible to mount the new "database filesystem" like we can do on linux?
    I remember oracle did something similar with Oracle ifs (Internet File System) back in Oracle 9i. (or was it 8i?)
    Regards
    Thomas

  • Primavera 6.2 SQL Database to Oracle 11g migration

    Hi,
    I used the migration tool to migrate a Primavera 6.2 SQL database to Oracle 11G DB. The migration tool runned successfully and I am able to login to the database using P6.2 client with no problem; however when attemptiong to update the license on the now Oracle database using the privuser account I get the following error "License could not be loaded because of error: List index out of bounds (247). Please make sure that you are using a privileged database login" the error comes up before I can browse to the location of licesne.txt file. Same procedure on a "native" Oracle P6.2 database works perfectly with no problem. Has any one run into this problem before? any help will be appreciated.
    Best Reagrds,

    user11108903 wrote:
    Hi,
    I used the migration tool to migrate a Primavera 6.2 SQL database to Oracle 11G DB. The migration tool runned successfully and I am able to login to the database using P6.2 client with no problem; however when attemptiong to update the license on the now Oracle database using the privuser account I get the following error "License could not be loaded because of error: List index out of bounds (247). Please make sure that you are using a privileged database login" the error comes up before I can browse to the location of licesne.txt file. Same procedure on a "native" Oracle P6.2 database works perfectly with no problem. Has any one run into this problem before? any help will be appreciated.
    Best Reagrds,I have not seen that specifically but it appears that not all of the grants were correctly applied.
    I would suggest running the schema validation tool which can be found on the knowledgebase as Solution ID: prim75459 as this will tell you what is missing/invalid.
    Once you know that, you can pull the neccesary grants from the create scripts located in the cd1\install\database\scripts folder.

  • SQL performance slow -- oracle 10g to oracle 11g

    Hi,
    We are have two development server, here we can call server10 and server11.
    Server’s having same hardware and OS, but different oracle version, server 10 and server 11 having oracle 10g and oracle 11g respectively.
    Problem, when you run sql query in oracle 11g it’s very slow compare to oracle 10g server.
    Here I have checked
    1)     sga size – comparatively 11g size is big
    2)     no full table scan
    OS – SUN
    DB: 11.1.0.7.0, 10.2.0.4.0

    mmee wrote:
    Hi,
    We are have two development server, here we can call server10 and server11.
    Server’s having same hardware and OS, but different oracle version, server 10 and server 11 having oracle 10g and oracle 11g respectively.
    Problem, when you run sql query in oracle 11g it’s very slow compare to oracle 10g server.
    Here I have checked
    1)     sga size – comparatively 11g size is big
    2)     no full table scan
    OS – SUN
    DB: 11.1.0.7.0, 10.2.0.4.0If the query is running slow, the sga size should not be the first thing to check. PLease post the execution plans of the queries from both the servers. Please try to post the tkprof output of the trace of both. The reason for this that explain plan may lie to us about what has happened but trace would be the real picture only.
    HTH
    Aman....
    PS: Don't forget to use the code tag and using the Preview tab to see how the code looks. A better formatted post would most likely get better attention and response.

  • Oracle 11g Fusion Middleware Control, CGICMD.DAT

    Finally, I have Weblogic and Oracle 11g Forms and Reports up and running.  Now, I would like to create a Mapping Key in the CGICMD.DAT file, so that all the login information will not show up in the URL when I run a report.  Can someone please tell me how to do this through the Middleware Control console?  I do know that i have to go through the MBeans System to find "CgicmdConfigMXBean" but it seems like trying to find a needle in a haystack.  Also, is there a specific format when creating a Mapping Key?  would like to include the path, userid information for connection to the reports.
    thank you,
    steven

    Your question belongs in {forum:id=84}
    John

  • Database Upgrade from Oracle 9i to Oracle 11g

    Hi Experts,
    We are running our Applications on 9i database but our Client has come out with suggestions of upgrading the Database to Oracle 11g.
    Bellow is information about our platform:
    JBoss 4.2.3, JDK 1.6
    TIBCO Administrator- 5.4, TIBCO Designer-5.5, TIBCO TRA-5. 5, TIBCO EMS-4. 4
    Oracle 9i  -- Basically Using Tables, Views, Sequence, Functions & Stored Procedures.
    Can anyone provide us some information for upgrade to Oracle 11g R2 and impact on work?
    Any suggestions that could be given will be greatly appreciated.
    Regards,
    Anup

    Anup wrote:
    Hi Experts,
    We are running our Applications on 9i database but our Client has come out with suggestions of upgrading the Database to Oracle 11g.
    Bellow is information about our platform:
    JBoss 4.2.3, JDK 1.6
    TIBCO Administrator- 5.4, TIBCO Designer-5.5, TIBCO TRA-5. 5, TIBCO EMS-4. 4
    Oracle 9i  -- Basically Using Tables, Views, Sequence, Functions & Stored Procedures.
    Can anyone provide us some information for upgrade to Oracle 11g R2 and impact on work?
    Any suggestions that could be given will be greatly appreciated.
    Regards,
    Anup
    Hi,
    What is your current 9i version (last 3 digits) and what is your OS?
    To upgrade to 11gR2 from 9i, the 9i version must be minimum 9.2.0.8
    Please read
    - http://download.oracle.com/docs/cd/E11882_01/server.112/e17222/toc.htm
    - http://download.oracle.com/docs/cd/E11882_01/install.112/e17212/procstop.htm#BABEHGJG
    Hope this helps
    Cheers

  • DW sees no Oracle 11g procs

    PropertyManager.Application.Databases lists the tables and
    views for my Oracle 11g CF Data Source, but lists "None" under the
    Stored Procedure node. User is owner of these procs. I am already
    calling these procs with ColdFusion cfcs from Flex. TIA,
    Mic.

    crzymnmchl wrote:
    > PropertyManager.Application.Databases lists the tables
    and views for my Oracle
    > 11g CF data source and for MySQL5 data source, but lists
    "None" under the
    > Stored Procedure node.
    MySQL has supported stored procedures only since MySQL 5.
    Dreamweaver's
    server behaviors were developed in pre-MySQL 5 days, and have
    not been
    substantially revised since then.
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS3" (friends of
    ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • Deployment Queries related to Quartz Scheduler for SOA 11g???

    Dear All,
    We are using Quartz Scheduler for SOA 11g and have queries on its testing:
    1. Can we change the cron expression(say, previously cron expression was with the interval of 15 minutes every hour and we are changing it to 5 minutes every hour) in the scheduler table after we deployed the scheduler application? Should this require redeployment of Scheduler Application or the scheduler java class needs to be be run again to trigger the newly updated cron expression. Or, Will commiting the scheduler details table alone update the application to schedule for every 5 minutes in an hour?
    2. Also, if we are trying to schedule a new application(say, previously only 2 of our applications are scheduled and trying to add newly built application in the Scheduler table), will commiting the table alone will schedule the new application or require redeployment of Scheduler Application or the scheduler java class needs to be be run again?
    Please share your thoughts!
    Thanks in advance

    Were you able to control the frequency from the table. Can you please share the detials..

  • Quartz Scheduler in Oracle SOA 10g clustered environment

    Hi,
    I was able to successfully test the usage of Quartz scheduler in our Oracle SOA 10g dev environment. Our dev is single instance where as our Test and Prod are clustered. I would like to know if the scheduler works in clustered environment. I wasn't able to find any documentation specific to Quartz for Bpel. If it can be done can you provide some guidance.
    I really appreciate your help
    Jagan.

    Jagan
    The schedulers do work on cluster environment. The trick is that every node has its oc4j containers, so you will need to deploy the scheduler process to every node in the cluster.
    Suppose you have two nodes, and have a requirement to run certain process every two hours. You schedule the process in DEV environment to run every two hours. But in cluster you will specify to run every four hours on both the nodes. In simple explanation, node 1 will fire the process at 0,4,8, ... hours and node 2 will fire at 2, 6, 10, ... hours. So, the result is that your process is still running every two hours.
    Hope this will help ...

  • Oracle 11g RAC on RHEL 4.0, error on 1 Node while running ./root.sh for CRS

    Hi,
    I am trying to install Oracle 11g RAC on RHEL 4.0 on Vmware and at the end of CRS installation when installer asks to run the two scripts (orainstRoot.sh and root.sh) on one node (on the node where runInstaller is started) throws following error
    [root@LRAC1 crs]# ./root.sh
    WARNING: directory '/xhdd/u01/crs/oracle/product/11.1.0' is not owned by root
    WARNING: directory '/xhdd/u01/crs/oracle/product' is not owned by root
    WARNING: directory '/xhdd/u01/crs/oracle' is not owned by root
    WARNING: directory '/xhdd/u01/crs' is not owned by root
    WARNING: directory '/xhdd/u01' is not owned by root
    WARNING: directory '/xhdd' is not owned by root
    Checking to see if Oracle CRS stack is already configured
    Setting the permissions on OCR backup directory
    Setting up Network socket directories
    /xhdd/u01/crs/oracle/product/11.1.0/crs/bin/ocrconfig: line 78: /xhdd/u01/crs/oracle/product/11.1.0/crs/bin/ocrconfig.bin: cannot execute binary file
    /xhdd/u01/crs/oracle/product/11.1.0/crs/bin/ocrconfig: line 78: /xhdd/u01/crs/oracle/product/11.1.0/crs/bin/ocrconfig.bin: Success
    Failed to upgrade Oracle Cluster Registry configuration
    [root@LRAC1 crs]#
    While on the second node the root.sh script does not give any errors, here the output
    [root@LRAC2 crs]# ./root.sh
    WARNING: directory '/xhdd/u01/crs/oracle/product/11.1.0' is not owned by root
    WARNING: directory '/xhdd/u01/crs/oracle/product' is not owned by root
    WARNING: directory '/xhdd/u01/crs/oracle' is not owned by root
    WARNING: directory '/xhdd/u01/crs' is not owned by root
    WARNING: directory '/xhdd/u01' is not owned by root
    WARNING: directory '/xhdd' is not owned by root
    Checking to see if Oracle CRS stack is already configured
    /etc/oracle does not exist. Creating it now.
    Setting the permissions on OCR backup directory
    Setting up Network socket directories
    Oracle Cluster Registry configuration upgraded successfully
    The directory '/xhdd/u01/crs/oracle/product/11.1.0' is not owned by root. Changing owner to root
    The directory '/xhdd/u01/crs/oracle/product' is not owned by root. Changing owner to root
    The directory '/xhdd/u01/crs/oracle' is not owned by root. Changing owner to root
    The directory '/xhdd/u01/crs' is not owned by root. Changing owner to root
    The directory '/xhdd/u01' is not owned by root. Changing owner to root
    The directory '/xhdd' is not owned by root. Changing owner to root
    Successfully accumulated necessary OCR keys.
    Using ports: CSS=49895 CRS=49896 EVMC=49898 and EVMR=49897.
    node <nodenumber>: <nodename> <private interconnect name> <hostname>
    node 1: lrac1 lrac1-priv lrac1
    node 2: lrac2 lrac2-priv lrac2
    Creating OCR keys for user 'root', privgrp 'root'..
    Operation successful.
    Now formatting voting device: /dev/sdd1
    Format of 1 voting devices complete.
    Startup will be queued to init within 30 seconds.
    Adding daemons to inittab
    Expecting the CRS daemons to be up within 600 seconds.
    Cluster Synchronization Services is active on these nodes.
    lrac2
    Cluster Synchronization Services is inactive on these nodes.
    lrac1
    Local node checking complete. Run root.sh on remaining nodes to start CRS daemons.
    Any ideas to solve this issue.
    Thanks in advance,
    Sameer

    I tried reinstalling again and it worked on Vmware Server.Some oracle products are certified on Oracle VM , but not RAC at the moment.
    You can download Oracle VM from otn.oracle.com
    Check ML Note:464754.1 for details about Certified Software on Oracle VM.
    - Virag Sharma
    http://virag.sharma.googlepages.com/

  • Urjent help !!!Error during running script root.sh for oracle 11g migration

    Dear All,
    My databse is Oracle 9.2.8.0 and i am migrating it into oracle 11g.
    During installation of oracle 11g (with software only option) , it asked me to run the script root.sh in another terminal,
    During running i got the below error.
    What i should do now. shall i continue with the error...............
    Kindly help ? It's urjent....
    Script Output :
    [root@cmssbigt dbhome_1]# ./root.sh
    Running Oracle 11g root.sh script...
    The following environment variables are set as:
    ORACLE_OWNER= oracle
    ORACLE_HOME= /oracle/product/11.2.0/dbhome_1
    Enter the full pathname of the local bin directory: [usr/local/bin]:
    The file "dbhome" already exists in /usr/local/bin. Overwrite it? (y/n)
    [n]: y
    Copying dbhome to /usr/local/bin ...
    The file "oraenv" already exists in /usr/local/bin. Overwrite it? (y/n)
    [n]: y
    Copying oraenv to /usr/local/bin ...
    The file "coraenv" already exists in /usr/local/bin. Overwrite it? (y/n)
    [n]: y
    Copying coraenv to /usr/local/bin ...
    Entries will be added to the /etc/oratab file as needed by
    Database Configuration Assistant when a database is created
    Finished running generic part of root.sh script.
    Now product-specific root actions will be performed.
    Finished product-specific root actions.
    /bin/mkdir: cannot create directory `/opt/ORCLfmap': No such file or directory
    /bin/mkdir: cannot create directory `/opt/ORCLfmap/prot1_32': No such file or directory
    /bin/mkdir: cannot create directory `/opt/ORCLfmap/prot1_32/bin': No such file or directory
    /bin/mkdir: cannot create directory `/opt/ORCLfmap/prot1_32/etc': No such file or directory
    /bin/mkdir: cannot create directory `/opt/ORCLfmap/prot1_32/log': No such file or directory
    /bin/cp: cannot create regular file `/opt/ORCLfmap/prot1_32/bin': No such file or directory
    /bin/cp: cannot create regular file `/opt/ORCLfmap/prot1_32/bin': No such file or directory
    /bin/chmod: cannot access `/opt/ORCLfmap/prot1_32/bin/fmputl': No such file or directory
    /bin/chmod: cannot access `/opt/ORCLfmap/prot1_32/bin/fmputlhp': No such file or directory
    /bin/cp: cannot create regular file `/opt/ORCLfmap/prot1_32/etc': No such file or directory
    [root@cmssbigt dbhome_1]#
    You have new mail in /var/spool/mail/root

    Biswa wrote:
    If u have any problem with urjent word then mention in the forum during regestration that , only who having 5 to 6 days of time can only post. Because the issues will be solved within this time interval.
    Ok ..........No. It is NOT okay to claim that everyone else here that posted problems need to be ignored and your problem be given priority attention because you deem it to be urgent. You have not a single valid excuse for claiming your posting is more important on OTN that other postings.
    It is not acceptable. Learn some basic etiquette please when posting online!

  • Oracle Portal returns 500 error running under Weblogic 11g server

    I've got Oracle Portal set up under Weblogic 11g.
    SSO running, talking to OID 11g, also running under the same Weblogic 11g server. Tested SSO, it is working well.
    After the install (no errors or issue on install), I go to http://<server>:8090/portal/pls/portal and geta Error 500 - Internal Server Error.
    I traced down the problem to OHS - in ohs1.log:
    [2009-08-04T10:09:15.0512-05:00] [OHS] [ERROR:32] [OHS-9999] [odl_log.c] [host_id: <server>] [host_addr: 127.0.0.1] [tid: 1320139072] [user: oracle] [ecid: 004S594zs25Fw000jzwkno0002740001NK] [rid: 0] [VirtualHost: main] Request Failed for : /portal/pls/portal, Resp Code : [500]
    [2009-08-04T10:09:15.1212-05:00] [OHS] [ERROR:32] [OHS-9999] [core.c] [host_id: <server> [host_addr: 127.0.0.1] [tid: 1330628928] [user: oracle] [ecid: 004S5953tHhFw000jzwkno0002740001NL] [rid: 0] [VirtualHost: main] File does not exist: /opt/oracle/Middleware/asinst_2/config/OHS/ohs1/htdocs/favicon.ico
    So the problem is favicon.ico is missing, which I confirmed. Does this mean a bad deployment of an .EAR file? What should I do?

    Yes, it seems you are correct....this is from WLS_PORTAL-diagnostic.log
    Looks like the real problem is ERROR: Failed to load C shared library in RepositoryGateway after calling RepositoryGatewayJNI.load:
    [2009-08-05T08:32:08.333-05:00] [WLS_PORTAL] [NOTIFICATION] [] [oracle.portal] [tid: [ACTIVE].ExecuteThread: '5' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000IBekbL6Fw000jzwkno1AU3uT000001,0] [APP: portal] Portal Servlet Context Listener destroy started
    [2009-08-05T08:34:14.191-05:00] [WLS_PORTAL] [NOTIFICATION] [] [oracle.portal] [tid: [STANDBY].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000IBel63LFw000jzwkno1AUOdM000000,0] [APP: portal] Initializing Portal Servlet Context Listener
    [2009-08-05T08:34:14.534-05:00] [WLS_PORTAL] [NOTIFICATION] [] [oracle.portal] [tid: [STANDBY].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000IBel63LFw000jzwkno1AUOdM000000,0] [APP: portal] Creating Repository Service
    [2009-08-05T08:34:14.540-05:00] [WLS_PORTAL] [NOTIFICATION] [] [oracle.portal] [tid: [STANDBY].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000IBel63LFw000jzwkno1AUOdM000000,0] [APP: portal] In RepositoryService.constructor(<3 args>), PLSQL_CONFIG_FILE = /opt/oracle/Middleware/user_projects/domains/pfrd/servers/WLS_PORTAL/stage/portal/portal/configuration/portal_plsql.conf[[args: serverInfo=WebLogic Server 10.3.1.0 Thu Jun 11 00:26:56 EDT 2009 1227385 , contextRoot=/portal, logMode=error]]
    [2009-08-05T08:34:14.578-05:00] [WLS_PORTAL] [NOTIFICATION] [] [oracle.portal] [tid: [STANDBY].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000IBel63LFw000jzwkno1AUOdM000000,0] [APP: portal] In RepositoryServiceConfig, DAD_CONFIG_FILE = /opt/oracle/Middleware/user_projects/domains/pfrd/servers/WLS_PORTAL/stage/portal/portal/configuration/portal_dads.conf, CACHE_CONFIG_FILE = /opt/oracle/Middleware/user_projects/domains/pfrd/servers/WLS_PORTAL/stage/portal/portal/configuration/portal_cache.conf
    [2009-08-05T08:34:14.582-05:00] [WLS_PORTAL] [NOTIFICATION] [] [oracle.portal] [tid: [STANDBY].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000IBel63LFw000jzwkno1AUOdM000000,0] [APP: portal] In RepositoryServiceConfig, dadRetriever = oracle.webdb.repository.service.DadFileConfigRetriever@26d4835, cacheRetriever = [email protected]7
    [2009-08-05T08:34:14.622-05:00] [WLS_PORTAL] [NOTIFICATION] [] [oracle.portal] [tid: [STANDBY].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000IBel63LFw000jzwkno1AUOdM000000,0] [APP: portal] Calling RepositoryGatewayJNI.load ...
    **ERROR STARTS HERE
    [2009-08-05T08:34:14.637-05:00] [WLS_PORTAL] [ERROR] [] [oracle.portal] [tid: [STANDBY].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000IBel63LFw000jzwkno1AUOdM000000,0] [APP: portal] ERROR: Failed to load C shared library in RepositoryGateway!
    [2009-08-05T08:34:14.665-05:00] [WLS_PORTAL] [ERROR] [] [oracle.portal] [tid: [STANDBY].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId:
    <anonymous>] [ecid: 0000IBel63LFw000jzwkno1AUOdM000000,0] [APP: portal] ERROR: Repository Service creation failed. Please check previous log entries for possible cause.
    [2009-08-05T08:34:14.911-05:00] [WLS_PORTAL] [NOTIFICATION] [] [oracle.portal.config.modplsql.mbeans.DadManagerMXBeanImpl] [tid: [STANDBY].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000IBel63LFw000jzwkno1AUOdM000000,0] [APP: portal] **** Inside Reloaded, NOW Register mbean = : /pls/portal
    [2009-08-05T08:34:14.915-05:00] [WLS_PORTAL] [NOTIFICATION] [] [oracle.portal.config.modplsql.mbeans.DadManagerMXBeanImpl] [tid: [STANDBY].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000IBel63LFw000jzwkno1AUOdM000000,0] [APP: portal] **** Inside RegisterBean, global beanName = : oracle.portal.config:subtype=DADs,name=/pls/portal,type=PortalConfig,Application=portal
    [2009-08-05T08:36:16.717-05:00] [WLS_PORTAL] [NOTIFICATION] [] [oracle.portlet.server.wsrp.mbean.WSRPTransientConfigMXBeanImpl] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: weblogic] [ecid: 0000IBelXi4Fw000jzwkno1ARF2b0004Zm,1:5002] [APP: wsrp-tools] Found WLS AppDeployment MBean com.bea:Name=portalTools#11.1.1.1.0,Type=AppDeployment

  • Problem running this in Oracle 11g, This was working fine in Oracle 10g

    Hi Friends,
    I used the following procedure "GIVE_ME_AN_ARRAY" in Crystal Report Version 11, using Oracle 10g and it was running fine, however when I created the following in Oracle 11g, all these objects created without any error, and when I call Procedure "GIVE_ME_AN_ARRAY" in Crystal Report 11 as well as in Microsoft Report Builder 2.0, following error occured.
    ORA-03113:- End of Communication Channel
    Please note, the said Procedure runs fine :-
    1. if I remove remaining part of UNION ALL Query in Procedure and compile.
    2. if I don't remove UNION ALL, but remove the following line.
    WHERE empno IN
    (select * from THE
    ( select cast( in_list(memp) as
    mytableType ) from dual ) a)
    Any Idea what am I missing ?
    My main task is to pass multiple strings to use 'IN' Operator in query.
    Please help me out.
    Thanks and Regards,
    Luqman
    create or replace type myTableType
    as table of varchar2 (255);
    create or replace function in_list( p_string in varchar2)
    return myTableType
    as
    l_string long default p_string || ',';
    l_data myTableType := myTableType();
    n number;
    begin
    loop
    exit when l_string is null;
    n := instr( l_string, ',' );
    l_data.extend;
    l_data(l_data.count) :=
    ltrim( rtrim( substr( l_string, 1, n-1 ) ) );
    l_string := substr( l_string, n+1 );
    end loop;
    return l_data;
    end;
    CREATE OR REPLACE PROCEDURE give_me_an_array (
    CV IN OUT sys_refcursor, memp in varchar2
    IS
    BEGIN
    OPEN CV FOR
    SELECT empno,
    ename
    FROM emp
    WHERE empno IN
    (select * from THE
    ( select cast( in_list(memp) as
    mytableType ) from dual ) a)
    UNION ALL
    SELECT empno,
    ename
    FROM emp
    WHERE empno IN
    (select * from THE
    ( select cast( in_list(memp) as
    mytableType ) from dual ) a);
    END give_me_an_array;

    ..is the "THE" operator still supported?
    I know this was the case in Oracle 8i, but later?... you can try using the "TABLE" operator instead.

  • Oracle 11g Enterprise Manager Issue -- Cannot run DB & em dbconsole at 1ce

    Hi All
    I am coming for your help with a query uncommon. I have configured, my oracle 11g database, on windows 32 bit machine. Initially I had set sga_target to enable ASMM expecting Oracle to manage this part. However, upon subsequent restart, DB could never be started with continuous +"ORA-12853 cannot allocate xxxxK blocks to PX"+ stuff.
    Reading some content over the net, I've unset SGA_TARGET and turned OFF ASMM and managed to start the db. Now, when I configured the EM on this machine and start it up I am able to open the URL https://xxx.xxx.xxx.xxx:1158/em, I am not able to login as authentication failure is returned where as the same set of userid and password work with out any complaints. Upon some look up, I realise EM dbconsole on the db server is consuming almost all of the available memory on the host leaving no space for Oracle or other processes on server. I cannot add any more memory for H/W restrictions. Having a page file of 4xRAM is not doing the trick. My attempts to grow oracle also do not help. I thought if I could control the memory utils of the EM AGENT and the corresponding Java process, it might help. I do not if that could be achieved.
    Can we control, the REAL Memory Utilisation of the EM processes? Does any OS setting or Oracle setting help us achieve this? Please advice.
    Regards!
    Sarat

    I am running windows 32 bit on Intel x86. Below is the extract of the system info. I hope this is useful.
    OS Name: Microsoft Windows XP Professional
    OS Version: 5.1.2600 Service Pack 2 Build 2600
    OS Manufacturer: Microsoft Corporation
    OS Configuration: Standalone Workstation
    OS Build Type: Multiprocessor Free\
    Sarat

Maybe you are looking for

  • Error in getting Database connection

    I have got a separate class for obtaining connection(returns a connection object) and releasing connection.I had written a new class in which the connection object is returned as null after calling the getConnection() method on that dataaccessbean cl

  • Datetime in Forms 10g

    I have a 10g form that has a date field that I have changed the datatype to datetime and added a format mask of DD-MON-YYYY because I don't want the user to see the time portion of the date. When I query for a record by entering a date in the field u

  • Reg Control Parameters of Adobe forms

    Hi,    I am have a issue with adobe forms, the purchase order in me22n changing the values and saving the PO has to go as an PDF attachment to the Vendor mail . But it is not happening but the PO is Processed sucessfully. The vendor mail is checked a

  • Apple service stores in New Delhi for iphone

    Hello, A special one of mine is right now in New Delhi. She dropped her iphone and speakers stopped working, so she cant talk over phone (even with headphones). Is there a way to find an Apple service that will fix the problem in New Delhi, center. S

  • Acrobat X Pro Fields

    When I copy fields from one document to another the fields are coming in rotated. (Both documents are landscape.)  Any idea why this is happening and how to fix this? I've tried rotating the document, however, the fields move with it. Thanks!