IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

BIND Card for Dynamic Call


IBM Mainframe Forums -> DB2
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
mkk157

Active User


Joined: 17 May 2006
Posts: 310

PostPosted: Thu Jul 16, 2009 5:53 pm
Reply with quote

DB2 Experts,

I have a query regarding the Preperation of Bind Cards.

I have a COBOL-DB2 Program PGM1, It calls subroutines SUB1, SUB2, SUB3 (All Subroutines are DB2 programs) Statically.

I have the Bind Card for the Main Program like this

DSN SYSTEM(DB2PROD)
BIND PACKAGE(ABPD1350_COL) -
MEMBER(PGM1) -
OWNER(DB2PROD) -
QUALIFIER(DB2PROD) -
ACTION(REPLACE) -
VALIDATE(BIND) -
ISOLATION(CS) -
RELEASE(COMMIT) -
CURRENTDATA(NO) -
EXPLAIN(NO) -
DEGREE(ANY)
BIND PACKAGE(ABPD1350_COL) -
MEMBER(SUB1) -
OWNER(DB2PROD) -
QUALIFIER(DB2PROD) -
ACTION(REPLACE) -
VALIDATE(BIND) -
ISOLATION(CS) -
RELEASE(COMMIT) -
CURRENTDATA(NO) -
EXPLAIN(NO) -
DEGREE(ANY)
BIND PACKAGE(ABPD1350_COL) -
MEMBER(SUB2) -
OWNER(DB2PROD) -
QUALIFIER(DB2PROD) -
ACTION(REPLACE) -
VALIDATE(BIND) -
ISOLATION(CS) -
RELEASE(COMMIT) -
CURRENTDATA(NO) -
EXPLAIN(NO) -
DEGREE(ANY)
BIND PACKAGE(ABPD1350_COL) -
MEMBER(SUB3) -
OWNER(DB2PROD) -
QUALIFIER(DB2PROD) -
ACTION(REPLACE) -
VALIDATE(BIND) -
ISOLATION(CS) -
RELEASE(COMMIT) -
CURRENTDATA(NO) -
EXPLAIN(NO) -
DEGREE(ANY)


I understand this Scenario.


Now the Questions is, I want to change the Call to Subroutine to SUB1 from Static to Dynamic. Now In this scenario, What actions are to be taken care of :
Back to top
View user's profile Send private message
Bharath Bhat

Active User


Joined: 20 Mar 2008
Posts: 283
Location: chennai

PostPosted: Thu Jul 16, 2009 6:37 pm
Reply with quote

Change the call in PGM1 to dynamic call. Compile the program. Bind PGM1. Thats all icon_exclaim.gif
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> DB2

 


Similar Topics
Topic Forum Replies
No new posts JCL sort card - get first day and las... JCL & VSAM 9
No new posts Using Dynamic file handler in the Fil... COBOL Programming 2
No new posts Error while running web tool kit REXX... CLIST & REXX 5
No new posts JCL Dynamic System Symbols JCL & VSAM 3
No new posts Call program, directly from panel CLIST & REXX 9
Search our Forums:

Back to Top