473,326 Members | 2,111 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,326 software developers and data experts.

new to DB2 and CLI0621E Unsupported JDBC server configuration.

Hi,

I'm currently trying to learn DB2. I have the following version
below installed on my server machine on my little LAN. However when I
try to connect to it from my client machine, I receive the following
error:

[IBM][JDBC Driver]CLI0621E Unsupported JDBC server configuration.

Everything I've read on the net though pertains to a Unix based setup
with DB 7.x. I'm running the DB2 on a Windows 2K Server machine with
SP4. The client machine is Windows 2K Pro with SP4. From what I was
told before was the setting uses the thin JDBC Driver, which means
that clients do not have to have DB2 Client Software installed, no
client configuration is required, and all platforms are supported.
However, the DB2 Server MUST be running the DB2 JDBC server which the
services show that it is.

Can anybody help me figure this one out?

================================================== ==========
About DB2 Administration Tools Environment
================================================== ==========
DB2 administration tools level:
Product identifier SQL08013
Level identifier 02040106
Level DB2 v8.1.3.132
Build level s030728
PTF WR21324
================================================== ==========
Java development kit (JDK):
Level IBM Corporation 1.3.1
================================================== ==========
Nov 12 '05 #1
3 6038
Hello,
it seems to me that you are using the APP driver. In this case you
have to use the driver-package supplied with the connected client.
Just try this or even better use the JCC driver, where you do not need
any client installation.

Joerg

st**********@hotmail.com (Steverino) wrote in message news:<39**************************@posting.google. com>...
Hi,

I'm currently trying to learn DB2. I have the following version
below installed on my server machine on my little LAN. However when I
try to connect to it from my client machine, I receive the following
error:

[IBM][JDBC Driver]CLI0621E Unsupported JDBC server configuration.

Everything I've read on the net though pertains to a Unix based setup
with DB 7.x. I'm running the DB2 on a Windows 2K Server machine with
SP4. The client machine is Windows 2K Pro with SP4. From what I was
told before was the setting uses the thin JDBC Driver, which means
that clients do not have to have DB2 Client Software installed, no
client configuration is required, and all platforms are supported.
However, the DB2 Server MUST be running the DB2 JDBC server which the
services show that it is.

Can anybody help me figure this one out?

================================================== ==========
About DB2 Administration Tools Environment
================================================== ==========
DB2 administration tools level:
Product identifier SQL08013
Level identifier 02040106
Level DB2 v8.1.3.132
Build level s030728
PTF WR21324
================================================== ==========
Java development kit (JDK):
Level IBM Corporation 1.3.1
================================================== ==========

Nov 12 '05 #2
It sounds like you are intending to use the Type 3 ("net") driver. Make
sure the driver your application specifiies is
"COM.ibm.db2.jdbc.net.DB2Driver", and the URL your application specifies is
of the form "jdbc:db2://hostname:portnum/jdbc" (where "hostname" and
"portnum" are actual values, not literals).

Or, as Joerg suggests, you might want to try using the Universal driver
(a.k.a., the "JCC" or "Java Combined Client" driver). I'm sure you can find
it on the web site.
--
Larry Menard
IBM Workstation Database (DB2) Information Development, Samples Coordinator
Defender of Geese and of All Things Natural
"joerg" <jo**********@publica.de> wrote in message
news:47**************************@posting.google.c om...
Hello,
it seems to me that you are using the APP driver. In this case you
have to use the driver-package supplied with the connected client.
Just try this or even better use the JCC driver, where you do not need
any client installation.

Joerg

st**********@hotmail.com (Steverino) wrote in message

news:<39**************************@posting.google. com>...
Hi,

I'm currently trying to learn DB2. I have the following version
below installed on my server machine on my little LAN. However when I
try to connect to it from my client machine, I receive the following
error:

[IBM][JDBC Driver]CLI0621E Unsupported JDBC server configuration.

Everything I've read on the net though pertains to a Unix based setup
with DB 7.x. I'm running the DB2 on a Windows 2K Server machine with
SP4. The client machine is Windows 2K Pro with SP4. From what I was
told before was the setting uses the thin JDBC Driver, which means
that clients do not have to have DB2 Client Software installed, no
client configuration is required, and all platforms are supported.
However, the DB2 Server MUST be running the DB2 JDBC server which the
services show that it is.

