JDBC/ XA  Txns with DB2

Hi,
If we use COM.ibm.db2.jdbc.DB2XADataSource we get the following error
the second time that a (prepared) statement is used:
LOCAL EXCEPTION STACK:
EXCEPTION [TOPLINK-4002] (TopLink - 4.6.0 (Build 417)):
com.webgain.integrator.exceptions.DatabaseException
EXCEPTION DESCRIPTION: java.sql.SQLException: Statement already closed
INTERNAL EXCEPTION: java.sql.SQLException: Statement already closed
ERROR CODE: 0
INTERNAL EXCEPTION STACK:
java.sql.SQLException: Statement already closed
at weblogic.jdbc.jta.Statement.checkIfClosed(Statement.java:84)
at weblogic.jdbc.jta.PreparedStatement.setObject(PreparedStatement.java:247)
Has anybody else succcessfully used this driver to prepare and use
statements multiple times ?
It appears as if statements have been implicitly closed by DB2 ?
Thanks.
Paul.

Hi Paul,
This just means that by the time you call setObject on prepared
statement, it was already closed. That could be a bug resulting
from concurrent access to the ps object. Usually it happens
when one would make a ps either a member of a class accessible
by multiple threads (a "singleton"). I'd check the code such cases.
BTW, which version of weblogic do you use?
Regards,
Slava Imeshev
"Paul Reddin" <[email protected]> wrote in message
news:[email protected]..
Hi,
If we use COM.ibm.db2.jdbc.DB2XADataSource we get the following error
the second time that a (prepared) statement is used:
LOCAL EXCEPTION STACK:
EXCEPTION [TOPLINK-4002] (TopLink - 4.6.0 (Build 417)):
com.webgain.integrator.exceptions.DatabaseException
EXCEPTION DESCRIPTION: java.sql.SQLException: Statement already closed
INTERNAL EXCEPTION: java.sql.SQLException: Statement already closed
ERROR CODE: 0
INTERNAL EXCEPTION STACK:
java.sql.SQLException: Statement already closed
at weblogic.jdbc.jta.Statement.checkIfClosed(Statement.java:84)
atweblogic.jdbc.jta.PreparedStatement.setObject(PreparedStatement.java:247)
>
>
Has anybody else succcessfully used this driver to prepare and use
statements multiple times ?
It appears as if statements have been implicitly closed by DB2 ?
Thanks.
Paul.

