DB2 DPF Database Connection

Hello,
I am trying to assess if BOBJ can recognize partitions in the DB2 LUW database it is connecting to. Of late, we have been running into capacity issues, and some of these seem to emerge from the fact that reporting applications (like SAS, BOBJ and OBIEE) are hitting the administrator node by default.
Can we configure BOBJ to go against the data nodes directly? Does BOBJ have the APIs to partition the queries it is issuing against the database?
Thanks in advance!
- B

Sounds like a NO? BOBJ cannot access DB2 LUW with multi-threaded queries? It seems hard to believe since I think BOBJ apparently has ETL capabilities that can operate in partition-aware mode? or is that inaccurate?

Similar Messages

  • Database connection to DB2/400

    We have a need to connect to DB2 running on an AS/400. I have created the database connection in JDev902 and queries using the the SQL Window work great. When I try and use this connection in a BC4J project, I get a No Driver Found error. I have double checked the data source and it appears to be correct. Does anyone know if connecting to an AS/400 works? The doc indicates that JDev will only 'talk' to DB2 running on NT.

    John:
    The doc indicates that JDev will only 'talk' to DB2
    running on NT.We have certified/tested BC4J against Universal DB2 running on NT. While we have not tried it against DB2/400, if you use Universal DB2, it should work.
    'No Driver Found' seems to indicate that the DB2 JDBC driver is missing. Have you had a chance to look at
    http://otn.oracle.com/products/jdev/howtos/bc4j/bc_foreign_db_intro.html
    Thanks.
    Sung

  • MySQL Database Connection (two databases at the same time)

    I have never had to open more than one MySQL database from within the same website before, but I do now.  The website I have is designed where all the content comes from within the main database.  I am building an Inventory system that I want within it's own database, in the event I would ever need to move the application to another server or something, I don't want this data residing in the main database.
    Currently, I open the database connection from within a file called "common.php" that resides in a directory called "lib" that can be accessed from the root directory.  Below is the proposed code that would be placed within the "common.php" file:
    // Define Database Variables
    $dbserver = "127.0.0.1";
    $dbuser  = array('clevelan_user1', 'clevelan_user2');
    $dbpass  = array('P@ssw0rd', 'P@ssw0rd2');
    $dbname  = array('clevelan_database1', 'clevelan_database2');
    // Start Session
    session_start();
    // Connect to Databases
    connectdb($dbserver, $dbuser[0], $dbpass[0], $dbname[0]);
    connectdb2($dbserver, $dbuser[1], $dbpass[1], $dbname[1]);
    // Database 1 Connection
    function connectdb($dbserver, $dbuser, $dbpass, $dbname) {
    // connects to db
      global $connection;
      $connection = @mysql_connect($dbserver, $dbuser, $dbpass) or die ("could not connect to server");
      $db = @mysql_select_db($dbname, $connection) or die ("could not select databsase");
      return $connection;
    // Database 2 Connection
    function connectdb2($dbserver, $dbuser, $dbpass, $dbname) {
    // connects to db
      global $connection2;
      $connection2 = @mysql_connect($dbserver, $dbuser, $dbpass) or die ("could not connect to server");
      $db2 = @mysql_select_db($dbname, $connection2) or die ("could not select databsase");
      return $connection2;
    //End of Code Within the "common.php"
    From within any page of the website, I want to access both connections by placing an include at the top of each page:
    include_once("lib/common.php");
    Currently, when I run the code above, any page within the website (the home page) provides error messages with regards to database connectivity (the pages are looking for there content from within the second database.  It's as if the second database is the only database seen by the website.
    I need help figuring out how I can have two MySQL databases open at the same time (the second database will only be open for short periods of time and then closed).  But the main database is always open.

    Create one project using one copy of the exact tables.
    create 2 different sessions.xml files each pointing to the same project. Set the login information in the sessions.xml files.
    That should work fine.
    Peter

  • Can i use single database connection in a hole java application?

    can i use single database connection in a hole java application?.I have so many forms to use database connection.

    Theoretically you can. Not only theoretically. I've seen lots of application which only uses one database connection (they were using, oracle or mysql)
    The first reply given here assumed that the answer to
    your question depends only on the design of your
    application. That is not true.Yes it's true. Nothing in the original questions says that you aren't allowed to open or close the single connection that you have. It's looks more like the OP is interested in sharing a connection (i.e having a singleton or a connection pool with only one connection)
    It does also depend on the behaviour of the database
    in the background.
    Most databases have a time out for connections that
    are idle Not a problem. Most implementations of connection pools and applications which keeps a connection open have a timer which calls e.g. select * from dual (if you are using oracle) when the connection has been idle for X minutes.
    (some, like db2 on z/OS, even cancel
    connections, that are not idle, if they are open a
    certain amount of time or have reached a given limit
    of cpu seconds.)You would also have that problem if you had a connection pool with several connections.
    In essence: If you have no control over the time
    your application runs (and therefore your connection
    is open) or over type or the configuration of the
    database you are accessing, you can't do it.See above.
    The closest thing to what you want would be using
    PooledConnections, iif those are supported for the
    database you want to access.Not true.
    Kaj

  • How to create database connection using DB2Driver in JDeveloper 10.1.2.1.0?

    I am trying to create a JDeveloper/Data Connection using com.oracle.ias.jdbc.db2.DB2Driver. The driver is registered from a User Libraries: DataDirect JDBC. I have the following class path for the library:
    E:\DataDirect\3.4\lib\YMdb2.jar;E:\DataDirect\3.4\lib\YMbase.jar;E:\DataDirect\3.4\lib\YMutil.jar
    I have no trouble configuring the connection but when I test it and I got ‘No suitable driver Vendor code 0’. What’s wrong? I have successfully created several database connections using Oracle thin driver. This is first time I am using a third party driver. Has any one successfully create a database connection using the com.oracle.ias.jdbc.db2.DB2Driver?

    Hi
    Since the error points to the unavailability of the driver class,can you double check your library claspath entries again.
    I just tried a DB2 connection using the following properties and the connection went through fine:
    Driver class name: com.oracle.ias.jdbc.db2.DB2Driver
    URL: jdbc:merant:db2://<host_name>:50000;DatabaseName=SAMPLE
    Thanks
    Prasanth

  • Database Connection Methods

    I have 2 large databases to which Hyperion connects. One is an Oracle 9i Database, the other is a DB2 8.2 Database. It should also be noted that these databases are also connected to one another (using a federated link (DB2 to Oracle) and using an Oracle Transparent Gateway (Oracle to DB2). I am interested in what is best practice for connecting to these databases. We have considered the following options however please indicate where other preferable options exist.
    1. Using ODBC connection (Oracle at Orahome 92 drivers)
    2. Using ODBC connection (Merant OEM 5.1 32 BIT Oracle Wire Protocol drivers)
    3. Connect using Oracle Net
    However, we have seen some issues using some of the methods stated above.
    A. ODBC connection (Oracle at Orahome 92 drivers)
    --> When selecting from tables on the DB2 database (connecting across the Oracle Transparent Gateway) this fails with error �ORA-1002: fetch out of sequence�
    --> Does not allow the filtering of tables from the catalogue within the OCE.
    Has any body had any similar findings or had any issues with the Merant drivers or Oracle Net?

    If you use "Connect using Oracle Net" this connection
    you need to avoid outer join
    because it supports outer join once only
    Rest depend upon your scenario

  • Homgeneous System Copy with Java and DB2 with database tools.

    Hello,
    we have an single java stack (netweaver 2004s) and tried a system copy with database tools.
    Source System: DP2, dp2adm, db2dp2, sapdp2db
    Target System: SP2, sp2adm, db2sp2, ???
    We followed the documentation "System copy for SAP systems based on sap netweaver 2004s SR1 JAVA. We exported the SDM on the source system made a redirected restore with db tools and tried to install a new target system.
    During the import in the target system using sapinst we get in the
    phase run java migration tool kit the following error message.
    Caused by:
    com.sap.engine.frame.core.configuration.ConfigurationException: Error
    while connecting to DB.
    at
    com.sap.engine.core.configuration.bootstrap.ConfigurationManagerBootstrapImpl.(ConfigurationManagerBootstrapImpl.java:49)
    ... 14 more
    Caused by: com.ibm.db2.jcc.a.SqlException: Connection authorization
    failure occurred. Reason: userid revoked.
    What I didn't understand is, that in the documenation it is mentioned, that you have to use the same java database connect user. But during the installation of the target system (SP2) I cannot change the java database connect user to sapdp2db. I'm only allow to enter sapsp2db. That might then cause the connection problem.
    Regards
    Alexander Türk
    I

    Hi Alexander
    yes , give it a try , but see note
    970518 Hom./Het.System Copy SAP NetWeaver 2004s SR2
    and all other related notes , if it matches your environment .
    Best regards
    dirk

  • Database connecting error after kernel upgrade

    Hi Gurus
    I am tring to upgrade my system kernel from 144 to 179, the system based on AIX 6.1 and DB2 B9.5.2,
    After upgrading kernel SAP is not starting and I found database connection error because which Database is not activated. The startdb command completed successfully. I found I/O error while trying to make db connection.
    I am also tring make SAP up by using old kernel (backup) but getting same error for backup kernel also. Now my system is totaly down.
    So please help me out if you have any idea for this error in db2 database. The start db logs are as given below.
    Wed Jan 21 08:56:07 GMT+05:30 2009
    LOGFILE FOR STARTING DB6 (DB2 UDB)
    Wed Jan 21 08:56:07 GMT+05:30 2009
    checking required environment variables
    DB2INSTANCE  is >db2d11<
    INSTHOME     is >/db2/db2d11<
    DB2DBDFT     is >D11<
    Wed Jan 21 08:56:07 GMT+05:30 2009
    starting database manager
    01/21/2009 08:56:07     0   0   SQL1026N  The database manager is already active.
    SQL1026N  The database manager is already active.
    Database Manager started
    SQL1036C  An I/O error occurred while accessing the database.  SQLSTATE=58030
    Activate database failed
    Wed Jan 21 08:56:08 GMT+05:30 2009
    R3trans connect to the database
    R3trans check finished with return code: 12
    R3trans connect failed
    Notify your SAP/database administrator
    Wed Jan 21 08:56:08 GMT+05:30 2009
    /usr/sap/D11/SYS/exe/run/startdb: Terminating with error code 2
    Please help me out.
    Regards,
    Jayesh.

    Hi Jayesh,
    from your description I would guess that the IO error is not related to the kernel change at all.
    Please have a look at db2diag.log for the real cause of the problem.
    You should be able to reproduce the error with
    db2 activate database <dbname>
    Regards
                   Frank

  • Parallel database connection​s and single query between databases

    Hi, I am looking to execute this SQL query between 2 different databases to update a local database based on data selected from a remote one.
    e.g.:
    - Local database name: db1
    - local database schema: dbo
    - local database table1
    - remote database name: db2
    - remote database schema: dbo
    - Remote database table: table2
    - Query: "SELECT * FROM db2.dbo.table2 WHERE NOT EXISTS(SELECT * FROM db1.dbo.table1)" <- This gets e the record set i would need to insert, and I already have a vi to do that kinda thing.
    How do I go about this?
    Thanks,
    Mohamed

    Mohamed,
    There is a VI in the Database Connectivity Toolkit that allows you to execute SQL queries:  DB Tools Execute Query.
    http://zone.ni.com/reference/en-XX/help/370016E-01​/lvdatabase/db_tools_execute_query/
    Is this what you are looking for?
    Drew T.
    NIC AE Specialist

  • How to backup DPF Database

    Dear Experts,
    We planned to upgrade or BI system from viper to cobra, prior to the activities we'd like to have a full backup of the database. Please provide us the command to run the backup with DPF is utilized, and also the restore command as well.
    Thanks for your kind reply.
    Regards,
    Rudi

    Hello Rudi,
    the command you might want to have ist the following:
    "db2 backup database <db_name> on all dbpartitionnums to /<backup_directory> "
    You're also able to backup specific partitions. To have an overview of all options, please refer to the [DB2 9.5 Documentation page of the BACKUP DB command|http://publib.boulder.ibm.com/infocenter/db2luw/v9r5/topic/com.ibm.db2.luw.admin.cmd.doc/doc/r0001933.html?resultof=%22%62%61%63%6b%75%70%22%20]
    Now the restore. In my opinion at backup time there's on file each partition created. According to that you must restore every partition seperately with the "db2 restore db to </path>" command. ([Refer to this page|http://publib.boulder.ibm.com/infocenter/db2luw/v9r5/topic/com.ibm.db2.luw.admin.cmd.doc/doc/r0001976.html?resultof=%22%52%45%53%54%4f%52%45%22%20%22%72%65%73%74%6f%72%22%20%22%44%41%54%41%42%41%53%45%22%20%22%64%61%74%61%62%61%22%20])
    I will check that and correct it if this might be not true.
    I hopethis helps you for now.
    Best regards,
    Marcel
    Edited by: Marcel Csonka on Oct 8, 2009 8:09 AM

  • Timeout: Tuxedo kills the service but not the database connection

    Hi all,
    I am experiencing some performance problems on my system due an efficient SQL and a Tuxedo improper timeout handling.
    A service is using a "problematic" SQL (we will tune it but it's not the main problem). After 60 seconds from the execution, Tuxido kills the services for a timeout.
    At this point I would like Tuxedo to notify DB2 database as well in order to stop processing the SQL. Instead the SQL continues running on the database (also if the service is killed) and this produce a gradual slow down of the performances.
    In the UBBCONFIG, we are using a service configuration like the following timeout configuration:
    .RESOURCES
    SCANUINIT 5
    SANITYSCAN 6
    BLOCKTIME 12
    .SERVICES
    DEFAULT: SVCTIMEOUT=45
    service1 SVCTIMEOUT=60 TRANTIME=60
    service2 SVCTIMEOUT=60 TRANTIME=60
    Note: not all the services are listed in the .SERVICES section and we are using the default NOTIFY as well as an OPENINFO.
    Can you please help me in finding a configuration to kill both the services and the database?
    Thanks in advance,
    Benedetto

    Hi Benedetto.
    First of all, Tuxedo doesn't kill services, it kills servers. Your UBBCONFIG file specifies three timeouts, BLOCKTIME, SVCTIMEOUT, and TRANTIME.
    BLOCKTIME specifies how long a Tuxedo API that needs a response will wait for that response. If the response isn't received in that period of time, Tuxedo will return TPETIME to the caller. As with any failure, if the request was part of a transaction, the transaction is marked rollback only. Note, this timeout does not affect the request, whether sitting in a server's IPC queue or currently executing in a server.
    SVCTIMEOUT is a much more severe timeout and determines how long Tuxedo will allow a service implementation to execute. If a service implementation doesn't reply within the SVCTIMEOUT period, Tuxedo will issue an OS level KILL request to kill the process. If the server is marked restartable, Tuxedo will then try to restart the server assuming none of the restart limits have been reached. Killing the server causes the request to be lost within the server so the caller will stay blocked until BLOCKTIME is reached at which point the above actions will take place.
    TRANTIME is the amount of time Tuxedo allows a transaction to remain active and viable. When this period expires, Tuxedo will mark the transaction as timed out with the only option being rollback. As well, Tuxedo aborts any API requests that would normally cause messaging to occur, i.e., making a tpcall() within a timed out transaction will fail without any attempt to call the service.
    So in your case, the issue is partially that you have the values of your timeouts in somewhat reverse order. Typically we see BLOCKTIME being the smallest value, with TRANTIME typically larger than BLOCKTIME, and SVCTIMEOUT larger even still, although there are good reasons for exceptions to this guideline. Part of the reasoning behind this is that killing a server is a significant thing and its usually best to try and let the server complete whatever its doing, if if the work has been timed out either due to BLOCKTIME or TRANTIME, since the cost of killing and restarting a server is significant.
    Tuxedo will notify the database of the transaction status when the application finally issues a tpcommit() or a tpabort() request, but not until then. Although, if SVCTIMEOUT is hit, then killing the server should cause the database connection to be lot.
    If you could describe the behavior you are seeing and the relevant portions of your ULOG we can try to make some sense of what is happening.
    Regards,
    Todd Little
    Oracle Tuxedo Chief Architect

  • Backup UDB DPF Databases

    Hi,
    i try to backup a DPF Database via trx db13 but there is no way to make it.
    The standard backup actions shown in the action-pad are only for single partition databases. Because the db13 do not support event-control i am not able to use single jobs for each partition to run one after another. Time oriented control is no
    constitute alternative to backup DPF databases.
    How do you think i should backup the database?
    Best regards, Tino

    Hi Waldemar,
    yes you are right, i can generate a backup command using the "CLP Script Maintenance" in NW2004s. But i am not able to use the recommended commands...
    db2_all "<<+0< db2 backup database lxd to /backup/LXD"
    db2_all "|<<-0< db2 backup database lxd to /backup/LXD"
    ...because the CLP do not support db2_all.
    The SAPGUI delivers the opportunity to generate a script for every node and let this scripts run from the Planning Calendar - but i am not able to let them run in parallel. A bad lapse if i handle with bigger databases.
    The second problem i realize is that it's not supported to define relationsships between the end of one backup (backup catalog node) and the beginning of the other nodes - no event controle implemented!
    My impression is still the same.. i am not able to plan a full backup for DPF databases using the db6cockpit.

  • Host Database Connection

    When I run an applet locally it fails to connect to a DB2 host database. The following error occurs even though the DB2 drivers are included in the CLASSPATH:
    com.ibm.ivj.eab.dab.DAException: NO_SUITABLE_DRIVER Unable to load
    DAMessages ResourceBundle.COM.ibm.db2.jdbc.app.DB2Driver
    Some of the code is shown below. I'd appreciate any ideas on why the connection fails. Thanks very much.
    private com.ibm.ivj.eab.dab.DatastoreJDBC getCRDatastore() {
    return crDatastore;
    public void connectCurrentDatastore() throws com.ibm.ivj.eab.dab.DAException {
    getCRDatastore().setDriver("COM.ibm.db2.jdbc.app.DB2Driver");
    String serverURL = new String("jdbc:db2:tsoca");
    getCRDatastore().setURL(serverURL);
    java.util.Properties userInfo = new java.util.Properties();
    String username = new String("Username");
    pw = "Password";
    userInfo.put("user", username.toString());
    userInfo.put("password", pw);
    getCRDatastore().setProperties(userInfo);
    try {
    getCRDatastore().connect(); <=== ERROR

    I should clarify that I'm trying to run my applet in an IDE called VisualAge. The class of the applet is in the same directory as the DB2 classes. I have one further question though. I've read a number of forum entries suggesting that some JDBC connection problems can be resolved by running the usejdbc2.bat file in the java12 directory after first shutting down all DB2 services. Is it possible that this might resolve the connection problem that I've described? I'm reluctant to run usejdbc2.bat simply because I can now establish a database connection through DB2 and do not want to lose this capability. Any suggestions?
    Thanks very much.

  • MI Client & database connectivity

    Hi,
        I'm developing an MI based demo application and want to connect to database db2 on the mobile device. In the cilent APIs I could not find anything where I can specify the database or option for using serialization for that matter. Has anybody tried to connect with database? Please guide.
    Regards,
    Ravi Sharma
    HCL Technologies
    SAP Netweaver COE

    You can't do it from the API.
    MobileInfrastructure (former MobileEngine) is a <i>framework</i> used for <b>connecting to</b> and <b>extracting data from</b> R/3 backend. There are just two ways to do it - Generic Sync or Smart Sync.
    If you want to do direct database connection, you have to use the Java Platform features, JDBC or what driver you have on the mobile device. Howsoever, this is little wrongly.
    Just curious, what for mobile device you bear in mind? SAPDB and MobileEngine are not designed for PocketPC. )
    Anyway, this is a funny problem, please share your experience about it, when you establish the connection.
    Good luck,
    Todor

  • Installation problem with NW'04 SR1: database connection failed

    Hi all,
    while installing NW '04 SR1 on Windows Server 2003 SP1 and MS SQL Server 2000 SP4 I ran into an error related to the database connection. While performing the step "Load Java Database content" SAPinst crashes with the message
    com.sap.sql.log.OpenSQLException: Could not load class com.ddtek.jdbc.sqlserver.SQLServerDriver.
    The connection to the SLQ Server with e.g. the Query Analyzer is OK. I had a problem with this installation setup before (have a look at the corresponding <a href="https://forums.sdn.sap.com/thread.jspa?threadID=338638&tstart=0">thread</a> ), the JDBC drivers where missing on the installation master but after copying them in the right direction the installation went on with no problem up to this point...
    Has anybody an idea what could have happened here? Is this maybe a problem connected to the one I recently had
    Below I attached the sapinst.log and jload.log with more detailed messages.
    sapinst.log ###########
    INFO 2007-03-12 22:06:24
    Working directory changed to C:\PROGRA1\SAPINS1\NW04SR1\WEBAS_~1\ONE_HOST.
    INFO 2007-03-12 22:06:24
    Output of D:\Java/bin/java.exe '-classpath' './sharedlib/antlr.jar;./sharedlib/exception.jar;./sharedlib/jddi.jar;./sharedlib/jload.jar;./sharedlib/logging.jar;./sharedlib/offlineconfiguration.jar;./sharedlib/opensqlsta.jar;./sharedlib/tc_sec_secstorefs.jar;D:\usr\sap/WPT/JC10/j2ee\jdbc\base.jar;D:\usr\sap/WPT/JC10/j2ee\jdbc\util.jar;D:\usr\sap/WPT/JC10/j2ee\jdbc\sqlserver.jar;D:\usr\sap/WPT/JC10/j2ee\jdbc\spy.jar;D:/usr/sap/WPT/SYS/global/security/lib/tools/iaik_jce_export.jar;D:/usr/sap/WPT/SYS/global/security/lib/tools/iaik_jsse.jar;D:/usr/sap/WPT/SYS/global/security/lib/tools/iaik_smime.jar;D:/usr/sap/WPT/SYS/global/security/lib/tools/iaik_ssl.jar;D:/usr/sap/WPT/SYS/global/security/lib/tools/w3c_http.jar' '-showversion' '-Xmx512m' 'com.sap.inst.jload.Jload' '-sec' 'WPT,jdbc/pool/WPT,D:\usr\sap\WPT\SYS\global/security/data/SecStore.properties,D:\usr\sap\WPT\SYS\global/security/data/SecStore.key' '-dataDir' 'S:/D51030724\J2EE_OSINDEP\J2EE-ENG/JDMP' '-job' 'C:\PROGRA1\SAPINS1\NW04SR1\WEBAS_1\ONE_HOST/IMPORT.XML' '-log' 'C:\PROGRA1\SAPINS1\NW04SR1\WEBAS_1\ONE_HOST/jload.log' is written to the logfile C:\PROGRA1\SAPINS1\NW04SR1\WEBAS_~1\ONE_HOST/jload.java.log.
    WARNING 2007-03-12 22:06:26
    Execution of the command "D:\Java/bin/java.exe '-classpath' './sharedlib/antlr.jar;./sharedlib/exception.jar;./sharedlib/jddi.jar;./sharedlib/jload.jar;./sharedlib/logging.jar;./sharedlib/offlineconfiguration.jar;./sharedlib/opensqlsta.jar;./sharedlib/tc_sec_secstorefs.jar;D:\usr\sap/WPT/JC10/j2ee\jdbc\base.jar;D:\usr\sap/WPT/JC10/j2ee\jdbc\util.jar;D:\usr\sap/WPT/JC10/j2ee\jdbc\sqlserver.jar;D:\usr\sap/WPT/JC10/j2ee\jdbc\spy.jar;D:/usr/sap/WPT/SYS/global/security/lib/tools/iaik_jce_export.jar;D:/usr/sap/WPT/SYS/global/security/lib/tools/iaik_jsse.jar;D:/usr/sap/WPT/SYS/global/security/lib/tools/iaik_smime.jar;D:/usr/sap/WPT/SYS/global/security/lib/tools/iaik_ssl.jar;D:/usr/sap/WPT/SYS/global/security/lib/tools/w3c_http.jar' '-showversion' '-Xmx512m' 'com.sap.inst.jload.Jload' '-sec' 'WPT,jdbc/pool/WPT,D:\usr\sap\WPT\SYS\global/security/data/SecStore.properties,D:\usr\sap\WPT\SYS\global/security/data/SecStore.key' '-dataDir' 'S:/D51030724\J2EE_OSINDEP\J2EE-ENG/JDMP' '-job' 'C:\PROGRA1\SAPINS1\NW04SR1\WEBAS_1\ONE_HOST/IMPORT.XML' '-log' 'C:\PROGRA1\SAPINS1\NW04SR1\WEBAS_1\ONE_HOST/jload.log'" finished with return code 1. Output:
    java version "1.4.2_13"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_13-b06)
    Java HotSpot(TM) Client VM (build 1.4.2_13-b06, mixed mode)
    12.03.2007 22:06:25 com.sap.inst.jload.Jload main
    INFO: Jload -sec WPT,jdbc/pool/WPT,D:\usr\sap\WPT\SYS\global/security/data/SecStore.properties,D:\usr\sap\WPT\SYS\global/security/data/SecStore.key -dataDir S:/D51030724\J2EE_OSINDEP\J2EE-ENG/JDMP -job C:\PROGRA1\SAPINS1\NW04SR1\WEBAS_1\ONE_HOST/IMPORT.XML -log C:\PROGRA1\SAPINS1\NW04SR1\WEBAS_1\ONE_HOST/jload.log
    12.03.2007 22:06:26 com.sap.inst.jload.Jload main
    SCHWERWIEGEND: couldn't connect to DB
    com.sap.sql.log.OpenSQLException: Could not load class com.ddtek.jdbc.sqlserver.SQLServerDriver.
    ERROR 2007-03-12 22:06:26
    CJS-20065  Execution of JLoad tool 'D:\Java/bin/java.exe '-classpath' './sharedlib/antlr.jar;./sharedlib/exception.jar;./sharedlib/jddi.jar;./sharedlib/jload.jar;./sharedlib/logging.jar;./sharedlib/offlineconfiguration.jar;./sharedlib/opensqlsta.jar;./sharedlib/tc_sec_secstorefs.jar;D:\usr\sap/WPT/JC10/j2ee\jdbc\base.jar;D:\usr\sap/WPT/JC10/j2ee\jdbc\util.jar;D:\usr\sap/WPT/JC10/j2ee\jdbc\sqlserver.jar;D:\usr\sap/WPT/JC10/j2ee\jdbc\spy.jar;D:/usr/sap/WPT/SYS/global/security/lib/tools/iaik_jce_export.jar;D:/usr/sap/WPT/SYS/global/security/lib/tools/iaik_jsse.jar;D:/usr/sap/WPT/SYS/global/security/lib/tools/iaik_smime.jar;D:/usr/sap/WPT/SYS/global/security/lib/tools/iaik_ssl.jar;D:/usr/sap/WPT/SYS/global/security/lib/tools/w3c_http.jar' '-showversion' '-Xmx512m' 'com.sap.inst.jload.Jload' '-sec' 'WPT,jdbc/pool/WPT,D:\usr\sap\WPT\SYS\global/security/data/SecStore.properties,D:\usr\sap\WPT\SYS\global/security/data/SecStore.key' '-dataDir' 'S:/D51030724\J2EE_OSINDEP\J2EE-ENG/JDMP' '-job' 'C:\PROGRA1\SAPINS1\NW04SR1\WEBAS_1\ONE_HOST/IMPORT.XML' '-log' 'C:\PROGRA1\SAPINS1\NW04SR1\WEBAS_1\ONE_HOST/jload.log'' aborts with returncode 1. Check 'C:\PROGRA1\SAPINS1\NW04SR1\WEBAS_1\ONE_HOST/jload.log' and 'C:\PROGRA1\SAPINS1\NW04SR1\WEBAS_1\ONE_HOST/jload.java.log' for more information.
    jload.log ###########
    12.03.07 22:06 com.sap.inst.jload.Jload main
    INFO: Jload -sec WPT,jdbc/pool/WPT,D:\usr\sap\WPT\SYS\global/security/data/SecStore.properties,D:\usr\sap\WPT\SYS\global/security/data/SecStore.key -dataDir S:/D51030724\J2EE_OSINDEP\J2EE-ENG/JDMP -job C:\PROGRA1\SAPINS1\NW04SR1\WEBAS_1\ONE_HOST/IMPORT.XML -log C:\PROGRA1\SAPINS1\NW04SR1\WEBAS_1\ONE_HOST/jload.log
    12.03.07 22:06 com.sap.inst.jload.Jload main
    SEVERE: couldn't connect to DB
    com.sap.sql.log.OpenSQLException: Could not load class com.ddtek.jdbc.sqlserver.SQLServerDriver.
    Best regards,
    Bernd

    Hello Kairat,
    Please follow the below mentioned guide to install it.
    Check all the parameters to set and run pre requisite checker before starting installation.
    Keep in mind that before starting any SAP installation you should always run prerequisite checker.
    https://websmp205.sap-ag.de/instguides --> SAP Netweaver -->SAP Netweaver 7.0 -- > Installations --> EHP2
    Regards,
    Amit Barnawal

Maybe you are looking for

  • Scenario with Contract, PO and GRN

    Hi experts, I have a scenario where I'm buying a stock item with different quality. In material master, I'm maintaining it as split valuation. I'll be buying the stock item based on a quantity contract.  In the process, I will create PO with referenc

  • Questions regarding features of BPM

    Hi, I am currently writing my diploma thesis and evaluating different BPM Solutions. One of those is SAP NetWeaver BPM. Although i studied many pdfs and tried to install the trial version, some questions remained. Maybe you can help? I donu2019t need

  • [Solved] Arch Linux in a Solaris branded Zone

    Hello, After having read this article at the Genunix WiKi, I 'd very much like to install Arch Linux (http://204.152.191.100/wiki/index.php/I - anded_zone) in a Solaris branded Zone.  However, the Arch Linux file to download is about two years old no

  • Substitute Customer number on PCA doc

    Hi All, We have a requirement to populate Customer# on the Profit Center document which is not happening through standard program (for rebate processing). We are using 4.7 and PCA module. We are using a FI substitution calling user exit. What we inte

  • How to delete Dynamically created input field UI Element

    Hi all,           I want to delete dynamically created input field and label. Is there any method please tell. Thanks in advance Hemalatha