• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Websphere - DB2 configuration

 
Greenhorn
Posts: 20
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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
 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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
 
reply
    Bookmark Topic Watch Topic
  • New Topic