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

Cobol-DB2 run JCL


IBM Mainframe Forums -> Mainframe Interview Questions
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
yadagiri.p

New User


Joined: 01 Sep 2005
Posts: 10
Location: Bangalore

PostPosted: Mon Jun 12, 2006 7:34 pm
Reply with quote

Hi

pls send cobol-db2 run jcl and process

regards
yadagiri
Back to top
View user's profile Send private message
twissi

Active User


Joined: 01 Aug 2005
Posts: 105
Location: Somerset, NJ

PostPosted: Wed Jun 14, 2006 6:07 pm
Reply with quote

Hi Yadagiri,

It looks as follows, may vary slightly with the type of cobol you use:

Code:
//STEP010  EXEC PGM=IKJEFT01,DYNAMNBR=20               
//STEPLIB  DD DSN=your.load.lib.here,DISP=SHR         
//         DD DSN=SYS1.DSNDSNH.SDSNEXIT,DISP=SHR       
//         DD DSN=SYS1.DSNDSNH.SDSNLOAD,DISP=SHR       
//SYSTSIN  DD *                                       
  DSN SYSTEM(DSNH)                                     
  RUN PROGRAM(load_module) PLAN(plan_name)                 
  END                                                 
/*                                                     
//DD1          DD DUMMY                                   
//DD2         DD DUMMY                                   


Process:

Bind the DBRM of the program to database you want the program to be run against using plan_name.

Please get back to me/us in case of any questions.

Cheers, Twissi.
Back to top
View user's profile Send private message
yadagiri.p

New User


Joined: 01 Sep 2005
Posts: 10
Location: Bangalore

PostPosted: Thu Jun 15, 2006 6:26 pm
Reply with quote

Ok,
I have one more doubt,that is

What difference STEPLIB load library and DNN LOAD-MODULE

DSN RUN PROGRAM( )
PLAN ( )
LIBNAMELOAD-MODULE)


Regards
Yadagiri
Back to top
View user's profile Send private message
twissi

Active User


Joined: 01 Aug 2005
Posts: 105
Location: Somerset, NJ

PostPosted: Mon Jun 19, 2006 7:55 pm
Reply with quote

Hi Yadagiri,

Sorry to be late.

The STEPLIB is the library where you've the load module of your program.
And in SYSTSIN you mention the member name (RUN PROGRAM (member))
PLAN(member) contains the Plan_Name you used for binding the SQL statements (DBRM) of the program to the database you want the program to run against.

Hope I've answered your questions.
Cheers, Twissi.
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 -> Mainframe Interview Questions

 


Similar Topics
Topic Forum Replies
No new posts Replace each space in cobol string wi... COBOL Programming 2
No new posts COBOL -Linkage Section-Case Sensitive COBOL Programming 1
No new posts COBOL ZOS Web Enablement Toolkit HTTP... COBOL Programming 0
No new posts Calling DFSORT from Cobol, using OUTF... DFSORT/ICETOOL 5
No new posts Generate random number from range of ... COBOL Programming 3
Search our Forums:

Back to Top