Oracle Pool Refresh

          Hi All,
          These are the setting for our Oracle Pool,
          weblogic.jdbc.connectionPool.oraclePool=\
          url=jdbc:oracle:thin:@10.112.99.202:1521:ORCL,\
          driver=oracle.jdbc.driver.OracleDriver,\
          loginDelaySecs=0,\
          initialCapacity=200,\
          maxCapacity=250,\
          capacityIncrement=10,\
          allowShrinking=true,\
          shrinkPeriodMins=15,\
          refreshMinutes=10,\
          testTable=PROFF_LIABIL,\
          props=user=abcde;password=xyz;
          But it's not refreshing periodically. Please help me to refresh the Oracle Pool periodically.It's very urgent to me.
          Thanks,
          Venkat
          

Your question was answered in the JDBC section.
          Cameron Purdy
          [email protected]
          http://www.tangosol.com
          WebLogic Consulting Available
          "Venkat Ponnala" <[email protected]> wrote in message
          news:39d1f6e2$[email protected]..
          >
          > Hi All,
          >
          > These are the setting for our Oracle Pool,
          >
          > weblogic.jdbc.connectionPool.oraclePool=\
          > url=jdbc:oracle:thin:@10.112.99.202:1521:ORCL,\
          > driver=oracle.jdbc.driver.OracleDriver,\
          > loginDelaySecs=0,\
          > initialCapacity=200,\
          > maxCapacity=250,\
          > capacityIncrement=10,\
          > allowShrinking=true,\
          > shrinkPeriodMins=15,\
          > refreshMinutes=10,\
          > testTable=PROFF_LIABIL,\
          > props=user=abcde;password=xyz;
          > But it's not refreshing periodically. Please help me to refresh the Oracle
          Pool periodically.It's very urgent to me.
          >
          > Thanks,
          > Venkat
          

