Search found 27 matches

by RaOne
Thu Nov 16, 2017 9:24 pm
Forum: JCL - Job Control Language.
Topic: Capture the JSCAN in a dataset.
Replies: 4
Views: 839

Re: Capture the JSCAN in a dataset.

Thanks Enrico.There in that topic it is written that Does the browse screen show the dataset name being browsed? If so, swap screen, allocate a new dataset and copy the one being browsed. It shows the dataset name browsed but when I go to another session to copy the dataset in ISPF 3.4, the dataset ...
by RaOne
Thu Nov 16, 2017 9:20 pm
Forum: Other Mainframe Topics, Off-Topics, FAQs.
Topic: Warning about Dataset migrated/archived.
Replies: 7
Views: 954

Re: Warning about Dataset migrated/archived.

Robert Sample wrote: Tue Oct 31, 2017 11:45 pmRaOne, your answer assumes that the person knows which data set(s) is(are) migrated. Since this was NOT stated in the original post, you can't really assume it -- perhaps all that shows up is the message without any indication as to which data set the message refers to.
Yes you are correct Robert.
by RaOne
Tue Oct 31, 2017 10:58 pm
Forum: Other Mainframe Topics, Off-Topics, FAQs.
Topic: Warning about Dataset migrated/archived.
Replies: 7
Views: 954

Re: Warning about Dataset migrated/archived.

You can write HRECALL in front of the dataset in ISPF 3.4. This will recall the dataset. This should remove the warning message.
by RaOne
Tue Oct 31, 2017 10:55 pm
Forum: JCL - Job Control Language.
Topic: Capture the JSCAN in a dataset.
Replies: 4
Views: 839

Capture the JSCAN in a dataset.

Hi, As one of the test case I need to capture the JSCAN output of the Job to a data set. But I can not do that as the moment I do JSCAN it looks like browse option of viewing file. It does not allow to copy this. It shows a temporary name of the JSCAN dataset but that is available in 3.4 so can't co...
by RaOne
Thu Jul 07, 2016 12:30 pm
Forum: IBM DB2 and IMS DB/DC
Topic: GROUP BY and ORDER BY for IMS DB?
Replies: 9
Views: 1149

Re: GROUP BY and ORDER BY for IMS DB?

There is a mistake, I wanted to say NOT. I could NOT find an equivalent of ORDER BY.
by RaOne
Thu Jul 07, 2016 12:29 pm
Forum: Thought of the Day, General Talk & Jokes.
Topic: Fun!
Replies: 1
Views: 354

Fun!

The other night I was invited out for a night with the “girls.” I told my husband that I would be home by midnight, “I promise!” Well, the hours passed and the margaritas went down way too easily. Around 3 a.m., a bit loaded, I headed for home. Just as I got in the door, the cuckoo clock in the hall...
by RaOne
Tue Jul 05, 2016 12:26 pm
Forum: IBM DB2 and IMS DB/DC
Topic: GROUP BY and ORDER BY for IMS DB?
Replies: 9
Views: 1149

Re: GROUP BY and ORDER BY for IMS DB?

IMS stores the data in segments. The smallest unit which you can get from the IMS database is a segment. Segments have fields, defined for your system. If you want to perform some operation on the field, the only option you are left with is to play with fields ... in other words, and as far this th...
by RaOne
Tue Jul 05, 2016 12:23 pm
Forum: IBM COBOL, GnuCOBOL (OpenCOBOL), OOCobol.
Topic: How to remove tag lines in COBOL using ISPF commands?
Replies: 17
Views: 11443

Re: How to remove tag lines in COBOL using ISPF commands?

No not like that. There is one more column before the colmn which has 'tags' like #RAM etc which has got line number. And I just want to remove the tags not the entire line of code. they are part of the audit trail of changes made to the program. Many of them no longer make any sense and some progra...
by RaOne
Tue Jul 05, 2016 12:20 pm
Forum: CICS, Middleware and MQ Series.
Topic: Does CICS takes care of open/close of files?
Replies: 6
Views: 1247

Re: Does CICS takes care of open/close of files?

CICS has two options for file open -- at CICS start up or at first reference.  Once opened, the file will remain open until CICS shuts down, or the file is explicitly closed by a program, or a user closes it via the CEMT command.  You will not see any file opens or closes while debugging. Thanks fo...
by RaOne
Tue Jul 05, 2016 12:19 pm
Forum: Introduce Yourself and Share Your IT Experience.
Topic: RaOne I am!
Replies: 2
Views: 263

