Connection pool setting error

I tried overwriting a my current repository with a new repository but I'm getting error.
The new rpd file is from another system with different datasource and user name (connection pool). Anyway to get this working?
How to change the user name to that of the current system?

You could have merged the repositories instead of overwriting. Now it is pretty difficult to tell what is what and what is where. Any specific error you get? But before going there, is there any reason why you overwrote the existing repository? Before overwriting you need to be very careful that the new repository is a superset of your older one.
Thanks,
Venkat
http://oraclebizint.wordpress.com

Similar Messages

  • Sun Java Systems Application Server 9 connection-pool ping error

    Hi folks, I tried creating a javax.sql.DataSource MSSQL database connection pool with the jdts type 4 driver I got from sourceforge, and each ping operation I tried gave me the following error message:
    Operation 'pingConnectionPool' failed in 'resources' Config MBean.
    Target exception message: No PasswordCredential found.
    My connection properties are:
    user = sa
    port = 1433
    databaseName = FlyMyWayDB
    serverName = digitanx-chalu
    What does this exception mean, what are the possible causes, and how do I go about resolving it.
    I will really appreciate any help, thanks.

    As long as the JDBC Driver (jar file) for the connection pool(s) you want to create are in the app server's lib directory, you shouldn't have a problem creating both those and the JDBC Resources from the admin console (web app). So far, I am able to bundle my connection pools and resource connections inside my ejb module under "Server Resources" within my enterprise (.ear) application in Netbeans 5.5. When I deploy it, the whole thing works pretty sweet. I haven't gotten to the stage where I will want to migrate the jee application to my dedicated server yet, but I suspect that if my dedicated (remote) app server doesn't want to play nice with my netbeans when I try and set it up as a new server under my "Server Manager", then I'll likely try to simply deploy the .ear file from within the admin console, using the "browse" (for .ear) option (likely the better/preferred practice for production anyhow). Thanks for the dukes! My very first ones ever!

  • Jdbc connection pool ping error in sun  application server

    hi,
    i have done the appropriate settings for my connection pool
    and i have got ping succeded................but it is only for sometimes.
    while pinging with the same set of data during another time i have got different errors..........
    they are the following:
    Operation 'pingConnectionPool' failed in 'resources' Config Mbean. Target exception message: The transaction isolation could not be set: READ_COMMITTED and SERIALIZABLE are the only valid transaction levels
    Operation 'pingConnectionPool' failed in 'resources' Config Mbean. Target exception message: Connection could not be allocated because: Io exception: Connection refused(DESCRIPTION=(TMP=)(VSNNUM=150999297)(ERR=12505)(ERROR_STACK=(ERROR=(CODE=12505)(EMFI
    =4))))
    so i have doubted about my oracle server..........
    plz tell me how to start the oracle database server and the oracle net listener............
    i would really appreciate anybody for helping me in this problem........

    hi,
    i have done the appropriate settings for my connection pool
    and i have got ping succeded................but it is only for sometimes.
    while pinging with the same set of data during another time i have got different errors..........
    they are the following:
    Operation 'pingConnectionPool' failed in 'resources' Config Mbean. Target exception message: The transaction isolation could not be set: READ_COMMITTED and SERIALIZABLE are the only valid transaction levels
    Operation 'pingConnectionPool' failed in 'resources' Config Mbean. Target exception message: Connection could not be allocated because: Io exception: Connection refused(DESCRIPTION=(TMP=)(VSNNUM=150999297)(ERR=12505)(ERROR_STACK=(ERROR=(CODE=12505)(EMFI
    =4))))
    so i have doubted about my oracle server..........
    plz tell me how to start the oracle database server and the oracle net listener............
    i would really appreciate anybody for helping me in this problem........

  • JDC Connection Pooling compilation error .... Please help

    I am trying to implement the JDC Connection pooling classes that I downloaded from this site. The 3 classes are:
    JDCConnection.java
    JDCConnectionDriver.java
    JDCConnectionPool.java
    I am having trouble compiling the JDCConnection.java class. The error that is coming up is this:
    JDCConnection.java:7: pool.JDCConnection should be declared abstract; it does not define createStatement(int,int) in pool.JDCConnection
    public class JDCConnection implements Connection {
    If I change the class to an abstract one, then I get an error indicating that one of the other classes cannot call a "new" instance of it because it is abstract.
    I have all the classes in a package called pool and YES I have set all the classpaths so that javac knows where to find it. I have posted the JDCConnection.java class below so you can see it. I have not modified it from how I got it.
    package pool;
    import java.sql.*;
    import java.util.*;
    import java.io.*;
    public class JDCConnection implements Connection {
    private JDCConnectionPool pool;
    private Connection conn;
    private boolean inuse;
    private long timestamp;
    public JDCConnection(Connection conn, JDCConnectionPool pool) {
    this.conn=conn;
    this.pool=pool;
    this.inuse=false;
    this.timestamp=0;
    public synchronized boolean lease() {
    if(inuse) {
    return false;
    } else {
    inuse=true;
    timestamp=System.currentTimeMillis();
    return true;
    public boolean validate() {
         try {
    conn.getMetaData();
    }catch (Exception e) {
         return false;
         return true;
    public boolean inUse() {
    return inuse;
    public long getLastUse() {
    return timestamp;
    public void close() throws SQLException {
    pool.returnConnection(this);
    protected void expireLease() {
    inuse=false;
    protected Connection getConnection() {
    return conn;
    public PreparedStatement prepareStatement(String sql) throws SQLException {
    return conn.prepareStatement(sql);
    public CallableStatement prepareCall(String sql) throws SQLException {
    return conn.prepareCall(sql);
    public Statement createStatement() throws SQLException {
    return conn.createStatement();
    public String nativeSQL(String sql) throws SQLException {
    return conn.nativeSQL(sql);
    public void setAutoCommit(boolean autoCommit) throws SQLException {
    conn.setAutoCommit(autoCommit);
    public boolean getAutoCommit() throws SQLException {
    return conn.getAutoCommit();
    public void commit() throws SQLException {
    conn.commit();
    public void rollback() throws SQLException {
    conn.rollback();
    public boolean isClosed() throws SQLException {
    return conn.isClosed();
    public DatabaseMetaData getMetaData() throws SQLException {
    return conn.getMetaData();
    public void setReadOnly(boolean readOnly) throws SQLException {
    conn.setReadOnly(readOnly);
    public boolean isReadOnly() throws SQLException {
    return conn.isReadOnly();
    public void setCatalog(String catalog) throws SQLException {
    conn.setCatalog(catalog);
    public String getCatalog() throws SQLException {
    return conn.getCatalog();
    public void setTransactionIsolation(int level) throws SQLException {
    conn.setTransactionIsolation(level);
    public int getTransactionIsolation() throws SQLException {
    return conn.getTransactionIsolation();
    public SQLWarning getWarnings() throws SQLException {
    return conn.getWarnings();
    public void clearWarnings() throws SQLException {
    conn.clearWarnings();
    Any help at all on this would be greatly appreciated.
    Thanks

    I didn't realize that I was extending an abstract class. Could you point out to me where it is in the code that I am doing this. Also, you tell me to "code this method", but I am not sure how to do that.
    Does that mean that I need to more specifically define the createStatement method like this:
    public java.sql.Statement createStatement(int resultSetType,
    int resultSetConcurrency)
    instead of:
    public Statement createStatement()
    like it is now.
    Please keep in mind that I would rather not declare the whole JDCConnection class as abstract since that means that I can't create a new instance of it from another class .... or am I wrong in my thinking. I really do appreciated any help anyone can give me.
    Thanks

  • Anyone successfully set up connection pool in s1as with ms sql server 2000?

    As subject. Since I have seen a lot of posts about the NoSuchMethodException issue with various dbms providers, and the only "official information" I found thru different forums, google, different sun/javasoft sites and forums are this:
    http://sunsolve.sun.com/pub-cgi/retrieve.pl?doc=fsunone%2F8172&zone_32=NoSuchMethodException&wholewords=on
    Which is wonderfully vague and provide not-so-much useful information...
    As for the information and suggestion posted by other forum members, most or all of them have experience with setting up Oracle, DB2, mySQL, etc., not aimed for MS SQL Server 2000 (you may think, I am just asking for it running MS SQL server with Java... oh well, not my choice)
    I still haven't seen any positive feedbacks on how this exception was caused and how to resolve it. I have literally exhausted all leads on how to fix this issue, so right now I'm only interested to know whether anyone in the forum actually have a successful connection pool set up with MS SQL server 2000.
    My platform:
    w2k sp3
    SunOne app server, update1, JDK 1.4.1
    latest MS SQL 2000 JDBC driver
    This fails with the NoSuchMethodException error:
    try {
    InitialContext ic = new InitialContext();
    DataSource ds = (DataSource) ic.lookup("test_db");
    con = ds.getConnection();
    System.out.println( "con is created -> " + con );
    } catch (Exception ex) {
    System.out.println( "failed -> " + ex.getMessage() );
    This works just fine:
    try {
    Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");
    con = DriverManager.getConnection("jdbc:microsoft:sqlserver://xxx.xxx.xxx.xxx:1433;DatabaseName=testdb;SelectMethod=cursor", "username", "password");
    System.out.println( "con is created -> " + con );
    } catch (Exception ex) {
    System.out.println( "failed is fucked -> " + ex.getMessage() );
    thanks,
    --kuan

    Hi,
    Thanks for pointing out that article, I did not find it previously. After following the directions in the artile and your advise, now dbping seems to be able to connect to SQL server.
    Thank you very much.
    --kuan                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Cannot get a connection, pool error Timeout waiting for idle object

    my connection pool setting is
      maxActive="3" minIdle="2"                maxWait="10000"              removeAbandoed="true" logAbandoned="true"         removeAbandonedTimeout="30"         autoreconnection="true" 
    we have 7 people hitting the group of search functions ,
    about 3 minutes I get
    I got error like
    org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot get a connection, pool error Timeout waiting for idle object         at org.apache.tomcat.dbcp.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:104)         at org.apache.tomcat.dbcp.dbcp.BasicDataSource.getConnection(BasicDataSource.java:880)         at Deferment.showResult.checStudent(showResult.java:135)         at Deferment.showResult.doPost(showResult.java:99)         at javax.servlet.http.HttpServlet.service(HttpServlet.java:710)         at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)         at org.apache.catalina.servlets.InvokerServlet.serveRequest(InvokerServlet.java:402)         at org.apache.catalina.servlets.InvokerServlet.doPost(InvokerServlet.java:170)         at javax.servlet.http.HttpServlet.service(HttpServlet.java:710)         at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    I just wonder
    1) Cannot get a connection, pool error Timeout waiting for idle object-> cause by connection pool leaking or other problem.
    2) Setting the maxactive to -1 ( suggestion from Google) , if I set my connection to ulimit , waht should I put on minIdle="2"
    3) How can I test my connection pool have problem or not ? is
    SHOW PROCESSLIST; tolding me someinformation? I use Mysql
    Thank you!

    I try something like ps2 = conn.prepareStatement(target);
                ps2.setString(1, UNumber); // set input parameter
                rs = ps2.executeQuery();
                sendMail = 0;//how many rows we can find.
                while (rs.next()) {
                    sendMail++;
                ps2.close();
                rs.close();
                conn.close();
      if ((count1 == 0) || (count2 == 0)) {
                    conn.rollback();
                } else {
                    conn.commit();
                    conn.setAutoCommit(true);
                ps.close();
                calstat2.close();
                conn.close();
    calstat = (CallableStatement) conn.prepareCall("{call findStudent}");
                calstat.executeQuery();
                calstat.close();
                conn.close();is that enought? what else I should do to make sure I did close all the connection, after I use it ?
    thank you

  • Error in creating Connection Pool using Oracle Thin Driver

    Hi,
    I am trying to create a connection pool in WS 5.1 with sp #6 using Oracle Thin Driver (oracle.jdbc.driver.OracleDriver) on a Sun box. But I am able to create the pool using weblogic.jdbc.oci.Driver. I get an DBMS Driver exception when I use thin driver. I have LD library path and weblogic class path set correctly. WL shows the following exception :
    weblogic.common.ResourceException: weblogic.common.ResourceException:
    Could not create pool connection. The DBMS driver exception was:
    java.sql.SQLException: Io exception: The Network Adapter could not establish the
    connection
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java)
    at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java)
    at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.java)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java)
    Any help on this is greatly appreciated.
    Thanks,
    Ramu

    Hi Ramu,
    Please post your connection pool setting here. You might have missed some
    port/server info. The driver is unable to connect to the db server here.
    sree
    "Ramu" <[email protected]> wrote in message
    news:3d5bbc3a$[email protected]..
    >
    Yes. I am trying to create a connection pool in weblogic and I have theweblogic
    class path setup correctly. It points to classes111.zip andnls_charset11.zip.
    >
    -Ramu
    "Neo Gigs" <[email protected]> wrote:
    Did you setup the JDBC library classpath correctly?
    For me, e.g. Oracle 7.3.4, the classpath should be:
    export CLASSPATH = /oracle7.3.4/jdbc/lib/classes.zip:%CLASSPATH%
    Noted that the JDBC classpath must be the first classpath element in
    the export
    statement.
    Neo

  • How to configure Connection pooling in 10g AS for OCI client

    Oracle Version: 10.1.3.1
    Operating System: HP UX B.11.23 64 bit OS
    Hello everyone,
    In my connection pools setting of 10g Application server Control my application currently uses JDBC thin client. I need to move to OCI driver. My application uses JDBC 3.0
    Can someone please help me out with the steps?
    Thanks & Regards,
    Prashant

    http://jakarta.apache.org/tomcat/tomcat-5.0-doc/jndi-datasource-examples-howto.html

  • Problem creating connection pool to mysql database

    Please, do not ignore this message and help me, if you have any Idea
    I have Sun Java System Application Server 8.1 installed on my computer, I installed also MySQL Connector/J to access MySql Databases through JDBC
    But now when I try to create new connection pool, an error comes:
    Following parameter were used:
    Name: MYSQL1
    Resource Type: javax.sql.XADataSource
    Database Vendor: mysql
    Datasource Classname: com.mysql.jdbc.Driver
    serverName 192.168.0.152
    port 3306
    networkProtocol
    user testuser
    password ***
    databaseName test
    datasourceName
    After saving and then klicking on Ping button, following error comes: "An error has occurred.
    Operation 'pingConnectionPool' failed in 'resources' Config Mbean. Target exception message: com.mysql.jdbc.Driver"
    I checked the logs of MySql, there was no attempt to access given Database or MYSQL-server at all
    What Am I doing wrong? How can I create MySql connection under Sun Java System Application Server 8.1?
    Any help will be appreciated

    The driver is in right place
    Originally I placed him in wrong directory and got an error, indicationg, that Driver class is not found, but then I corrected it, The problem is in connection to database - it doesn't work.
    I tired to load the same driver into Netbeans and could easyli create a connection to database, but I get it not working ander Sun Application server

  • Regarding connection pooling in java mail

    Hi,
    I’m implementing enterprise application which has ability of sending/receiving emails. I’m using java mail API 14.3. I have implemented the application level connection pooling which keep track of open folders, perform the time-out and other tasks. The connection pooling setting of IMAPStore is default setting. When we run our application in high load we get StoreClosedExcepton (Socket closed exception). My assumption is that when we perform some operation on folder, java mail also sends the noop command for store connection so there is no chance of store getting timeout.
    Is there anything wrong in my understanding?

    JavaMail does not do anything to keep the connection "alive". Servers are free to close
    connections that have been unused for too long (usually 30 minutes). If you need to
    keep the connection alive, you'll need to do some operation periodically, such as checking
    the number of messages in the folder. Even that doesn't guard against server or network
    failures, of course, so you always have to be prepared for a StoreClosedException or
    FolderClosedException.

  • Read data using 2 diff connection pool for same DB folder in physical layer

    Hi All,
    i am using two connection pool which have different dsn connection information (both are directed to different database name or database server)..
    so if i view the data of any table, a prompt will come asking for the connection pool, so how do i automize it....?
    how do i set the different connection pool for different tables?
    please let me know if u need further informtaion to understand my problem..
    thnx...

    thnx Stijn..
    yupe that i know...
    actually i have total of around 300 tables in physical layer (in both the schemas..) , around 12 fact and 100 dimension tables in bmm and same in the presentation layer...
    so i think u can guess how many joins and other stuff, i have made in my bmm layer..
    if now i will start modifying all this it will take lot of time...
    i am just wondering that there is no alternative for this...
    as when i check my data from the physical layer then a prompt ask for the connection pool (i have already made two connection pool..) so there could be some alternative way to automize the default connection pool setting for the tables/schemas folders in case if more than one connection pool exits under the same database in the physical layer...
    isn't it?
    thnx again..

  • 'timezone region not found' while updating connection pool

    Hi Experts,
    We have upgraded our weblogic server from 10.3.3.0(11.1.1.3.0) to 10.3.6.0(11.1.1.6.0)
    All the data sources and connection pools were created in the previous version(11.1.1.3.0) and it worked fine.
    After the upgrade has done, we tried to run a BPEL web service which is using a database connection to get some data.
    Then the below error has thrown out in EM.
    *<part name="summary">*
    *<summary>Exception occured when binding was invoked. Exception occured during invocation of JCA binding: "JCA Binding execute of Reference operation 'Validate_Invoice' failed due to: Could not create/access the TopLink Session. This session is used to connect to the datastore. Caused by Exception [EclipseLink-7060] (Eclipse Persistence Services - 2.3.1.v20111018-r10243): org.eclipse.persistence.exceptions.ValidationException Exception Description: Cannot acquire data source [jdbc/EBSAPPS]. Internal Exception: javax.naming.NameNotFoundException: Unable to resolve 'jdbc.EBSAPPS'. Resolved 'jdbc'; remaining name 'EBSAPPS'. You may need to configure the connection settings in the deployment descriptor (i.e. DbAdapter.rar#META-INF/weblogic-ra.xml) and restart the server. This exception is considered not retriable, likely due to a modelling mistake. ". The invoked JCA adapter raised a resource exception. Please examine the above error message carefully to determine a resolution. </summary>*
    *</part>*
    *<part name="detail">*
    *<detail> Exception Description: Cannot acquire data source [jdbc/EBSAPPS]. Internal Exception: javax.naming.NameNotFoundException: Unable to resolve 'jdbc.EBSAPPS'. Resolved 'jdbc'; remaining name 'EBSAPPS'</detail>*
    *</part>*
    Then I tried to recreate the data source and jndi name.
    Then I got below error while creating connection pool,
    An error occured during activation of changes. Please see the log for details.
    Weblogic.Application.ModuleExeption
    ORA-00604: Error occurred at recursive sql level 1ORA 1882:timezone region not found.
    Database OS level timezone is - SLT
    Weblogic server OS level timezone is - IST
    As i remember above are the timezones there earlier also....
    What can do??
    Thanks in advance....

    Hi Joe,
    Thanks for the reply...
    But it seems answers are given related to 'Application Express Listener'.
    The thing is we got this issue once we upgrade the middleware tier. We cannot do anything on database side. (Remote database)
    The solution should be in middleware, Weblogic server side.
    Our live environment still in the 10.3.3.0 version. It works fine..
    any suggestions ???
    Thanks....

  • Help please: What gets pinged - Connection Pool

    I have a connection pool set up and can "ping" it, but I cannot seem to use it in my application.
    What exactly gets "pinged" (what address)?
    For example, my setup looks like this:
    Data Source Class Name - net.sourceforge.jtds.jdbcx.JtdsDataSource
    Resource Type - javax.sql.XADataSource
    serverName - localhost
    port - 1433
    datasourceName - jdbc/testSqlServerDatasource
    databaseName - testdatabase
    Under the connection pools in the Application Server Admin Console, I can "ping" this connection.
    When I go out to a DOS prompt and try to ping, I cannot. What I tried was:
    ping localhost:1433/jdbc/testSqlServerDatasource
    ping localhost:1433/testSqlServerDatasource
    ping localhost/testSqlServerDatasource
    What exactly should I be able to "ping"?
    Note too that I have a JDBC Resource set up (also using the Admin Console) with a JNDI Name of testSqlServerDatasource.
    Thanks.

    The Ping in connection pool actualy tries to establish the connection with the database for which the configuration is provided in the Connection Pool page. The ping on DOS command is not same with what you actualy do in Connection Pool page. The DOS ping "helps in determining TCP/IP Networks IP address as well as determine issues with the network and assists in resolving them".

  • Principals for connection pools

    We are using a dbms realm for our application on a Bea WeblogicServer
    5.1 on Solaris
    7.
    It seems that it is not possible to use a group as principal for
    a connection pool in the
    weblogic.properties file. This results in a SecurityException when
    a user which is a
    member of the corresponding group tries to get a connection from
    the connection pool.
    Does anybody have similar problems or even better a solution or
    explanation for this
    problem?
    Dieter Arnold
    GFT Technologies AG
    Curiestr. 5
    D-70563 Stuttgart-Vaihingen
    Tel:+49-711-62042-100, Fax: +49-711-62042-101,
    mailto:[email protected]
    http://www.gft.com

    probably not your problem, but groupnames and usernames should
    be unique in weblogic, so if you happen to have a user with the
    same name as the group you are trying to use, it would confuse
    the server.
    but, like I said, probably not your problem.
    -Don
    "Ken Hu" <[email protected]> wrote:
    Dieter,
    I got the same problem as yours when I am working with
    WLS 5.1:
    I have a connection pool set up in the weblogic.properties
    file and a Oracle
    RDBMSRealm. And there is an acl entry in the database
    indicating that a
    certain group has 'reserve' right to the connection pool.
    Then when one user which in fact belongs to that group
    try to use the
    connection pool, he will get SecurityException saying
    that he doesn't has a
    reserve right. But when I change group name of the acl
    entry to that user,
    he is able to use the connection pool. All seems that
    I can't use a group as
    principal in the Connection Pool acl settings.
    But when I used WLS6.0, the problem disappeared. Does
    anybody have any idea?
    Thanks,
    Ken
    Tom Mitchell <[email protected]> wrote in message news:[email protected]..
    Dieter,
    I am not sure I understand what you are trying to do.a group is a
    collection of users and does not have a password. Canyou explain what
    you are trying to accomplish?
    Thanks.
    Dieter Arnold wrote:
    It seems that it is not possible to use a group as
    principal for
    a connection pool in the
    weblogic.properties file. This results in a SecurityExceptionwhen
    a user which is a--
    Tom Mitchell
    [email protected]
    Very Current Stoneham, MA Weather
    http://www.tom.org

  • Credentialling for Connection Pools

    I've been looking at different documents on dev2dev, but being new to the
    security I'm not sure what I'm looking at. That's at least simple humble
    way to say it.
    Is it possible to configure WebLogic (8.1) server to use external
    credentials for a connection pool?
    Thanks,
    Michael

    probably not your problem, but groupnames and usernames should
    be unique in weblogic, so if you happen to have a user with the
    same name as the group you are trying to use, it would confuse
    the server.
    but, like I said, probably not your problem.
    -Don
    "Ken Hu" <[email protected]> wrote:
    Dieter,
    I got the same problem as yours when I am working with
    WLS 5.1:
    I have a connection pool set up in the weblogic.properties
    file and a Oracle
    RDBMSRealm. And there is an acl entry in the database
    indicating that a
    certain group has 'reserve' right to the connection pool.
    Then when one user which in fact belongs to that group
    try to use the
    connection pool, he will get SecurityException saying
    that he doesn't has a
    reserve right. But when I change group name of the acl
    entry to that user,
    he is able to use the connection pool. All seems that
    I can't use a group as
    principal in the Connection Pool acl settings.
    But when I used WLS6.0, the problem disappeared. Does
    anybody have any idea?
    Thanks,
    Ken
    Tom Mitchell <[email protected]> wrote in message news:[email protected]..
    Dieter,
    I am not sure I understand what you are trying to do.a group is a
    collection of users and does not have a password. Canyou explain what
    you are trying to accomplish?
    Thanks.
    Dieter Arnold wrote:
    It seems that it is not possible to use a group as
    principal for
    a connection pool in the
    weblogic.properties file. This results in a SecurityExceptionwhen
    a user which is a--
    Tom Mitchell
    [email protected]
    Very Current Stoneham, MA Weather
    http://www.tom.org

Maybe you are looking for

  • New Apple ID help

    I have a Apple ID but I just bought a iPad for daughter. When I try to set up a new Apple ID for her I get all the way through the set up process and hit submit. It say sorry can't connect to iTunes. Can someone help?

  • Problem with jFreeChart

    Hi I am trying to bring up jFreeChart and have unsuccesfully trying to run the following "hello world" chart example: // ChartTest.java - 05/10/04 // Test jFreeChart package mypackage; import org.jfree.data.*; import org.jfree.chart.*; public class C

  • Quality Module-Transfer posting

    Hi, Why it is not able to post the 321 mvmt in MB1B. If we want to manualy post the stock to unrestricted through mb1b an error of <b>change inspection of stock in QM only</b> appears. Please provide me a solution to manually post the 321 mvmt in MB1

  • Sqlite multi-row insert

    In php & mysql I am used to being able to do multi row inserts into a table using; INSERT INTO table (column1,column2) VALUES (val1,val2),(val3,val4) Is there any Sqlite equivalent? I need to populate around 100 rows on first run of a mobile applicat

  • SQL database...busy....what's it doing?!?

    Today a R/3 sap system is very low in performance. We have checked on the TASK MANAGER and we have seen that it's due to a high use of CPU by SQL DATABASE. So....cause we don't have activate any strange activity on it we would like to monitor which a