• JCL: DFSORT, IFTHEN, Overlay,When,HIT

    Here is a sample DFSORT JCL on how to use IFTHEN, OVERLAY, WHEN and HIT. How to Use IFTHEN, OVERLAY, WHEN, HIT in DFSORT.. //SYSIN     DD     * INREC  IFTHEN =(WHEN=(10,1,CH,EQ’C’),OVERLAY(10:C’+’),HIT=NEXT), IFTHEN=(WHEN=(27,1,CH,EQ’C’),OVERLAY(27:C’+’),HIT=NEXT), and so on SORT FIELDS=COPY OUTREC FIELDS=(1,3122) // Note: HIT=NEXT, tells that to process next IFTHEN Recent Posts

  • DFSORT: OUTFIL,OUTREC,INREC, INCLUDE

    There is a simple way that you will become good in DFSORT. Follow these tips to understand keywords present in DFSORT clearly. Read more.

  • Become a Senior Developer: A Clear Path to Career Growth

    Explore key tips to grow your software development career—from junior roles to leadership—with practical advice on skills, mindset, and smart moves.

  • DB2 SQL Error Codes You Always Need

    DB2 SQL error codes given for interviews as well as to use in your development or production support project.

  • DB2 Rowset to Fetch Multi-rows Easily

    WITH ROWSET POSITIONING specifies that the cursor can be used with either row-positioned or rowset-positioned FETCH statements. This cursor can be used to return either a single row or multiple rows, as a rowset, with a single FETCH statement

  • 12 Tricks to Gain More Skills Freelancing Jobs

    There are many other ways an IT developer can do as a alternative to his current job. Read more.

  • DB2- Data Security is not a Technology Problem

    As you work to protect your data in this day-and-age of data breaches and regulatory compliance, technology and software solutions to data and database security spring to the top of most people’s minds. This is to be expected because, after all, most of our data is stored on computers so technology and software are required to protect the…

  • DB2-Free Certificate from Craig Mullins

    DB2 free tutorials from Craig mullins

  • QMF: EXPORT Report to Dataset

    The best and simple command flow which helps you to get Report from QMF tool.

  • People Skills- Grow in your Career and become Rich

    10steps    Just read this PDF.

  • How to Create VB file Using Varying Clause in COBOL

    Sample COBOL program VB-files logic to write Record Varying clause correctly.

  • COBOL- GOBACK and STOP RUN

    Both are correct. Goback and STOP RUN you can use in main programs. Functionally there is no difference. Goback has some special context uses. we can use in subprogram and IMS programs as well. Stoprun we can use only in main program. We can not use in subprogram. So, GOBACK i feel is multi purpose. Welcome your comments.