Search found 4 matches

by mmcrew
Mon Jun 20, 2016 10:35 pm
Forum: Interview Questions.
Topic: Use of Dummy Utility and what it does?
Replies: 17
Views: 1675

Re: Use of Dummy Utility and what it does?

When you talk about "dummy utilities", remember the following:

 IEFBR14 does not open the DD, so it's good for deleting, but not for allocating.

Use IEBGENER with SYSUT1 dummied and SYSUT2 with the correct DCB.
Gene
by mmcrew
Fri Jan 08, 2016 3:46 am
Forum: IBM DB2 and IMS DB/DC
Topic: Getting SQLCODE -927 with a new COBOL-DB2 program.
Replies: 3
Views: 2430

Re: Getting SQLCODE -927 with a new COBOL-DB2 program.

Specifically, try:

Code: Select all

//SYSTSIN    DD *
  DSN SYSTEM(your db2 subsystem id)
  RUN PROGRAM(your program id) -
      PLAN(plan of the sub program) -
      PARM('parameters that your program wants')
  END
/*
by mmcrew
Thu Jan 07, 2016 9:24 am
Forum: TSO, ISPF & REXX (Do you still do CLIST?!).
Topic: Bring back the earlier version of dataset.
Replies: 6
Views: 825

Re: Bring back the earlier version of dataset.

Try the TSO command HRECOVER. For options, try 'HELP HRECOVER', or 'TSO HELP RECOVER'.
by mmcrew
Thu Jan 07, 2016 7:02 am
Forum: IBM DB2 and IMS DB/DC
Topic: COMMIT in COBOL-DB2 program and Xpeditor.
Replies: 6
Views: 1106

Re: COMMIT in COBOL-DB2 program and Xpeditor.

In a batch DB2 program, if you don't explicitly execute a COMMIT or ROLLBACK, a COMMIT is performed when the highest level program issues a GOBACK. In a CICS/DB2 program, if you don't explicitly execute a COMMIT or ROLLBACK, a COMMIT is performed when the highest level program issues a EXEC CICS RET...

Go to advanced search