Similar Messages

  • How to track the connection pool refresh details

    Hi,
    Could you please help to track the connection pool refresh details.
    Thanks
    Panneer

    Hi,
    I want track connection pool refresh details for oracle application server 10.1.3.4.
    Please help me to get this info.
    Thanks
    Panneer

  • 5.1.0 sp11 Connection pool refresh issue, revisited....again...!!!

    "Hello,
    From reading of these newsgroups I've seen many different manifestations
    of what seems to be the same root cause with connection pools and
    connections which are refreshed/replaced when found broken. In our
    case weblogic server hangs.
    Kit: 2xWeblogic 5.1.0 sp11 (not clusterd), Solaris 8,
    java 1.3.1_01, 1xoracle 8.1.6, latest JDBC 2.0 drivers from oracle. Each weblogic instance and oracle have their own machines.
    We do indeed have a firewall employed to run our subnets, and hence
    our weblogic servers and oracle databses are in different DMZ's, but are
    allowed to communicate to each other via rules set up on the firewall and
    inspection of the logs show no such connections being dropped.
    As far as the db is concerned, lookups (no writes) never take more than a few
    hundred milliseconds and are then closed and given back to the connection pool
    immediately from within the 'finally' block of code, hence hard to see when,if ever, the db is
    is closing them due to excessive idle time.
    weblogic.jdbc.connectionPool.RecipeDBPool=\
    url=jdbc:oracle:thin:@foo:1521:BAA,\
    driver=oracle.jdbc.driver.OracleDriver,\
    loginDelaySecs=1,\
    initialCapacity=30,\
    maxCapacity=50,\
    capacityIncrement=1,\

    Alkesh wrote:
    Hi Joe,
    The fix you suggested has been implemented and has been running fine
    now for the past 3 days. I'm delighted with the result,Great. Glad to help.
    but am concerned as to why this problem wasnt highlighted during our
    load-testing phases...It's a possibility that your load-testing didn't present the same sort
    of load that your actual runtime does.
    Thanks for your time on this.Well sure. We want you successful.
    Joe
    Alkesh
    At 01:52 PM 2/22/2002 +0000, you wrote:
    Hi Joe,
    Thanks for your reply
    Please find attached a copy of the jvm thread dump we got from thelast time
    that weblogic blocked upon trying to refresh a broken connection.
    We have turned off JIT with the environment settingJAVA_COMPILER=NONE.
    FYI hotspot is enabled with '-hotspot', these settings can be foundin the
    attached 'startWeblogic.sh'.Hi. I found a serious problem by reading the thread dump:
    "ExecuteThread-11" daemon prio=5 tid=0x179d40 nid=0x19 waiting for
    monitor entry
    [0xeee80000..0xeee819e0]
    at java.sql.DriverManager.getConnection(DriverManager.java:144)
    - waiting to lock <f8e77ad0> (a java.lang.Class)
    at com.akqa.sainsburys.jv_recipe.ejb.session.RecipeBean.getConnection(Re
    cipeBean.java:759)
    It is important to never call DriverManager methods in a multithreaded
    application
    such as Weblogic, because these JVM methods are alloverly synchronized
    at
    the class level. One such method, DriverManager.println(), is called
    continuously
    by all JDBC drivers as well as the SQLException constructor. If one
    server thread
    makes a long-lasting or hanging call to DriverManager.getConnection(),
    it can halt
    all JDBC in the whole JVM including work on other open driver
    connections.
    Please show me the code for RecipeBean.java, and I will send you an
    altered version
    that should solve this problem. In fact, I can infer from the thread
    dump what is needed.
    Change the one method getConnection() to this:
    // Make once and re-use a driver instance directly, avoiding
    DriverManager
    Driver d = (Driver)class.forName("weblogic.jdbc.jts.Driver").newInstance();
    public Connection getConnection()
    return d.connect("jdbc:weblogic:jts:yourPoolNameHere", null );
    Also, change your pool definition. I assume you have
    testConnsOnReserve set to true.
    (You should). Also, you should change your refresh minutes to
    something huge, like
    9999999. The refresh is interfering with your online performance and
    is unnecessary
    if you have testConnsOnReserve set. I recommend:
    weblogic.jdbc.connectionPool.RecipeDBPool=\
    url=jdbc:oracle:thin:@foo:1521:BAA,\
    driver=oracle.jdbc.driver.OracleDriver,\
    loginDelaySecs=1,\
    initialCapacity=50,\ <------ note that this should be the
    same as max, so all cons are made at startup
    maxCapacity=50,\
    testTable=dual,\
    testConnsOnReserve=true,\
    refreshTestMinutes=9999999,\
    etc.
    Joe
    I've also attached some firewall logs around the time of weblogicblocking
    (12.09). I could only get screen dumps for you, this may or maynot be
    useful.
    For the firewall logs use the following legend :-
    195.110.64.205 - DNS
    172.16.160.195 - host webserver 1 (i.e. what our licenses are boundto)
    172.16.160.196 - host webserver 2
    172.16.160.220 - website 1
    172.16.160.230 - website 2
    Thanks
    Alkesh
    -----Original Message-----
    From: Joe [mailto:[email protected]]
    Sent: 20 February 2002 22:09
    To: [email protected]
    Subject: Re: 5.1.0 sp11 Connection pool refresh issue,
    revisited....again...!!!
    At 02:47 PM 2/20/2002 +0000, you wrote:
    Hi Joe,
    Please find attached a copy of our thread dumps for the most recentoccasion
    that weblogic server has stopped.
    Apologies for any misunderstandings with my previous post, it appears to
    have been cropped. Full posting below (yes we do have testConnOnReserve and
    testTable properties set).
    Thanks for your time.sure, but first let's get you running OK. These dumps seem to be
    very cryptic, as if you're running a highly optimized JVM that
    loses almost all of the Java class references I'd normally see.
    Can you run again with a more basic JVM? I am beginning to suspect
    the JIT JVM...
    Joe
    Alkesh
    Joseph Weinstein wrote:
    Hello,
    From reading of these newsgroups I've seen many
    different manifestations of what seems to be the sameroot cause with connection pools and connections
    which are refreshed/replaced when found broken. In our
    case weblogic server hangs.
    Kit: Weblogic 5.1.0 sp11 (not clusterd),
    Solaris 8, java 1.3.1_01, oracle 8.1.6,
    latest JDBC 2.0 drivers from oracle.
    We do indeed have a firewall employed to run our subnets,
    and hence our weblogic servers and oracle databses are
    in different DMZ's, but are allowed to communicate to each
    other via rules set up on the firewall and inspection of
    the logs show no such connections being dropped.
    As far as the db is concerned, lookups (no writes) never
    take more than a few hundred milliseconds and are then
    closed and given back to the connection pool immediately
    from within the 'finally' block of code, hence hard to
    see when,if ever, the db is is closing them due to excessive idle time.
    weblogic.jdbc.connectionPool.RecipeDBPool=\
    url=jdbc:oracle:thin:@foo:1521:BAA,\
    driver=oracle.jdbc.driver.OracleDriver,\
    loginDelaySecs=1,\
    initialCapacity=30,\
    maxCapacity=50,\
    capacityIncrement=1,\
    allowShrinking=false,\
    testTable=dual,\
    testConnsOnReserve=true,\
    shrinkPeriodMins=1,\
    refreshTestMinutes=10,\ // has been 1 and 5 but 10 'more' stable.
    Fequently however, connections are found to be broken
    (either by periodical refresh - refreshTestMinutes or
    testing connection before granting it to the
    application - testConnsOnReserve=true), this has been
    confirmed by viewing JDBC.log .
    When this is so, weblogic attempts to replace these
    broken connections with new ones and then proceeds
    to grant it to the application. Once in a while however
    (and by no means 'x' refreshes later), weblogic will not
    come back.
    One of 2 errors occur in our deployment which cuase weblogic
    to refresh a connection.
    <JDBC Pool RecipeDBPool> java.sql.SQLException: No more data to read fromsocket
    and
    <JDBC Pool RecipeDBPool> java.sql.SQLException: Io exception: Broken pipe
    I believe these settings to all be correct, JDBC drivers
    in the correct point BEFORE weblogic.aux in classpath, yet
    still have the issue of broken connections.
    Any ideas ? I've been reading a lot into this probelm
    on various postings now, and i'm completely stumped.
    Thanks for your time.
    Alkesh

  • Using Oracle pooling in 10.2 with ingres datasource

    Hi;
    I'm trying to use Oracle Pooling in 10.2 using OracleConnectionCacheManager class with ingres database.
    I got the following exception:
    java.sql.SQLException: Invalid Oracle URL specified
    The URL i'm using is:
    jdbc:edbc://HOST:TM7/DATABASE
    When i'm using the same URL with Class.forname() it's working fine!
    I don't know what i'm missing.
    Any Help?
    Thanks in advance.

    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?

  • Oracle pool and timeout

    hi,
    i have an oracle pool.
    if the oracle computer restarts (for example), the getConnection takes few minutes till i get an exception.
    is there a way to set a timeout on the getConnection (not the login).
    i'm using OracleConnectionCacheImpl in oracle 8.1.6i.

    Hi,
    JDBC DriverManager provides a method called setLoginTime to set timeout.
    Please find the extract from "Java 2 SDK SE Developer Documentation".
    DriverManager.setLoginTimeout
    public static void setLoginTimeout(int seconds)
    Sets the maximum time in seconds that a driver will wait while attempting to connect to a database.
    Parameters:
    seconds - the login time limit in seconds
    For further information on this please visit our site at
    http://java.sun.com/j2se/1.4/docs/api/java/sql/DriverManager.html
    If you want to specify connection timeout for database connectionpool provided any webserver or application server then you can set connection timeout parameter for connectionpool.
    For further information on this, please go through the corresponding application server/web server documentation.
    Hope this helps.
    Good Luck.
    Gayam.Srinivasa Reddy
    Developer Technical Support
    Sun Micro Sysytems
    http://www.sun.com/developers/support/

  • Oracle pool

    i test the oracle pool on WLS 7.0 by using the "simpleexample.jsp" offered by BEA.
    it works by using:
    Driver myDriver = (Driver) Class.forName("weblogic.jdbc.pool.Driver").newInstance();
    but doesn't work if use:
    Driver myDriver = (Driver) Class.forName
    ("oracle.jdbc.driver.OracleDriver").newInstance();
    i included the classes12.zip in my classpath.
    the oracle pool setup is as follwoing:
    name: oraclePool
    URL: jdbc:oracle:thin:@myservername:1521:sid
    Driver: oracle.jdbc.driver.OracleDriver
    Thanks in advance.
    Hongjie

    hongjie wrote:
    Joe:
    sorry for the misspelling. you are right, the name is
    simpleselect.jsp
    It WORKS after I changed the code as you suugested.
    Thank you very much.Sure.
    >
    >
    But I have to make it work for connectionPool. because we use
    connectionPool for WLS5.1. now we are trying to migrate to WLS7.0. We want to
    take the advantage of connection pooling.The same code that instantiated and used the pool driver should work in
    7.0 just as well as it worked in 5.1!
    Joe
    >
    >
    Hongjie
    Joseph Weinstein <[email protected]> wrote:
    hongjie wrote:
    i test the oracle pool on WLS 7.0 by using the "simpleexample.jsp"offered by BEA.
    it works by using:
    Driver myDriver = (Driver) Class.forName("weblogic.jdbc.pool.Driver").newInstance();
    but doesn't work if use:
    Driver myDriver = (Driver) Class.forName
    ("oracle.jdbc.driver.OracleDriver").newInstance();
    i included the classes12.zip in my classpath.I suspect you mean the example server\src\examples\jdbc\pool\simpleselect.jsp
    with the code:
    Driver myDriver = (Driver) Class.forName("weblogic.jdbc.pool.Driver").newInstance();
    conn = myDriver.connect("jdbc:weblogic:pool:demoPool", null);
    If you don't want to use the pool, and you want to make a direct connection
    using the
    oracle driver, you would have to supply the DBMS URL and properties:
    Driver myDriver = (Driver) Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
    java.util.Properties p = new java.util.Properties();
    p.put("user", "scott");
    p.put("password","tiger");
    // add whatever other props you want, if any...
    conn = myDriver.connect("jdbc:oracle:thin:@myservername:1521:sid", p
    Joe Weinstein at BEA
    the oracle pool setup is as follwoing:
    name: oraclePool
    URL: jdbc:oracle:thin:@myservername:1521:sid
    Driver: oracle.jdbc.driver.OracleDriver
    Thanks in advance.
    Hongjie

  • Oracle Drive Refresh Issue

    Hello. We recently started experiencing problems with Oracle Drive automatically resetting it's refresh to an hour. We set all users on a 3 minute refresh but lately we have noticed it has been getting switched back to an hour somewhere. Anywone have any ideas how to stop it?

    I agree with Ray that you should probably be deploying certs in a different way in order to use the App Volumes product as intended (floating linked clone pools).  I would use GPOs to deploy certificates myself.
    Deploy Certificates by Using Group Policy - TechNet

  • Failure in ORACLE POOL connection

    Hi friends,
    I have worked as a developer, My platform front-end is .net and back end is oracle, this product live chat, My problem is I have receive a problem from server that’s is, mysql POOL connection is automatically cut from the connection, I have try to fix that bug but unexpectedly I cannot fix that, Anybody say some suggestion about that.
    Thanks in advance for your help.
    Regards,
    Gilbertsavier.
    Live chat By mioot

    You missed the following
    1. Oracle Version
    2. OS
    3. Error Number
    4. Error Message
    Please Fill the above details.
    Regards,

  • Sun One Studio 5 - Oracle Pool trouble

    I've created a connection pool and loaded the oracle 8i drivers. All the drivers are correctly present in the classpath but I still get a server-side error when I execute in the IDE:
    java.lang.ClassNotFoundException: oracle.jdbc.pool.OracleDataSource
    It has to be a classpath problem..I've checked classes12.zip and classes111.zip are present in the classpath. Any clues?

    In the Sun One the is a ServerAdministrative menu by clicking on it u get a window to look that deployed application... check out the server cluster.. load balancing and stuffs like that in the same window there is a Database icon where u have to set the driver path and give the drive name.. with the max connection min connection that would solve your problem

  • Oracle ADF refresh as deferred does not execute query on page load

    In the oracle ADF page I have two panel boxes. (Oracle ADF 11.1.1.4)
    a) Personal information panel box with PanelFormLayout (PersonalInfoViewObj) - ReadOnly View Object
    b) Address information panel box with Table (AddressInfoViewObj) - Read Only View Object
    For the iterators in a) and b) I have kept refresh condition as deferred and cacheResult=false. Also in b) for af:table, I have kept contentDelivery="immediate"
    When page loads it fires SQL query for a) and populate the data in Personal information panel box. However for b) it does not execute the SQL query and the data is not getting populated ( in AddressInformation panel with the tables. Please note data is there in the DATABASE......)
    Becasue with the refresh as deferred it was not executing the sql query for Panel b) (panel with Table and table iterator). I have tried refresh as always and refresh ifNeeded/renderModel/prepareModel however in that case it is executing the SQL query two times (twice).
    Please let me know the best way to fix this issue.

    Hi,
    I think you need a method in an application module to init your data.
    In your AM : create a method like :
    public void init(){
    getViewObject().executeQuery();
    }In your adfc-config.xml create a methodCall from this method and a "control flow case" from the methodCall to your page.
    and keep refresh as "deferred " in your pageDef.
    Clément

  • Oracle ADF - Refresh quick query for a table in the pop up.

    Hi,
    I am using Oracle jDev 11.1.1.4.0
    In my application I have a Find button in jspx.
    Onclick of Find button, a popup opens.
    When I search for a record by name in QuickQuery, suppose - I entered name as jon.
    It gives me the correct result.
    Now when I close the pop up and again click on Find button, that previous search remains as it is in the pop up
    and also the previous criteria in quick query search region as "jon".
    I have changed the refresh property of iterator(of table in popup) in pageDef
    But still not working...
    How to refresh that search region for every subsequent Find click.
    Appreciate your help.
    Thanks,
    Madhav

    do u changed refresh > ifneeded or always.
    user.
    r u luking for partially page rendering.
    by using ppr. we can refresh.
    if so.
    http://www.adftips.com/2010/10/adf-ui-refreshing-page-or-region.html
    http://biemond.blogspot.com/2007/11/how-to-refresh-region-in-jdeveloper-11g.html
    Re: ADF Region Interaction
    Edited by: Erp on Sep 27, 2011 4:37 AM
    Edited by: Erp on Sep 27, 2011 4:42 AM

  • Module Pool - Refresh Screen Fields Progmatically

    Hello All!
    I have a slightly frustrating problem. I have built a Module Pool application to display shipments and their underlying deliveries (various information from each).
    I have structured the application as follows
    An object to store the Data. This object has an internal table of Shipments and an internal table of Deliveries. The tables are related by TKNUM. When the application needs to display a shipment, it requests the shipment's information and the underlying deliveries information from the object. The object is structured to move through the shipments with methods like "GetFirstHeader", "GetPrevHeader", "GetNextHeader", "GetLastHeader". These return the data for the application to use.
    The Deliveries are displayed in a CL_SALV_TABLE, the Shipment information is displayed in textbox type fields above the table.
    The form for display has buttons to trigger the "Move" methods of the data object. This currently will retrieve the new data from the object, modify the fields and the alv grid and then go back through PBO (I'm assuming because a button was pressed). This works well. It will bring in the new data and refresh the screen everything is fine.
    I also have a button to print the currently displayed Shipment and Deliveries. This Print is handled through a SmartForm.
    The area that is giving me troubles is my other button. Since the Application can store a range of shipments at once, I have a "Print All" button. This button moves to the first shipment in the data object,
    calls the Print Form, then moves through the rest of the data object calling the Print Form for each Shipment Displayed. This happens from one button push. The problem I am running into is that the screen does not refresh when the data changes during this movement through the data objects. I believe this is due to the PBO module not being triggered yet. My question is, is there a way to refresh the screen progmatically?
    I have tried SET USER-COMMAND to move through the data, instead of calling the "GetFirstHeader" and "GetNextHeader" method directly, but that has some unpredictable behavior (works in debug, not in regular execution). I have also tried a LEAVE SCREEN statement, as that would trigger the PBO, since the Next Screen is set to the same screen number, but that kills execution of that block of code at the LEAVE SCREEN STATEMENT.
    I am including my code from my PAI module that runs this processing, hopefully that will help.
    << unformatable code removed >>
    Moderator message - Please go through your code and post only what is relevant to your question.
    Edited by: Rob Burbank on Apr 28, 2009 1:44 PM

    MODULE USER_COMMAND_9999 INPUT .
      CASE OK_CODE .
        WHEN 'NEXT' .
          PERFORM Next .
          PERFORM GetGridData .
          PERFORM RefreshALV .
        WHEN 'PREV' .
          PERFORM Prev .
          PERFORM GetGridData .
          PERFORM RefreshALV .
        WHEN 'EXIT' .
          SET SCREEN 0 .
        WHEN 'PRNT' .
          PERFORM Print .
        WHEN 'PRNA' .
          PERFORM PrintAll .
        WHEN 'BACK' .
          PERFORM HideInitials .
          SET SCREEN '1000' .
        WHEN 'CANC' .
          SET SCREEN '1000' .
        WHEN 'FRST' .
          PERFORM First .
          PERFORM GetGridData .
          PERFORM RefreshALV .
        WHEN 'LAST' .
          PERFORM Last .
          PERFORM GetGridData .
          PERFORM RefreshALV .
        WHEN 'CFAX' .
          PERFORM Show6000 .
      ENDCASE .
    ENDMODULE .
    FORM PrintAll .
      DATA sPromptB TYPE STRING .
      DATA sPromptM TYPE STRING .
      DATA sPromptE TYPE STRING .
      DATA sPromptF TYPE STRING .
      DATA cAnswer  TYPE C LENGTH 1 .
      IF NOT oLTend->isEmpty( ) = 1 .
        sPromptB = text-995 .
        sPromptM = ITOTSHIPNUM .
        sPromptE = text-994 .
        CONCATENATE sPromptB sPromptM sPromptE INTO sPromptF SEPARATED BY SPACE .
        CALL FUNCTION 'POPUP_TO_CONFIRM'
          EXPORTING
            TITLEBAR                    = 'Print All?'
            TEXT_QUESTION               = sPromptF
            DISPLAY_CANCEL_BUTTON       = ' '
          IMPORTING
            ANSWER                      = cAnswer
          EXCEPTIONS
            TEXT_NOT_FOUND              = 1
            OTHERS                      = 2 .
        IF SY-SUBRC <> 0 .
          MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4 .
        ENDIF .
        IF cAnswer = '1' .
          PERFORM First .
          PERFORM GetGridData .
          PERFORM RefreshALV .
          " >>> Need Screen Refreshed right here
          PERFORM Print .
          DO .
            PERFORM Next .
            PERFORM GetGridData .
            PERFORM RefreshALV .
            " >>> Need Screen Refreshed right here
            PERFORM Print .
            IF oLTend->GetIndex( ) = oLTend->GetCount( ) .
              EXIT .
            ENDIF .
          ENDDO .
        ENDIF .
      ENDIF .
    ENDFORM .
    That is the general flow. Hope that helps, if more info is needed, let me know.

  • Connection Pool refresh with weblogic

    Hi,
    In my application when weblogic starts up it creates connection
    pools and uses it later. If the connection is lost it refreshes in regular interval
    and it's fine.
    The problem I am facing:
    If the database connectivity is not there when the weblogic
    starts very first time and later the database connectivity
    comes back my connection will not refresh.
    Any ideas???????

    Hi,
    In my application when weblogic starts up it creates connection
    pools and uses it later. If the connection is lost it refreshes in regular interval
    and it's fine.
    The problem I am facing:
    If the database connectivity is not there when the weblogic
    starts very first time and later the database connectivity
    comes back my connection will not refresh.
    Any ideas???????

  • Oracle Pooled Connection

    I'm using the oracle implementation of the connection pool.
    But I don't know how to recognize when the phisical connections are down.
    I can't use the method isClose() of the interface java.sql.Connection because it refers to a single connection.
    this is the exception thrown when I try to execute it without the connection to the DB.
    I can't resart every morning the application server....
    java.sql.SQLException: Closed Connection
    at java.sql.SQLException.<init>(SQLException.java:45)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:169)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:211)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:274)
    at oracle.jdbc.pool.OraclePooledConnection.getConnection(OraclePooledConnection.java:189)
    at oracle.jdbc.pool.OracleConnectionCacheImpl.getConnectionOracleConnectionCacheImpl.java:251)
    at oracle.jdbc.pool.OracleConnectionCacheImpl.getConnectionOracleConnectionCacheImpl.java:163)
    Is there any solution?

    Hi,
    I m also trying to achieve connection pooling using oracle implementation but not yet successful,
    could please paste ur related source code here?
    Thnx n Regards,
    Susheel

  • Bug in WLS 6.1 DataSource + Oracle Pool

    Does any one has arrived to execute an Oracle Stored procedure which
    return a CURSOR in response with JDBC through the DataSource?
    It's working perfectly with WLS 5.1sp9 to 6.0sp2
    and NOT with the 6.1 (even sp1) ...
    Exception : weblogic.jdbc.rmi.internal.ResultSetImpl
    Any idea ?
    Best regards.

    Does any one has arrived to execute an Oracle Stored procedure which
    return a CURSOR in response with JDBC through the DataSource?
    It's working perfectly with WLS 5.1sp9 to 6.0sp2
    and NOT with the 6.1 (even sp1) ...
    Exception : weblogic.jdbc.rmi.internal.ResultSetImpl
    Any idea ?
    Best regards.

