Search found 109 matches

by Akatsukami
Wed Nov 25, 2015 2:24 am
Forum: IBM COBOL, GnuCOBOL (OpenCOBOL), OOCobol.
Topic: In COBOL, 01 level takes more memory?
Replies: 8
Views: 2210

Re: In COBOL, 01 level takes more memory?

Of course; the first example specifies eight fields of one byte each, whilst the second specifies only seven.
by Akatsukami
Thu Nov 19, 2015 7:20 pm
Forum: Interview Questions.
Topic: What is difference between SPUFI and QMF?
Replies: 7
Views: 1507

Re: What is difference between SPUFI and QMF?

SPUFI executes dynamic SQL. QMF does also, but allows the output to be formatted, and for the SQL to be embedded in a simple procedural language
by Akatsukami
Thu Nov 19, 2015 7:15 pm
Forum: TSO, ISPF & REXX (Do you still do CLIST?!).
Topic: What are the advantages of REXX over CLISTs under z/OS or CLIST is good enough some times?
Replies: 5
Views: 901

Re: What are the advantages of REXX over CLISTs under z/OS or CLIST is good enough some times?

Thanks Akatsukami! (What is the meaning of your name. I could not type without referring the spelling back and again :) ) It's archaic Japanese for "manifest deity" :D I was told that CLIST is out of support but I have searched it and most the documents from IBM still talk about CLIST. Th...
by Akatsukami
Thu Nov 19, 2015 5:15 pm
Forum: TSO, ISPF & REXX (Do you still do CLIST?!).
Topic: Delete data from column in Edit Mode.
Replies: 9
Views: 3483

Re: Delete data from column in Edit Mode.

Picture strings. Note that in z/OS V2.1 and above you can also use regular expressions.
by Akatsukami
Tue Nov 17, 2015 11:46 pm
Forum: IBM DB2 and IMS DB/DC
Topic: Help in solving SQLCODE -144.
Replies: 4
Views: 820

Re: Help in solving SQLCODE -144.

Execute the troubleshooting actions here.
by Akatsukami
Mon Nov 16, 2015 11:16 pm
Forum: TSO, ISPF & REXX (Do you still do CLIST?!).
Topic: What are the advantages of REXX over CLISTs under z/OS or CLIST is good enough some times?
Replies: 5
Views: 901

Re: What are the advantages of REXX over CLISTs under z/OS or CLIST is good enough some times?

Rexx runs on more platforms than just z/OS; it is non-proprietary and has many features that CLIST lacks. Rexx is to be preferred in developing new programs, and CLISTs should be converted to Rexx as resources allow.
by Akatsukami
Mon Nov 16, 2015 5:48 pm
Forum: Interview Questions.
Topic: COBOL INDEX and subscript question and JCL's KEEP vs CATLG.
Replies: 3
Views: 578

Re: COBOL INDEX and subscript question and JCL's KEEP vs CATLG.

In the first case, there is no difference.

In the second case: in a non-SMS-managed system, KEEP will keep the data set but not make an entry for it in the catalog, so that it must thereafter have its volser used in the JCL to specify its location. In a SMS-managed system, there is no difference.
by Akatsukami
Mon Nov 16, 2015 5:42 pm
Forum: Interview Questions.
Topic: Occurs 0 times in OCCURS DEPENDING ON.
Replies: 4
Views: 861

Re: Occurs 0 times in OCCURS DEPENDING ON.

As the variable-length tables topic of the Enterprise COBOL for z/OS Language Reference manual states:
The value of integer-1 must be greater than or equal to zero
by Akatsukami
Sat Nov 14, 2015 2:53 am
Forum: Other Mainframe Topics, Off-Topics, FAQs.
Topic: What does Ý and ¨mean?
Replies: 2
Views: 1829

Re: What does Ý and ¨mean?

What code page are you using?
by Akatsukami
Fri Nov 13, 2015 8:55 pm
Forum: Interview Questions.
Topic: Question on BIND error.
Replies: 2
Views: 425

Re: Question on BIND error.

A "bind error", to my mind, is anything that causes a bind to be unsuccessful. There are many causes besides contoken mismatch; the two I've seen most frequently are missing DBRMs and invalid tokens (e.g., a reference to a non-existent column).
by Akatsukami
Fri Nov 13, 2015 4:28 pm
Forum: TSO, ISPF & REXX (Do you still do CLIST?!).
Topic: Display a different color in REXX.
Replies: 7
Views: 2383

Re: Display a different color in REXX.

In Rexx, no. However you can do so on an ISPF panel.
by Akatsukami
Thu Nov 12, 2015 5:08 pm
Forum: Interview Questions.
Topic: Referring a test data to production Job.
Replies: 6
Views: 653

Re: Referring a test data to production Job.

I'll take a stance combining that of Mr. Collins and that of Dr. Sorichetti. You should not be able to merely copy data sets from production to test; you should be able to do so only with the proper tools to provide for proper masking of the data. The fix-up should be developed in the test environme...
by Akatsukami
Mon Nov 09, 2015 5:00 pm
Forum: Interview Questions.
Topic: Execute the Job from step11.
Replies: 3
Views: 536

Re: Execute the Job from step11.

Enclose the remaining steps in an IF construct.
by Akatsukami
Sun Nov 08, 2015 6:03 pm
Forum: JCL - Job Control Language.
Topic: S237 ABEND reason code 8
Replies: 5
Views: 1223

Re: S237 ABEND reason code 8

Are you specifying volsers?
by Akatsukami
Thu Oct 29, 2015 5:38 pm
Forum: SyncSort, SyncTool, SyncGener.
Topic: WER235A OUTREC RDW NOT INCLUDED .
Replies: 4
Views: 7898

Re: WER235A OUTREC RDW NOT INCLUDED .

Do not attempt to copy the RDW from the input data set; let Syncsort determine it.
by Akatsukami
Tue Oct 27, 2015 11:19 pm
Forum: JCL - Job Control Language.
Topic: What does Abend S000 U4095 mean?
Replies: 11
Views: 8325

Re: What does Abend S000 U4095 mean?

No, I was merely asking why you did not specify PGM=BXPBATCH on the EXEC card, rather running it as a command in background TSO.
by Akatsukami
Tue Oct 27, 2015 8:46 pm
Forum: JCL - Job Control Language.
Topic: What does Abend S000 U4095 mean?
Replies: 11
Views: 8325

Re: What does Abend S000 U4095 mean?

I am curious; why are you running BPXBATCH through background TSO rather than directly?
by Akatsukami
Mon Oct 26, 2015 7:58 pm
Forum: JCL - Job Control Language.
Topic: Checking the Data existence in a file.
Replies: 6
Views: 821

Re: Checking the Data existence in a file.

Prashant-kun, you'll likely also want to use the NULLOUT opton to have DFSORT or Syncsort give a non-zero return code if the data set is empty.

Go to advanced search