0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

JCL学習②

Posted at

DDステートメントについて

// DD名 DD パラメータ

パラメータとは
下記がパラメータです。

パラメータ 意味
DSN= 使用するデータセット名(ファイル名)
DISP= データセットの利用モードと終了後の処理方法(SHR/OLD/NEW など)
UNIT= 装置の種類(SYSDA =ディスクなど)
SPACE= 新規作成時の容量指定(TRK, CYL など)
SYSOUT= 出力の送り先(スプールへ出力)

使い方

// TESTDD DD DSN=TESTDETA,
//           DISP=(NEW,CATGL,DELETE),
//           UNIT=SYSDA,
//           SYSOUT=*

覚え方
・「DDはデータセットの定義」と覚える。
・パラメータは「どう使うかの設定項目」って考える。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?