Can anybody help me figure this one out?

================================================== ==========
About DB2 Administration Tools Environment
================================================== ==========
DB2 administration tools level:
Product identifier SQL08013
Level identifier 02040106
Level DB2 v8.1.3.132
Build level s030728
PTF WR21324
================================================== ==========
Java development kit (JDK):
Level IBM Corporation 1.3.1
================================================== ==========

Nov 12 '05 #3
Make sure that you are using JDBC ver 2 on your server. The way IBM
packages DB2 you have to specifically run the 'usejdbc2' bat file on
your server. Then when you run DB2JSTRT it will use the right libraries.
I don't remember if WIN requires a reboot or you just need to stop and
start the appropriate DB2 services from the services panel. I have seen
this message trying to access a ver 7 DB2 (on AIX) with jdbc type 3
where the instance hadn't been set up for JDBC ver 2. If this doesn't
help a little more info on how your client application accesses the
database would help.

joerg wrote:
Hello,
it seems to me that you are using the APP driver. In this case you
have to use the driver-package supplied with the connected client.
Just try this or even better use the JCC driver, where you do not need
any client installation.

Joerg

st**********@hotmail.com (Steverino) wrote in message news:<39**************************@posting.google. com>...
Hi,

I'm currently trying to learn DB2. I have the following version
below installed on my server machine on my little LAN. However when I
try to connect to it from my client machine, I receive the following
error:

[IBM][JDBC Driver]CLI0621E Unsupported JDBC server configuration.

Everything I've read on the net though pertains to a Unix based setup
with DB 7.x. I'm running the DB2 on a Windows 2K Server machine with
SP4. The client machine is Windows 2K Pro with SP4. From what I was
told before was the setting uses the thin JDBC Driver, which means
that clients do not have to have DB2 Client Software installed, no
client configuration is required, and all platforms are supported.
However, the DB2 Server MUST be running the DB2 JDBC server which the
services show that it is.

Can anybody help me figure this one out?

================================================ ============
About DB2 Administration Tools Environment
================================================ ============
DB2 administration tools level:
Product identifier SQL08013
Level identifier 02040106
Level DB2 v8.1.3.132
Build level s030728
PTF WR21324
================================================ ============
Java development kit (JDK):
Level IBM Corporation 1.3.1
================================================ ============


Nov 12 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: JShurmatz | last post by:
If anyone can shed some light on this problem I would greatly appreciate it. I am unsuccessfully trying to use a database connnection retrieved from a pool configured using Java System Web...
0
by: Nils Valentin | last post by:
Hi MySQL Fans ;-), Is it possible that the 3.08 series allows to connect to 4.0.14 versions but not to the 4.1 alpha-versions ? I get belows error when tryig to connect from DbVisualizer which...
2
by: Marios Koumides | last post by:
Hello guys I have question..... I wrote a Java program to connect to MySQL using JDBC ...and it works fine...it connects and it does what is supposed to do.....however when I use the same...
6
by: Swami | last post by:
Hi, I have installed MQ SQL Server 2000 on my laptop and trying to use SPRINTA 2000 JDBC Driver (inetmssql.jar) to connect to the local db. I wrote a sample Java app to test the connection and I...
1
by: Prithpal | last post by:
Please help!!! We had a sql server 7 DB, with a char 8 field, in which some of the data was only 7 characters in length. Via a type 4 JDBC driver, we got back a NON space padded String. This...
9
by: dunleav1 | last post by:
Does enabling/disabling Data Execution Prevention have a performance impact on SQL 2000 or SQL 2005? For SQL best performance - how should I configure for: Processor Scheduling: Programs or...
2
by: bevis | last post by:
I'm new to sql server and mysql but this seems like it should be a pretty straight forward jdbc connection. But I have spent almost 2 days just trying to get a jdbc connection. Please help if you...
3
by: Anoop | last post by:
Is it true that there are no type 4 jdbc drivers to connect to a DB2 server v7.1? The DB2 server is hosted on ACF2 (OS/390). We would be connecting from windows and solaris boxes. If it is true,...
1
by: ashi1290 | last post by:
I am getting this error..... Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/commons/logging/LogFactory at org.hibernate.cfg.Configuration.<clinit>(Configuration.java:120)...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.