Maybe you are looking for

  • Windows Vista to Windows 8?

    Hello, 2 questions....  Firstly... I am currently running a Windows Vista PC.  I have purchased and went to install Microsoft Office 2013 however I was advised that I needed Windows 8 on my laptop to run this program. Therefore i purchased Windows 8

  • Need help for total of Dr and Cr. in report painter

    Hello friends,     I have created the trail balance in report painter. In table faglflext table. I created the common column of debit and credit cumulative balance and then separated the problem is I am not getting the total of all the debit and cred

  • How to copy a existing process chain

    hi i am a SAP BW learner. i created a process chain for inital load and i want to create a process chain by copying first created process chain and tell me in what situation we delete the indexes of InfoCube. Can any one provide me the solution to ho

  • Freehand 10 and tiles ?

    Hello, I've been experiencing lot of trouble when I try to print my document 1120 mm x 810 mm to a TANTO 90 negative printer (Japanese model), the printer doesn't accept the TILES that fill some of my objects, If I want to do tiles manualy it will co

  • Wildcard dns

    From my blog. I’m having this problem where I can’t get the CNAME *.domain.tld working on Mac OSX server 10.8 I'll illustrate my problem (presuming web service is up and running): Let’s set up a new “Primary Zone” with an “A Record”. Server.app DNS +