File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes Websphere and the fly likes Websphere - DB2 configuration Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Products » Websphere
Reply Bookmark "Websphere - DB2 configuration" Watch "Websphere - DB2 configuration" New topic
Author

Websphere - DB2 configuration

Matt Anderson
Greenhorn

Joined: Apr 16, 2002
Posts: 20
Does anyone know of a book that shows how to configure DB2 for the following.
1. To talk to a session database located on a remote server
2. To configure DB2 to talk to database on OS/390.
I want something that i can implement immediately without having to read thru a thick book.
Any help will be appreciated.
Matt


Matt Anderson
Joao L. Pereira
Greenhorn

Joined: Jan 16, 2002
Posts: 3
Configure a DB2 conn to OS/390 (Quick and nasty):
1. Install DB2 Connect
2. Perform the following
db2 catalog tcpip node <node_name> remote <mainframe_ip_or_name> server <port_>
db2 catalog db <db> as <mainframe_db> at node <node_name> authentication dcs
db2 catalog dcs db <db> as <mainframe_db>
db2 terminate
3. Create your datasource pointing to <db>
using the COM.ibm.db2.jdbc.DB2ConnectionPoolDataSource
driver
4. Have fun
Rgrds
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Websphere - DB2 configuration
 
Similar Threads
JDBC Book
Spring Book Question!
Configuring Datasource to use a default schema
DB2 connection error
Connect to DB2 from VAJ Test environment !