Similar Messages

  • Can't deploy content.jar on Portal 8.1 SP4 with DB2

    Greetings,
    Have installed WebLogic Portal 8.1 SP4 with DB2 8.1.8. While deplying content.jar which contains BEA's classes relatives to the content management, the following exception is raised:
    <Oct 19, 2005 2:54:32 PM MEST> <Error> <EJB> <BEA-011076> <Unable to deploy the EJB 'ValueBean' because the database table 'CMV_VALUE' is not accessible. Please ensure that this table exists and is accessible.>
    Of course, the CMV_VALUE table exists and it has records inside. Every thing seems to be okay from the point of view of connection pools, data sources and JNDI names. The deployment works properly with Oracle and PointBase.
    The JDBC driver I'm using is com.ibm.db2.jcc.Db2Driver.
    Many thanks in advance for any help.
    Kind regards,
    Nicolas DUMINIL

    Hello,
    More information is required to help you, and as James suggested, the best option would be to move to EclipseLink instead of TopLink Essentials as EclipseLink is actively being developed and is the JPA 2 RI.
    Running it on the latest EclipseLink ensures that you are not hitting an issue that has already been fixed, and both are based off TopLink.
    Are you deploying an Ear or an exploded directory? If the later, can you try using an Ear?
    Best Regards,
    Chris

  • Java connectivity with db2 in linux

    hi all,
    i wish to know how to connect java with db2 in linux.actually which is the string that is to be included in the following:
    class.forName("//which is the string that is to be included here");
    Connection con("jdbc:????");

    hi all,
    i wish to know how to connect java with db2same as every other database and OS. JDBC is the way.
    in linux.actually which is the string that is to be
    included in the following:
    lass.forName("//which is the string that is to be
    included here");full name of the DB2 JDBD driver class.
    Connection con("jdbc:????");look at the docs for your JDBC driver to figure out what the URL needs to be.
    %

  • How to set up Tomcat4.1.24 datasource with DB2?

    Hi, Guys:
    I try to set up datasource with DB2. I got a sample, but
    I do not know exactly what some tags mean. Could anyone
    who did this show me an example? Thanks a million!
    For example, what is path? what is docBase? In
    <Resource name="jdbc/DefaultDS", what is jdbc/DefaultDS?
    I am using a servlet to call other java classes which
    access database. How do I specify these in Tomcat?
    server.xml:
    <Context path="/test" docBase="test" debug="0"
    reloadable="false" override="true">
    <Resource name="jdbc/DefaultDS" auth="Container"
    type="javax.sql.DataSource"/>
    <ResourceParams name="jdbc/DefaultDS">
    <parameter><name>user</name><value>scott</value></parameter>
    <parameter><name>password</name><value>tiger</value></parameter>
    <parameter><name>driverClassName</name>
    <value>oracle.jdbc.driver.OracleDriver</value></parameter>
    <parameter>
    <name>driverName</name>
    <value>jdbc:oracle:thin:@<YOUR HOST NAME>:1521:<YOUR DB NAME></value>
    </parameter>
    <parameter>
         <name>maxActive</name>
         <value>8</value>
    </parameter>
    <parameter>
         <name>maxIdle</name>
         <value>4</value>
    </parameter>
    </ResourceParams>
    </Context>
    web.xml:
    <resource-ref>
    <res-ref-name>jdbc/DefaultDS</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
    </resource-ref>

    Dear Rick,
    The answers to all of your questions are on this page:
    http://jakarta.apache.org/tomcat/tomcat-4.1-doc/index.html
    Enjoy.
    Kind regards,
    Allan

  • Jdbcrealm with DB2

    Dear all
    I am trying to config jdbcrealm. According to tomcat's instruction, a copy of JDBC driver has to be placed in $CATALINA_HOME/server/lib directory, but only JAR files are recognized.
    With DB2, it provides db2java.zip NOT jar, is it possible to config this? Any help will be appreciated.
    many thanks
    Lu

    When I try to start Tomcat which configured a JDBCRealm to connect to my DB2 database. In server.xml of Tomcat 4, I wrote:
    <Realm className="org.apache.catalina.realm.JDBCRealm" debug="99"
    driverName="COM.ibm.db2.jdbc.app.DB2Driver"
    connectionURL="jdbc:db2:CRISAN"
    connectionName="crisan"
    connectionPassword="parola"
    userTable="users" userNameCol="user_name"
    userCredCol="user_pass"
    userRoleTable="users_roles" roleNameCol="role_name" />
    to configure the Realm. But when i try to start Tomcat, I get an error :
    "Starting service Tomcat-Standalone
    Apache Tomcat/4.0.3
    Catalina.start: LifecycleException: Exception opening database connection: java.sql.SQLException: java.lang.UnsatisfiedLinkError: no db2jdbc in java.library.path
    LifecycleException: Exception opening database connection: java.sql.SQLException: java.lang.UnsatisfiedLinkError: no db2jdbc in java.library.path
         java.lang.Throwable()
         java.lang.Exception()
         org.apache.catalina.LifecycleException(java.lang.String, java.lang.Throwable)
         void org.apache.catalina.realm.JDBCRealm.start()
         void org.apache.catalina.core.ContainerBase.start()
         void org.apache.catalina.core.StandardEngine.start()
         void org.apache.catalina.core.StandardService.start()
         void org.apache.catalina.core.StandardServer.start()
         void org.apache.catalina.startup.Catalina.start()
         void org.apache.catalina.startup.Catalina.execute()
         void org.apache.catalina.startup.Catalina.process(java.lang.String [])
         java.lang.Object java.lang.reflect.Method.invoke(java.lang.Object, java.lang.Object [])
         void org.apache.catalina.startup.Bootstrap.main(java.lang.String [])
         java.lang.Object java.lang.reflect.Method.invoke(java.lang.Object, java.lang.Object [])
         void com.silbergrau.tomcat.TomcatRunner.start(java.lang.String [], java.lang.String)
         void com.silbergrau.tomcat.TomcatRunner.main(java.lang.String [])
         java.lang.Object java.lang.reflect.Method.invoke(java.lang.Object, java.lang.Object [])"
    I would appreciate your help.
    A million thankx in advance,
    Sincerly,
    Marius C.

  • Bad data returned using DSEE6.3: JDBC Data View to DB2 for CHAR fields

    I have created a JDBC dataview to a DB2 database using com.ibm.as400.access.AS400JDBCDriver. When using ldapsearch, the data returned is inconsistent with that which is on the database. The DB2 table has data types of CHAR, DECIMAL, and NUMERIC. For the Decimal and Numeric fields, I am not experiencing a problem. The data returned here maps exactly to that which is on the table. For CHAR fields, I get mixed results.
    When defining JDBC attributes in DSEE, I mapped the sql-syntax attribute accordingly for each corresponding attribute on the DB2 table. As a side note, I also configured each attribute so the ldap-syntax = ces (Case sensitive). Also, I could not find a way to define the length of the char for my JDBC attribute. I'm not sure if there's supposed to be a way that I just haven't figured out yet.
    For the CHAR fields, in some cases I get what's on the data source. In other cases, I don't. I've tried to find a pattern but have been unlucky so far. Many fields with length of just 1 come back ok, but a few of length 1 are incorrect. Some fields bigger then length 1 are ok, but the majority come back with garbage. Coincidently or not, it almost looks like a hash of some sort. I'm wondering if there is a character on the datasource that's causing problems with DSEE figuring out where the end of the string is. I'm using NetBeans to look at the database, but I don't have direct access to the DB2 database at this point to see the data directly.
    Has anyone experienced something simliar or have any suggestions as to further research of this problem?

    Upon further testing I have found that the problem mentioned exists only when using ldapsearch. When I used an ldap browser, the char fields looked as expected.

  • Can I use JDBC 2.x with j2se 1.4

    I am using j2se 1.4 with Oracle 8i. I know j2se 1.4 comes with jdbc 3.0, but Oracle supports jdbc2.0. Can I use jdbc2.0 with j2se 1.4? Is jdbc3.0 backward compatible with jdbc2.0? What is the possible way of using jdbc2.0 with j2se 1.4.

    Should be no problem, I use jdk 1.4 / jdbc 2.0 with a DB2 database at work. Thats just my experience. Typically the JDBC api are backwards compatable. For example, we just switched to JDBC 2.0 from JDBC 1.2, and all of the old code still works.

  • WLS connectionPool failed with DB2 in Mainframe (solaris)

    Hi All,
    I set up IAM DB2 connect client in my win 2003, and connect to DB2 in mainframe
    (Solaris), it works fine with IBM DB2 command processor. When I tried to set up
    a connection pool from WLS8.1 (win2003), I test driver configuration and got the
    following error:
    " [IBM][CLI Driver] SQL0332N There is no available conversion for the source code
    page "1208 UNKNOWN 3" to the target code page "". Reason Code "". SQLSTATE=57017
    I exactly follow the instruction from "programming Weblogic JDBC" (BEA doc): set
    PATH and CLASSPATH in startWeblogic.cmd, ...
    Thanks a lot for any help.
    Weili

    Weili wrote:
    Hi, Joe,
    Thanks a lot for your quick response. Reallly appreciate it.
    We are a big user of DB2 in Mainframe. I installed IBM DB2 connect_7.2 from
    our product CD. I did not run from any java program. Only run from it's
    "command line procssor" (I can run sql statement from here, just like
    Oracle's SQL*Plus. That's means IBM DB2 Client is working on my Win2003.
    Thanks a lot for any help.Ok, but I may need some help from you too. Tell me what the properties are
    for the pool you defined. I'll try to write a simple test program. If you can try to
    find any java jdbc examples in the DB2 connect install, it would simplify things.
    My current suspicion is that the problem is a configuration issue with either
    the IBM driver or DBMS, and most likely the driver.
    You should also try the IBM newsgroups if there is such, for JDBC. Just
    post asking for an explanation of that exception,
    " [IBM][CLI Driver] SQL0332N There is no available conversion for the
    source code page "1208 UNKNOWN 3" to the target code page "".
    Reason Code "". SQLSTATE=57017"
    and you may get the answer quicker than me!
    Joe
    >
    >
    Weili
    Joseph Weinstein <[email protected]> wrote:
    Weili wrote:
    Hi All,
    I set up IAM DB2 connect client in my win 2003, and connect to DB2in mainframe
    (Solaris), it works fine with IBM DB2 command processor. When I triedto set up
    a connection pool from WLS8.1 (win2003), I test driver configurationand got the
    following error:
    " [IBM][CLI Driver] SQL0332N There is no available conversion for thesource code
    page "1208 UNKNOWN 3" to the target code page "". Reason Code "". SQLSTATE=57017
    I exactly follow the instruction from "programming Weblogic JDBC" (BEAdoc): set
    PATH and CLASSPATH in startWeblogic.cmd, ...
    Thanks a lot for any help.Hi. Does IBM's jdbc driver come with any simple example programs? If
    you can get
    IBM's JDBC driver to work on it's own from a simple program, I can certainly
    help
    get our server to do the same.
    Joe
    Weili

  • Does CF actually work with DB2 udb v9.1

    I have posted other messages before and received a few
    replies of documentation on how to configure CF with DB2. Each one
    has a different connection string that must be keyed in.
    i have been fooling around with this for 16 days now and i
    still can not get a connection that will work. I can access the
    data thru DB2 Version 9.1 and via the DSN system connection on the
    windows server. i can connect to the data via ASP but not cold
    fusion i have tried very connection string that has been sent to me
    plus others i have found on the net. i am not sure what any of them
    do or why i even need them, the doc does not even explain what they
    are.or what they do. Connecting to databases is usually a slam
    dunk.
    is there anyone out there that is using DB2 udb v9.1 as a DB
    working with coldfusion enterprise edition? if so did you get it to
    work or did you have to return the Coldfusion product?

    Bear in mind that CF doesn't actually talk to the DB, it
    talks to a JDBC
    driver. It sounds like you're having trouble with the JDBC
    side of
    things... it might help if you ask on a JDBC-specific forum
    or a java one,
    or something? You're more likely to get help. Once you get
    the driver
    working properly, CF will be able to talk to it. I'd be
    surprised if it
    was the CF->JDBC end of things that was amiss; it's more
    likely to be the
    JDBC->DB2 end of things.
    Adam

  • Cf not commuicationing with DB2

    I am running db2 and CF on the same Windows server i know
    that the DSN created by db2 on the server for the db is correct. I
    know this because i can access the data in the db but i can not do
    it thru CF. When i go into CF admin and set up the DSN it knows if
    i make a typig error in any of the parameters i.e server name, db
    name, userid and password. So i have assume that cf know they are
    correct to, but when i test the connection it displays a time out
    message. The test connection works for the DSN on the server and
    DB2 environment but not CF. i have also tried using the local
    connection instead of TCP/IP and i get the same time out message.
    What am i missing ???
    Thanks in advance Bob Balas

    What version of ColdFusion? DB2? DataDirect JDBC drivers? You
    might start with making sure that you have the most recent
    DataDirect JDBC
    drivers.
    You might also want to check this tech note:
    ColdFusion MX: Creating a
    JDBC data source for DB2
    Phil

  • Installation Error of SAP ERP 6.0 SR3 HA MSCS on Win2008 with DB2 9.1

    Hi,
    I am installing ERP 6.0 SR3 HA MSCS on Windows 2008 Ent. Server with DB2 9.1v. In IBM Clustered environment with 2 nodes and a SAN Storage. We are going through the SAP Installation Document.
    1. Here my problem is I am not able to install DB2 with the Domain user. and this domain user having all authorization like (domain admin, domain user, administrators...) whenever I executed this command there is no response from system..
    Drive:\Dump\DB2_LUW_9.1\WINDOWS_AMD64\ESE\image\setup.exe /i en /u Drive:\Dump\DB2_LUW_9.1\WINDOWS_AMD64\ESE\win_ese.rsp /p c:\db2\db2<SID>\db2_software /m
    But the same command I executed in the Local administrator user it is installed successfully.
    2. After this I executed this command db2icrtdummy in the Local Administrator, the command was successful then I executed next command
    C:\Users\Administrator>db2extsec -a BRPLIND\DB2ADMNS_prd -u BRPLIND\DB2USERS
    DB2EXTSEC: Logon failure: unknown user name or bad password.
    So I logged out from administrator and logged in with domain user
    and executed same command but it given following error
    C:\db2\db2prd\db2_software\BIN>db2icrt dummy
    DBI1918N An error occurred when accessing the Windows NT
              registry.
    Explanation:
    DB2 encountered an error when attempting to read or update the
    Windows NT registry of the target machine.
    User Response:
    Ensure that the current logon user account has sufficient
    authority to access the Windows NT registry of the target
    machine.  If the problem persists, contact your IBM service
    representative for assistance.
    so am I going in the correct way or doing any mistake.? from here I am not able to go ahead
    Please suggest me to clear this issue.
    Thanks
    Uday

    Hi,
    I am installing ERP 6.0 SR3 HA MSCS on Windows 2008 Ent. Server with DB2 9.1v. In IBM Clustered environment with 2 nodes and a SAN Storage. We are going through the SAP Installation Document.
    1. Here my problem is I am not able to install DB2 with the Domain user. and this domain user having all authorization like (domain admin, domain user, administrators...) whenever I executed this command there is no response from system..
    Drive:\Dump\DB2_LUW_9.1\WINDOWS_AMD64\ESE\image\setup.exe /i en /u Drive:\Dump\DB2_LUW_9.1\WINDOWS_AMD64\ESE\win_ese.rsp /p c:\db2\db2<SID>\db2_software /m
    But the same command I executed in the Local administrator user it is installed successfully.
    2. After this I executed this command db2icrtdummy in the Local Administrator, the command was successful then I executed next command
    C:\Users\Administrator>db2extsec -a BRPLIND\DB2ADMNS_prd -u BRPLIND\DB2USERS
    DB2EXTSEC: Logon failure: unknown user name or bad password.
    So I logged out from administrator and logged in with domain user
    and executed same command but it given following error
    C:\db2\db2prd\db2_software\BIN>db2icrt dummy
    DBI1918N An error occurred when accessing the Windows NT
              registry.
    Explanation:
    DB2 encountered an error when attempting to read or update the
    Windows NT registry of the target machine.
    User Response:
    Ensure that the current logon user account has sufficient
    authority to access the Windows NT registry of the target
    machine.  If the problem persists, contact your IBM service
    representative for assistance.
    so am I going in the correct way or doing any mistake.? from here I am not able to go ahead
    Please suggest me to clear this issue.
    Thanks
    Uday

  • Error in installing MySap 2004s SR1 with DB2 and IBM AIX.

    Hello Gurus,
    I am installing MySap 2004s SR1 with DB2 and IBM AIX.
    I am facing the following error :
    <b><i>ERROR 2006-11-08 18:33:01
    MDB-01101  Installed Software Level '08.02.0002' is insufficient for this installation ...</i></b>
    <b><i>ERROR 2006-11-08 18:33:01
    MUT-03025  Caught ESAPinstException in Modulecall: ESAPinstException: error text undefined.
    ERROR 2006-11-08 18:33:01
    FCO-00011  The step DB6CheckSoftwareLevel with step key |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_getDBInfo|ind|ind|ind|ind|2|0|NW_DB6_Initialize_Db_Software_Info|ind|ind|ind|ind|3|0|DB6CheckSoftwareLevel was executed with status ERROR .</i></b>
    As this occered in the phase "Install JCE Policy".
    I have even tried to get the latest version But I am not succesfull.
    Please help.
    Regards,
    Chandra Sekhar Reddy.

    Dear Dirk,
    Thanks once again I have installed FP12 and the error is gone.
    But here I have one more error triggered, Here I am pasting the log.
    Please help me.
    <i><b>ERROR 2006-11-08 22:02:36
    FSH-00006  Return value of function getgrnam(dbdevmnt) is The process does not exist..
    ERROR 2006-11-08 22:02:36
    MUT-03025  Caught ESyException in Modulecall: ESAPinstException: error text undefined.
    ERROR 2006-11-08 22:02:36
    FCO-00011  The step createAccounts with step key |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_Users_Create_Do|ind|ind|ind|ind|4|0|createAccounts was executed with status ERROR .</b></i>
    Please help me out.
    Thanks,
    Chandra Sekhar Reddy.

  • SAP ECC 6.0 installation in windows 2008 clustering with db2 ERROR DB21524E

    Dear Sir.,
    Am installing sap ECC 6.0 on windows 2008 clustering with db2.
    I got one error in the phase of Configure the database for mscs. The error is  DB21524E 'FAILED TO CREATE THE RESOURCE DB2 IP PRD' THE CLUSTER NETWORK WAS NOT FOUND .
    DB2_INSTANCE=DB2PRD
    DB2_LOGON_USERNAME=iil\db2prd
    DB2_LOGON_PASSWORD=XXXX
    CLUSTER_NAME=mscs
    GROUP_NAME=DB2 PRD Group
    DB2_NODE=0
    IP_NAME = DB2 IP PRD
    IP_ADDRESS=192.168.16.27
    IP_SUBNET=255.255.0.0
    IP_NETWORK=public
    NETNAME_NAME=DB2 NetName PRD
    NETNAME_VALUE=dbgrp
    NETNAME_DEPENDENCY=DB2 IP PRD
    DISK_NAME=Disk M::
    TARGET_DRVMAP_DISK=Disk M
    Best regards.,
    please help me since am already running late with this installation to run the db2mscs utility to Create resource.
    Best regards.,
    Manjunath G
    Edited by: Manjug77 on Oct 29, 2009 2:45 PM

    Hello Manjunath.
    This looks like a configuration problem.
    Please check if IP_NETWORK is set to the name of your network adapter and
    if your IP_ADDRESS and IP_SUBNET are set to the correct values.
    Note:
    - IP_ADDRESS is a new IP address that is not used by any machine in the network.
    - IP_NETWORK is optional
    If you still get the same error debug your db2mscs.exe-call:
    See the answer from  Adam Wilson:
    Can you run the following and check the output:
    db2mscs -f <path>\db2mscs.cfg -d <path>\debug.txt
    I suspect you may see the following error in the debug.txt:
    Create_IP_Resource fnc_errcode 5045
    If you see the fnc_errcode 5045
    In that case, error 5045 which is a windows error, means
    ERROR_CLUSTER_NETWORK_NOT_FOUND. This error is occuring because windows
    couldn't find the "public network" as indicated by IP_NETWORK.
    Windows couldn't find the MSCS network called "public network". The
    IP_NETWORK parameter must be set to an MSCS Network., so running the
    Cluster Admin GUI and expanding the Cluster Configuration->Network to
    view all MSCS networks that were available and if "public network" was
    one of them.
    However, the parameter IP_NETWORK is optional and you could be commented
    out. In that case the first MSCS network detected by the system was used.
    Best regards,
    Hinnerk Gildhoff

  • SAP ECC 6.0 SR3 Cluster failover not working in AIX with DB2 UDB V9.1 FP6

    Hi Gurus,
    We have installed the SAP ECC 6.0 SR3 High Availability  with DB2 UDB V9.1 FP6 in AIX cluster environment.
    After installation we are doing the cluster fail test.
    Node A
    Application Server
    Mount Points:
    /sapmnt/<SID>
    /usr/sap/<SID>
    /usr/sap/trans
    Node B
    Database Server
    Mount Points:
    /db2//<SID>
    The procedure followed to do the cluster failover:
    We have down the cluster on Node A and all the resources of the Node A has been moved to Node B.
    On Node B when we issued a command to start the SAP. It says u201Cno start profiles foundu201D
    WE have down the cluster on Node B and  moved the Resource from Node B to Node A .  There the db2 User IDu2019s are not available. We have crated the user Idu2019s manually on Node A. however it did not work.
    Please suggest the procedure to start the sap in cluster failover.
    Best Regards
    Sija

    Hi Sija,
    Can i have detailed scenario in your cluster configuration.
    Means you are saying that going to start cluster package manually, if it is right please make sure that you had the same copy of start, instance profiles of NodeA to Node B. Means you need to maintain two startup, two instance profiles for both nodes. In a normal situation it will picik the profile of node A to start databse from A node. But in a failover situation it will not pick node A profile to start, it should pick Node B s profiles.
    Just make a copy from node A and change the profile name accordingly to Node b. Then try to restart.
    Regards
    Nick Loy

  • ECC 6.0 installed in win 2008 server with db2 9

    Dear all.,
    I have newly installed sap erp ecc 6.0 in win 2008 server with db2.The installation is successfully finished and system is up and running.
    But the issue is i could not find anything in the control centre to take backup and to do other activities.
    I tried to add the system in control centre and i tried to run with DB2admin create command.
    Please anybody let me know how to get all the systems and all database in control centre in db2.
    ERROR returned SQL0104N
    best regards.,
    Manjunath G

    db2admin create command is for creating the DAS, I guess no need of it here
    http://publib.boulder.ibm.com/infocenter/db2luw/v8/index.jsp?topic=/com.ibm.db2.udb.doc/admin/t0004960.htm
    On Windows server, start -> run -> db2cmd -> enter
    Does it open db2cmd prompt ?
    If yes, check these and paste the output here in forum
    echo %DB2INSTANCE%
    db2ilist
    db2 list db directory
    'I tried to add the system in control centre'
    Ok, I guess you are trying to add the instance. Try the following link for 'Listing available instances' and 'adding additional instances'
    http://books.google.co.in/books?id=YiO2oUNtXLQC&pg=PA118&lpg=PA118&dq=db2Listingtheinstancesinyoursystem&source=bl&ots=nvegXvy8du&sig=tnac90moH8XIpMOwiOC2RUx68K8&hl=en&ei=v1zHSvuSBY7o6gP2grGnDQ&sa=X&oi=book_result&ct=result&resnum=1#v=onepage&q=db2%20Listing%20the%20instances%20in%20your%20system&f=false

Maybe you are looking for

  • Standard T Code to release list of sales orders in 'Delivery Block'

    Dear All, Is there any standard transaction code in SAP which provides the facility to release list of sales orders in 'Delivery Block'. (Additional information - List of sales orders in 'Delivery block' is available in V.14,however it does not have

  • PDF Preview Handler will not open 1 file

    Hi, I have Office 2013 and Acrobat XI, the PDF Handler works fine on all my files except one. Through our online ordering, I get a confirmation email with E-Order.pdf with every confirmation, worked for a while and now gives me the "This file cannot

  • I can't get applications to install

    i'm having trouble installing R and papers on my powerbook G4. I put a new memory card in thinking that I didn't have enough ram and it still won't install. it will download the installers and when i click on them to open, it briefly opens installer

  • Adding some code before sending the IDOCs

    Hi all, I have one query. When I am doing some transaction system is generating the IDOC with status 03. Now My requirement is to send this IDOCs to the destination system after checking some conditions. So I want to insert to some code in the ALE co

  • All Pam Desktop Data disappearing

    I had to re-install my Palm 6.2.2 software and when I synced with my Palm 650 no data was imported. I'm running Hotsync 7.02. I went to a friends PC and imported my data to a new config on his PC and e-mailed the exported date, contact, tasks and mem