DFSORT/ICETOOL :: RE: How to change 'K' or 'M' use Sort
Author: mistah kurtz Posted: Thu May 18, 2017 2:15 pm (GMT 5.5)Quote:I don't know if this is the most efficient way of doing it Now I know that was not
View ArticleDFSORT/ICETOOL :: RE: How to change 'K' or 'M' use Sort
Author: enrico-sorichetti Subject: Reply to: How to change 'K' or 'M' use Sort Posted: Thu May 18, 2017 2:52 pm (GMT 5.5) probably You have not written as many lines of Rexx code as I have done...
View ArticleJCL & VSAM :: Release quantity that was allocated via LIKE= subparm
Author: Auryn Subject: Release quantity that was allocated via LIKE= subparm Posted: Thu May 18, 2017 6:02 pm (GMT 5.5) Hi there, the LIKE= subparm is quite comfortable to allocate the result dataset...
View ArticleJCL & VSAM :: RE: Release quantity that was allocated via LIKE= subparm
Author: Robert Sample Subject: Reply to: Release quantity that was allocated via LIKE= subparm Posted: Thu May 18, 2017 6:24 pm (GMT 5.5) I suspect what you want to do is not possible unless you...
View ArticleJCL & VSAM :: RE: Release quantity that was allocated via LIKE= subparm
Author: mistah kurtz Posted: Thu May 18, 2017 6:28 pm (GMT 5.5) In stead of LIKE, try using DCB=*.existing-dd-name, with SPACE=(TRK,(999,111),RLSE). Code://SYSUT1 DD DSN=TEST.DATASET.OLD,DISP=SHR...
View ArticleDFSORT/ICETOOL :: RE: How to change 'K' or 'M' use Sort
Author: Arun Raj Posted: Thu May 18, 2017 7:39 pm (GMT 5.5)Quote:doing it with sort could be pretty boring ... I thought of taking up some of that, before I get to my much boring work . There could be...
View ArticleCLIST & REXX :: Need help on If condition continuation in REXX
Author: ashok_uddaraju Subject: Need help on If condition continuation in REXX Posted: Fri May 19, 2017 8:55 am (GMT 5.5) Hi, I have IF statement which works fine in one line IF WS-SPRM-COPE = 'a',...
View ArticleCLIST & REXX :: RE: Need help on If condition continuation in REXX
Author: ashok_uddaraju Subject: Reply to: Need help on If condition continuation in REXX Posted: Fri May 19, 2017 8:57 am (GMT 5.5) sorry the failue happnes when adding more than 1 line IF WS-SPRM-COPE...
View ArticleCLIST & REXX :: RE: Need help on If condition continuation in REXX
Author: enrico-sorichetti Subject: Reply to: Need help on If condition continuation in REXX Posted: Fri May 19, 2017 10:46 am (GMT 5.5)Quote:I have IF statement which works fine in one line hard to...
View ArticleJCL & VSAM :: RE: Release quantity that was allocated via LIKE= subparm
Author: Auryn Posted: Fri May 19, 2017 1:39 pm (GMT 5.5) Sorry, maybe my question was a bit ambiguous: I know I can 'overwrite' the space quantities taken from the referred source dataset by specifying...
View ArticleCLIST & REXX :: RE: Need help on If condition continuation in REXX
Author: Nic Clouston Posted: Fri May 19, 2017 5:12 pm (GMT 5.5) A person of 10 years standing in the forum should know by now:to post in the correct part of the forum - if it is indeed a COBOL question...
View ArticleCLIST & REXX :: RE: Need help on If condition continuation in REXX
Author: enrico-sorichetti Subject: Reply to: Need help on If condition continuation in REXX Posted: Fri May 19, 2017 5:32 pm (GMT 5.5) Nic , what could You expect from somebody who has as...
View ArticleDFSORT/ICETOOL :: RE: Converting Variable block file to Fixed block file
Author: Arun Raj Posted: Fri May 19, 2017 6:28 pm (GMT 5.5) Rohit Umarjikar, The idea should be to OMIT entire-blank-records, instead of just checking the first character, or else you might end up...
View ArticleJCL & VSAM :: RE: Release quantity that was allocated via LIKE= subparm
Author: Robert Sample Posted: Fri May 19, 2017 8:55 pm (GMT 5.5) You could open a PMR with IBM to verify, but I don't think you can release the unused space when allocating with LIKE. The JCL Reference...
View ArticleDB2 :: Testing rerad cursor for status with predicate
Author: John F Dutcher Subject: Testing rerad cursor for status with predicate Posted: Fri May 19, 2017 9:35 pm (GMT 5.5) I tried adding the code below ( inside 100-OPEN) to an existing DB2 program in...
View ArticleDB2 :: RE: Testing rerad cursor for status with predicate
Author: Rohit Umarjikar Posted: Fri May 19, 2017 10:04 pm (GMT 5.5) Do you know about cursor WITH HOLD option? Why do you want to code around-501?Quote:IF READCUR IS OPEN This is not true you need to...
View ArticleDB2 :: RE: Testing rerad cursor for status with predicate
Author: John F Dutcher Subject: Understood ......... Posted: Fri May 19, 2017 10:11 pm (GMT 5.5) but my employer wants to prevent -501s and -502s..... not code logically in response to them. Why did...
View ArticleDB2 :: RE: Testing rerad cursor for status with predicate
Author: Rohit Umarjikar Posted: Fri May 19, 2017 10:16 pm (GMT 5.5)Quote:but my employer wants to prevent -501s and -502s At first place one should not code around this sqlcode because the moment you...
View ArticleDFSORT/ICETOOL :: RE: Converting Variable block file to Fixed block file
Author: Rohit Umarjikar Posted: Fri May 19, 2017 10:23 pm (GMT 5.5) Right Arun Raj, it was test data I tested with and did not change the include with TS stuff. Code://JS040 EXEC PGM=ICETOOL...
View ArticleDB2 :: RE: Testing rerad cursor for status with predicate
Author: John F Dutcher Subject: I'll try "true" for grins........ Posted: Fri May 19, 2017 10:34 pm (GMT 5.5) .... but the "OPEN" is taken from IBM's Manual on using DB2 predicates so I would think it...
View Article