Re: RaOne I am!

Thanks for the welcome. I just wanted to be anonymous. :D
by RaOne
Tue Jun 28, 2016 5:29 pm
Forum: SMS & VSAM and BDAM, BSAM, QSAM, BPAM, ISAM, OAM.
Topic: How to know owner of data-set?
Replies: 6
Views: 4010

Re: How to know owner of data-set?

If I have a good reason to know who has the access to data and who has created it, if You have a good reason to know "who can do what with a protected resource" the best source of info is the security support group, they are involved in user/resource management and they usually know thing...
by RaOne
Tue Jun 28, 2016 5:28 pm
Forum: CICS, Middleware and MQ Series.
Topic: Does CICS takes care of open/close of files?
Replies: 6
Views: 1247

Re: Does CICS takes care of open/close of files?

CICS handles all file opens and closes.  So your CICS COBOL program, for example, will not have a SELECT nor an FD nor OPEN or CLOSE verbs for any files. That I understand that CICS program will not have SELECT, FD, OPEN and CLOSE. What I was asking is when I was debugging there will be CALL to ope...
by RaOne
Tue Jun 28, 2016 5:24 pm
Forum: IBM COBOL, GnuCOBOL (OpenCOBOL), OOCobol.
Topic: How to remove tag lines in COBOL using ISPF commands?
Replies: 17
Views: 11443

Re: How to remove tag lines in COBOL using ISPF commands?

Sorry for the confusion. By tag-lines I meant the markers different users has added to identify their codes. For example: #PRJ01  PROCEDURE DIVISION. 0#RAM **   Please keep the first part of your program simple 0#RAM **   perform beginning, perform main loop til no more records, 0#RAM **   perform t...
by RaOne
Mon Jun 27, 2016 3:21 pm
Forum: IBM COBOL, GnuCOBOL (OpenCOBOL), OOCobol.
Topic: How to remove tag lines in COBOL using ISPF commands?
Replies: 17
Views: 11443

Re: How to remove tag lines in COBOL using ISPF commands?

That is a inhouse macro :oops:  :oops: I kept calling that way  :oops:  :oops:   /*REXX*/ "ISREDIT MACRO" "ISREDIT NUM ON STD COB" "ISREDIT UNNUM" "ISREDIT NUM ON COB" "ISREDIT RENUM" EXIT Try this What is COB in your macro? I looked at the link you...
by RaOne
Mon Jun 27, 2016 3:19 pm
Forum: SMS & VSAM and BDAM, BSAM, QSAM, BPAM, ISAM, OAM.
Topic: How to know owner of data-set?
Replies: 6
Views: 4010

Re: How to know owner of data-set?

There is a facility of z/OS called System Management Facilities (SMF) which records everything that happens on the system -- but it can be customized to site requirements.  In general, SMF will record when a data set is created and which batch job / TSO user / started task / etc. created the data s...
by RaOne
Mon Jun 27, 2016 3:16 pm
Forum: IBM DB2 and IMS DB/DC
Topic: GROUP BY and ORDER BY for IMS DB?
Replies: 9
Views: 1149

Re: GROUP BY and ORDER BY for IMS DB?

Thanks nicc.

I shall prefer using my own sort routine as getting values from IMS and loading to DB2 would be very expensive than the work required. Thanks for your valuable inputs.
by RaOne
Mon Jun 27, 2016 3:11 pm
Forum: CICS, Middleware and MQ Series.
Topic: Does CICS takes care of open/close of files?
Replies: 6
Views: 1247

Does CICS takes care of open/close of files?

Hi, While testing a CICS program I seem to make a conclusion and seek help to see if it's correct.If a file has been defined in file control table of CICS then, it looks like, it does not need to be opened explicity. Is this assupmtion correct?  Actually, I have noticed that the CICS program does no...
by RaOne
Mon Jun 27, 2016 2:33 pm
Forum: IBM DB2 and IMS DB/DC
Topic: GROUP BY and ORDER BY for IMS DB?
Replies: 9
Views: 1149

Re: GROUP BY and ORDER BY for IMS DB?

Then if I have to something which needs to sort the result on a given value how will I do it in IMS commands?

Go to advanced search