JCL & VSAM :: RE: To find out size allocated to a sequential dataset
Author: Robert Sample Posted: Sat Apr 29, 2017 2:40 am (GMT 5.5)Quote:Hence looking for other feasible options.The usual method these days is to create a storage pool for work data sets. Allocate an...
View ArticleJCL & VSAM :: RE: To find out size allocated to a sequential dataset
Author: Willy Jensen Posted: Sat Apr 29, 2017 3:35 pm (GMT 5.5) If you really dont know the initial size and your goal is to save temporary space, then consider changing the allocation to say from...
View ArticleJCL & VSAM :: RE: To find out size allocated to a sequential dataset
Author: David Robinson Posted: Sun Apr 30, 2017 9:15 pm (GMT 5.5) SMF records will show you how many extents the dataset has used. From that it's easy to assess whether you are likely to be running out...
View ArticleJCL & VSAM :: RE: To find out size allocated to a sequential dataset
Author: vasanthz Posted: Mon May 01, 2017 12:18 am (GMT 5.5) Hi David what smf record types?_________________Strike.. Scream.. Run - Creed Bratton
View ArticleJCL & VSAM :: RE: To find out size allocated to a sequential dataset
Author: steve-myers Posted: Mon May 01, 2017 1:13 am (GMT 5.5) vasanthz - The only SMF record type we've been discussing here is the type 15 record. There is one field of possible interest, though I...
View ArticleJCL & VSAM :: RE: To find out size allocated to a sequential dataset
Author: Rohit Umarjikar Posted: Mon May 01, 2017 10:56 pm (GMT 5.5)Quote: we need this info to ensure we can track/monitor the sequential dataset usage and proactively allocate the appropriate space so...
View ArticleJCL & VSAM :: RE: copy SEQ to PDS and create stats
Author: vasanthz Posted: Mon May 01, 2017 11:47 pm (GMT 5.5)Quote:I want to copy a SEQ dataset into a PDS member and then create statistics for the member. IEBCOPY or IEBGENER can do the copy but it...
View ArticleCOBOL Programming :: COBOL Code Parsers and Lineage Establishing Software
Author: balimanja Subject: COBOL Code Parsers and Lineage Establishing Software Posted: Tue May 02, 2017 3:30 am (GMT 5.5) Hi, May I please request the members of this forum to share their knowledge on...
View ArticleSYNCSORT :: WER247A incompatible lrecl
Author: Danielle.Filteau Subject: WER247A incompatible lrecl Posted: Tue May 02, 2017 4:04 am (GMT 5.5) Hi, could someone with fresh eyes take a look at this ? My input file and output file are both...
View ArticleDFSORT/ICETOOL :: SORT trick needed
Author: bshkris Subject: SORT trick needed Posted: Tue May 02, 2017 4:35 am (GMT 5.5) Hello, Is there any way to remove the duplicates fully(both records) using SORT? Example: Input File:...
View ArticleSYNCSORT :: RE: WER247A incompatible lrecl
Author: Arun Raj Posted: Tue May 02, 2017 8:53 am (GMT 5.5) I don't have Syncsort here. But do you have a conflicting LRECL mentioned in your run JCL for the output data set -...
View ArticleDFSORT/ICETOOL :: RE: SORT trick needed
Author: Arun Raj Posted: Tue May 02, 2017 8:59 am (GMT 5.5)Quote:Is there any way to remove the duplicates fully(both records) using SORT? Yes. Take a look at the ICETOOL - SELECT...
View ArticleDFSORT/ICETOOL :: Sum Fields
Author: ballaswaroop Subject: Sum Fields Posted: Tue May 02, 2017 11:07 am (GMT 5.5) Hi - I want to sum the following values 0001 USD 11,000.00 0002 GPP 222,000.12 0001 USD 111,111.23 0002 GPP 55.11...
View ArticleCOBOL Programming :: RE: COBOL Code Parsers and Lineage Establishing Software
Author: Nic Clouston Posted: Tue May 02, 2017 3:31 pm (GMT 5.5) You do know how to "Google", do you not?_________________Regards Nic
View ArticleDFSORT/ICETOOL :: RE: Sum Fields
Author: Nic Clouston Posted: Tue May 02, 2017 3:39 pm (GMT 5.5) What is the problem? You know what you want to do and you know the edit mask to use. You know there are similar problems postedand you...
View ArticleCOBOL Programming :: RE: COBOL Code Parsers and Lineage Establishing Software
Author: enrico-sorichetti Subject: Reply to: COBOL Code Parsers and Lineage Establishing Software Posted: Tue May 02, 2017 4:23 pm (GMT 5.5) googling returnedopen source COBOL Code Parsers 144.000...
View ArticleDFSORT/ICETOOL :: RE: Sum Fields
Author: steve-myers Posted: Tue May 02, 2017 5:10 pm (GMT 5.5) The real problem here may be converting the USD amounts to GPP amounts so you're not adding apples and oranges, which usually doesn't work...
View ArticleSYNCSORT :: RE: WER247A incompatible lrecl
Author: mistah kurtz Posted: Tue May 02, 2017 5:24 pm (GMT 5.5) Length of DATE1(CCYYMMDD) is 8. Code:175:&DATE1,184,16 So the DATE1 will end at 182, not at 183. Try putting a space after DATE1.
View ArticleSYNCSORT :: RE: WER247A incompatible lrecl
Author: Arun Raj Posted: Tue May 02, 2017 5:37 pm (GMT 5.5)Code:184,16Danielle.Filteau, The length of the last field (or its starting position) should go up, to make it 200. As of now it adds up only...
View ArticleSYNCSORT :: RE: WER247A incompatible lrecl
Author: mistah kurtz Posted: Tue May 02, 2017 5:41 pm (GMT 5.5)Arun Raj wrote:Code:184,16Also the length of the last field should go up as well, to make it 200. As of now it adds up only to 199. Yup....
View Article