DB2 :: RE: Regarding COBOL Stored Procedure option - GENERAL WITH NULLS
Author: Rohit Umarjikar Posted: Fri Nov 04, 2016 10:41 pm (GMT 5.5) Is that what you lookingg for?Code:Select Col1_tb1 as col1, Col2_tb1 as col2, Col1_tb2 as col3, Col2_tb2 as col4 from Table1 A,...
View ArticleDB2 :: RE: Regarding COBOL Stored Procedure option - GENERAL WITH NULLS
Author: selvamsrinivasan85 Posted: Fri Nov 04, 2016 10:46 pm (GMT 5.5) Hi Rohit, You gave me a clue. Thanks. I think below will work fine. Will try and let you know.Code:Select A.Col1_tb1 as col1,...
View ArticleDFSORT/ICETOOL :: Count values
Author: anatol Subject: Count values Posted: Fri Nov 04, 2016 11:21 pm (GMT 5.5) Hi, If I have file ( fb 80)Code:INT NRT NRT INT INT is it possible to push count number likeCode:INT...
View ArticleDFSORT/ICETOOL :: RE: Count values
Author: Arun Raj Posted: Fri Nov 04, 2016 11:32 pm (GMT 5.5)Quote:is it possible to push count number Yes it is. Search the forum for 'SEQNUM', you will find working examples._________________Arun...
View ArticleDFSORT/ICETOOL :: RE: Count values
Author: anatol Subject: Reply to: Count values Posted: Fri Nov 04, 2016 11:39 pm (GMT 5.5) SEQNUM gives me 1,2,3,4,5 or I can RESTART for value and it will give 1,1,2,1,2 but I need 1,1,2,2,3
View ArticleDFSORT/ICETOOL :: RE: Count values
Author: Arun Raj Posted: Fri Nov 04, 2016 11:41 pm (GMT 5.5) You need to have 2 SEQNUMs - one for each key and OVERLAY at the same position (with no RESTART). Good luck._________________Arun...
View ArticleJCL & VSAM :: RE: Not able to compress a very large PDS
Author: steve-myers Posted: Fri Nov 04, 2016 11:46 pm (GMT 5.5)Robert Sample wrote:... Have you changed Code://STEP01 EXEC PGM=IEBCOPY,PARM='SIZE=64M' to Code://STEP01 EXEC...
View ArticleCICS :: CICS NEW SIT PARAMETERS CICS BEHAVIOR COMPARISON TO PREV REL
Author: Kyle Carroll Subject: CICS NEW SIT PARAMETERS CICS BEHAVIOR COMPARISON TO PREV REL Posted: Fri Nov 04, 2016 11:55 pm (GMT 5.5) Hi, I am upgrading CICS TS from V4.1 to V5.3 and there are many...
View ArticleDFSORT/ICETOOL :: convert PD to ZD
Author: ram_vizag Subject: convert PD to ZD Posted: Sat Nov 05, 2016 3:06 am (GMT 5.5) Hi , need your help in converting PD to ZD I/P file 55733 ......20040405 O/P i am expecting 55733 -1113.5020040405...
View ArticleSYNCSORT :: Overlaying one set of charater values with another
Author: Kevin Lindsley Subject: Overlaying one set of charater values with another Posted: Sat Nov 05, 2016 3:21 am (GMT 5.5) I am using basic OUTREC FIELDS=( to accomplish various data manipulations...
View ArticleDFSORT/ICETOOL :: RE: convert PD to ZD
Author: Nic Clouston Posted: Sat Nov 05, 2016 3:28 am (GMT 5.5) What problem are you having - apart from the obvious one of not using code tags? TO=ZD or something like that?_________________Regards Nic
View ArticleSYNCSORT :: RE: Overlaying one set of charater values with another
Author: RahulG31 Subject: Reply to: Overlaying one set of charater values with another Posted: Sat Nov 05, 2016 3:29 am (GMT 5.5) What is your other outrec processing? It could be as simple as...
View ArticleDFSORT/ICETOOL :: RE: convert PD to ZD
Author: ram_vizag Subject: Reply to: convert PD to ZD Posted: Sat Nov 05, 2016 3:30 am (GMT 5.5) I am getting SOC7 when I use TO=ZD. Can You please post full syntax._________________Ram
View ArticleDFSORT/ICETOOL :: RE: convert PD to ZD
Author: Nic Clouston Posted: Sat Nov 05, 2016 3:32 am (GMT 5.5) No. You can read it up in the manual. Also you could show the control caards that you are using - the TO=ZD may not be the thing that is...
View ArticleDFSORT/ICETOOL :: RE: Count values
Author: RahulG31 Subject: Reply to: Count values Posted: Sat Nov 05, 2016 3:52 am (GMT 5.5) anatol, Arun had mentioned a very simple solution (2 lines). I think that will work only if you know what the...
View ArticleSYNCSORT :: RE: Overlaying one set of charater values with another
Author: Kevin Lindsley Subject: This is one of my typical OUTRECs: Posted: Sat Nov 05, 2016 4:06 am (GMT 5.5)Code: OPTION COPY OMIT...
View ArticleDFSORT/ICETOOL :: RE: Count values
Author: enrico-sorichetti Subject: Reply to: Count values Posted: Sat Nov 05, 2016 4:10 am (GMT 5.5) You will have to run a multi stage process ... the first stage will overlay somewhere a global...
View ArticleDFSORT/ICETOOL :: RE: Count values
Author: Bill Woodger Subject: Reply to: Count values Posted: Sat Nov 05, 2016 4:20 am (GMT 5.5) Arun's solution will do exactly what has been articulated by TS/OP. I don't see the point in inventing...
View ArticleDFSORT/ICETOOL :: RE: Count values
Author: anatol Subject: Reply to: Count values Posted: Sat Nov 05, 2016 4:23 am (GMT 5.5) Hi , The values not limited just INT & NTR ... it could be other ... you are right - I need generic...
View ArticleSYNCSORT :: RE: Overlaying one set of charater values with another
Author: Bill Woodger Subject: Reply to: Overlaying one set of charater values with another Posted: Sat Nov 05, 2016 4:27 am (GMT 5.5) Don't use FIELDS, use BUILD. FIELDS means different things in...
View Article