日志分类:大型机|Mainframe

Efficiency Of A COBOL program

2011年09月22日 12:47 下午  |  分类:大型机|Mainframe

Efficiency Of A COBOL program

Table of Contents

1. Introduction.. 3

2. VALUE clause. 4

3. 01 Double Boundary location.. 4

4. ALPHANUMERIC and COMP work fields. 4

5. DISPLAY NUMERIC work fields. 4

6. COMP-3 work fields. 4

7. OPEN/CLOSE file. 5

8. Internal Tables. 5

9. End of Document 5

全文阅读 »

All about cobol 简易教程

2011年09月22日 12:41 下午  |  分类:大型机|Mainframe

COBOL (COmmon Business Oriented Language)

History.

In 1952, Grace Murray Hopper began a journey that would eventually lead to the language we know as COBOL.

In 1959, an industry-wide team was assembled to formulate a common business programming language. The Conference on Data System Languages (CODASYL)  led by Joe Wegstein of National Bureau of Standards (now National Institute of Standards and Technology) developed a new language, and created the first standardized business computer programming language.

COBOL (Common Business Oriented Language) was developed under the auspices of the U.S. Department of Defense in cooperation with computer manufactures, users and universities. The initial specifications for COBOL were presented in a report of the executive committee of CODASYL committee in April of 1960.   It was designed to be a business problem oriented, machine independent and capable of continuous change and development.

1968 –  American National Standards Institute (ANSI) developed a standard form of the language  known as American National Standard (ANSI) COBOL. This was an attempt to overcome the incompatibilities of the different versions of COBOL.

1974 –  ANSI published a revised version of (ANSI) COBOL

1985 –  ANSI published another revised version

Today — ISO and ANSI committees have completed the features of the latest revision of COBOL 2002.

全文阅读 »

Random Execution of Job Steps

2011年09月22日 12:35 下午  |  分类:大型机|Mainframe

Title

Random Execution of Job Steps.

Abstract

This document provides a generic solution for execution of Job steps randomly without editing the JCL.

 

Problem Description

Executing the steps randomly in a job without editing the JCL is a tedious thing in Mainframes. Suppose for testing a program or JCL itself, we just want to execute some steps that are having changes but they are in the random order.

For example, the JCL given below having 4 steps STEP010, STEP020, STEP030 and STEP040, but if we want to test the XYZ program changes then we just need to execute the steps STEP020 and STEP040, and not STEP010 and STEP030.

//HZ7ZR7E2 JOB (BB16JC,00),

//STEP010    EXEC PGM=SORT   (CREATING INPUT FILE FOR PROGRAM ABC)

//STEP020    EXEC PGM=SORT   (CREATING INPUT FILE FOR PROGRAM XYZ)

//STEP030    EXEC PGM=ABC   (EXECUTING PROGRAM ABC)

//STEP040    EXEC PGM=XYZ   (EXECUTING PROGRAM XYZ)

 

So in order to test the changes in the program XYZ we can do either of the following.

全文阅读 »

China GDC热招职位/ Weekly Hot Jobs

2010年05月19日 7:20 下午  |  分类:大型机|Mainframe

IBM HOT POST

今天在首页新增了一个页面”热门职位“,我会时不时的更新一些岗位信息,这里是GDC员工内部推荐通道。通过这种途径应该比网投简历的强一点。

我们公司每个礼拜都会发出邮件,希望员工内部推荐优秀的人才,一旦被选上,推荐者有一笔不错的奖金。

各位走过路过的IT人士,如果有合适的岗位,不妨试一试吧。

本周几大急缺岗位如下:

更多的职位信息请移步:http://www.newcoin.info/ibm-popular-posts

HOT Test Plan
BU: AS
Requisition No: GBS-0244258
Location:Wuhan
Job Requirements (skills/experiences):
Above 3 years automation testing and test execution experiences.
More than 7 years IT experiences with 3 years testing design and requirement analysis or management.
Good command of testing methodology and familiar with testing tool, automation test,  performance test, load/stress test, winrunner, loadrunner, QTP, rational etc.
Required SDLC, SAP, or rational funcational test(RFT), and ability to develop scripts in RFT.
DB2, DW,MF capability plus.
Can afford long term travelling and shift work
Fluent English communicating with global team

全文阅读 »

Shell编程基础教程

2009年09月4日 12:43 下午  |  分类:大型机|Mainframe

第一章:概述

一、 shell 概念
shell 是unix操作系统提供的命令解释器,是用户与操作系统之间的接口。当你注册到unix系统的任何一个用户,系统都会为你启动一个shell,shell会一直等待你的指令,当你输入的命令被确认后,shell便对其进行解释并产生系统调用,完成相应的操作。然后,又进入等待状态。

换句话说,当你一登录到unix系统,就开始了与shell的对话。在此期间,你不断与shell交互,不断地对shell发出命令来指挥系统完成各种工作直到你退出系统。
全文阅读 »

Pages: 1 2 3 4 5 6 7 Next