DFSORT/ICETOOL :: RE: match 2 files
Author: Arun Raj Posted: Thu Nov 03, 2016 11:45 pm (GMT 5.5)Quote:I cannot create VB for file 1 and VB from file 2 This statement is not true. So far you have posted only what you tried with FB data...
View ArticleDFSORT/ICETOOL :: RE: match 2 files
Author: Arun Raj Posted: Thu Nov 03, 2016 11:53 pm (GMT 5.5) I just ran a test with VB input, and all the 3 outputs - VB again. I don't see a problem here._________________Arun...
View ArticleDFSORT/ICETOOL :: RE: match 2 files
Author: anatol Posted: Fri Nov 04, 2016 12:04 am (GMT 5.5) wow Arun, could you please show what you use for test?
View ArticleDFSORT/ICETOOL :: RE: match 2 files
Author: Bill Woodger Subject: Reply to: match 2 files Posted: Fri Nov 04, 2016 12:26 am (GMT 5.5) Did anyone read my post? Try this:Code: REFORMAT FIELDS=(F1:1,4,F1:5,F2:5) Use that for a JOINKEYS with...
View ArticleDFSORT/ICETOOL :: RE: match 2 files
Author: anatol Subject: Reply to: match 2 files Posted: Fri Nov 04, 2016 1:01 am (GMT 5.5) ok, actual file is 1000 , not as I ask before .I've usedCode: JOINKEYS FILE=F1,FIELDS=(9,71,A)...
View ArticleDFSORT/ICETOOL :: RE: match 2 files
Author: Arun Raj Posted: Fri Nov 04, 2016 1:07 am (GMT 5.5)Code:JOIN UNPAIRED,F1,F2,ONLY You have included ONLY NON MATCHING records. You need Code:JOIN UNPAIRED OR Code:JOIN UNPAIRED,F1,F2 to be able...
View ArticleDFSORT/ICETOOL :: RE: match 2 files
Author: Bill Woodger Subject: Reply to: match 2 files Posted: Fri Nov 04, 2016 1:13 am (GMT 5.5) I'm going to take a heavy axe to this topic shortly. Anyone want to complain, don't bother. Anatol, I...
View ArticleDFSORT/ICETOOL :: RE: match 2 files
Author: anatol Subject: Reply to: match 2 files Posted: Fri Nov 04, 2016 1:21 am (GMT 5.5) Thank you all ... I think we all tired of this topic ... it was good learning .. I like sort
View ArticleDFSORT/ICETOOL :: RE: Match or compare two files in VB Format
Author: daveporcelan Posted: Fri Nov 04, 2016 4:38 pm (GMT 5.5)Quote:Your best option is RDW,"fixed" data from one file,"variable" data from the other. Then, on any OUTFIL where the fixed data is used...
View ArticleJCL & VSAM :: Not able to compress a very large PDS
Author: Hervey Martinez Subject: Not able to compress a very large PDS Posted: Fri Nov 04, 2016 5:57 pm (GMT 5.5) I'm trying to compress a very large PDS using IEBCOPY but it keeps getting this error:...
View ArticleJCL & VSAM :: RE: Not able to compress a very large PDS
Author: Robert Sample Subject: Reply to: Not able to compress a very large PDS Posted: Fri Nov 04, 2016 6:32 pm (GMT 5.5) Why did you not post anything for us to help you -- for example, seeing the...
View ArticleJCL & VSAM :: RE: Not able to compress a very large PDS
Author: steve-myers Posted: Fri Nov 04, 2016 6:36 pm (GMT 5.5) Try adding these DD statements to the IEBCOPY JCL - //SYSUT3 DD UNIT=SYSDA,SPACE=(CYL,21,,CONTIG) //SYSUT4 DD...
View ArticleJCL & VSAM :: RE: Not able to compress a very large PDS
Author: Hervey Martinez Posted: Fri Nov 04, 2016 6:41 pm (GMT 5.5) On sysut3 & 4 I have tried, primary only, with dir blocks & without.Code://STEP01 EXEC PGM=IEBCOPY,PARM='SIZE=64M'...
View ArticleJCL & VSAM :: RE: Not able to compress a very large PDS
Author: Robert Sample Posted: Fri Nov 04, 2016 6:57 pm (GMT 5.5) This sounds like a perfect data set to convert to PDSE so you never have to compress it again. Have you changed Code://STEP01 EXEC...
View ArticleJCL & VSAM :: RE: Not able to compress a very large PDS
Author: Hervey Martinez Posted: Fri Nov 04, 2016 7:23 pm (GMT 5.5) yes, that worked. thanks I had not seen the "work" parm; I must have missed it somehow._________________Regards, hervey
View ArticleJCL & VSAM :: RE: Not able to compress a very large PDS
Author: Robert Sample Posted: Fri Nov 04, 2016 7:58 pm (GMT 5.5)Quote:I had not seen the "work" parm; I must have missed it somehow.Not only is it listed in the manual, but also I specifically...
View ArticleDB2 :: Two Selects in a single select query
Author: Rohit Umarjikar Subject: Two Selects in a single select query Posted: Fri Nov 04, 2016 8:46 pm (GMT 5.5) Hello, This is what I am getting, may be I am missing the very basic but trying to know...
View ArticleDB2 :: Regarding COBOL Stored Procedure option - GENERAL WITH NULLS
Author: selvamsrinivasan85 Subject: Regarding COBOL Stored Procedure option - GENERAL WITH NULLS Posted: Fri Nov 04, 2016 8:57 pm (GMT 5.5) Hi all, I have coded a COBOL Stored procedure (DB2) program,...
View ArticleDB2 :: RE: Regarding COBOL Stored Procedure option - GENERAL WITH NULLS
Author: Rohit Umarjikar Posted: Fri Nov 04, 2016 10:02 pm (GMT 5.5)Quote:Result sets are coming without column names of table. That is how it will be, why do you need column name here?Quote:How to...
View ArticleDB2 :: RE: Regarding COBOL Stored Procedure option - GENERAL WITH NULLS
Author: selvamsrinivasan85 Posted: Fri Nov 04, 2016 10:35 pm (GMT 5.5) Hi Rohit, I am not facing any issue incase of native SP. I used to get column names in Result set. I hope removing Alias will...
View Article